You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ry_zhky/ruoyi-admin/src/main/resources/templates/system/notify/edit.html

88 lines
4.0 KiB

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
<th:block th:include="include :: header('修改检查通知')" />
<th:block th:include="include :: datetimepicker-css" />
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-notify-edit" th:object="${tdNotify}">
<input name="notifyId" th:field="*{notifyId}" type="hidden">
<div class="form-group">
10 months ago
<label class="col-sm-3 control-label is-required">所属市州:</label>
<div class="col-sm-8">
10 months ago
<input name="framework" required th:field="*{framework}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
10 months ago
<label class="col-sm-3 control-label is-required">所属区县:</label>
<div class="col-sm-8">
10 months ago
<input name="area" required th:field="*{area}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">通知人:</label>
<div class="col-sm-8">
11 months ago
<input name="notifyUser" readonly th:field="*{notifyUser}" class="form-control" type="text">
</div>
</div>
11 months ago
<div class="form-group">
<label class="col-sm-3 control-label">单位:</label>
<div class="col-sm-8">
11 months ago
<input name="notifyDepart" readonly th:field="*{notifyDepart}" class="form-control" type="text">
</div>
</div>
11 months ago
<div class="form-group">
<label class="col-sm-3 control-label">时间:</label>
<div class="col-sm-8">
<div class="input-group date">
<input name="notifyTime" th:value="${#dates.format(tdNotify.notifyTime, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
</div>
</div>
</div>
<div class="form-group">
10 months ago
<label class="col-sm-3 control-label is-required">内容:</label>
<div class="col-sm-8">
10 months ago
<textarea name="notifyContent" required class="form-control">[[*{notifyContent}]]</textarea>
</div>
</div>
11 months ago
<div class="form-group">
10 months ago
<label class="col-sm-3 control-label is-required">被通知人:</label>
<div class="col-sm-8">
10 months ago
<input name="notifyBeuser" required th:field="*{notifyBeuser}" class="form-control" type="text">
</div>
</div>
11 months ago
<div class="form-group">
10 months ago
<label class="col-sm-3 control-label is-required">发出状态:</label>
<div class="col-sm-8">
10 months ago
<select name="notifyState" required class="form-control m-b" th:with="type=${@dict.getType('sys_notice_state')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{notifyState}"></option>
</select>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript">
var prefix = ctx + "system/notify";
$("#form-notify-edit").validate({
focusCleanup: true
});
function submitHandler() {
if ($.validate.form()) {
$.operate.save(prefix + "/edit", $('#form-notify-edit').serialize());
}
}
$("input[name='notifyTime']").datetimepicker({
format: "yyyy-mm-dd",
minView: "month",
autoclose: true
});
</script>
</body>
11 months ago
</html>