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.
87 lines
3.9 KiB
87 lines
3.9 KiB
11 months ago
|
<!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">
|
||
|
<label class="col-sm-3 control-label">所属市州:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<input name="framework" th:field="*{framework}" class="form-control" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label class="col-sm-3 control-label">所属区县:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<input name="area" 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">
|
||
|
<input name="notifyUser" th:field="*{notifyUser}" class="form-control" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label class="col-sm-3 control-label">单位:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<input name="notifyDepart" th:field="*{notifyDepart}" class="form-control" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
<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">
|
||
|
<label class="col-sm-3 control-label">内容:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<textarea name="notifyContent" class="form-control">[[*{notifyContent}]]</textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label class="col-sm-3 control-label">被通知人:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<input name="notifyBeuser" th:field="*{notifyBeuser}" class="form-control" type="text">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label class="col-sm-3 control-label">发出状态:</label>
|
||
|
<div class="col-sm-8">
|
||
|
<select name="notifyState" 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>
|
||
|
</html>
|