|
@@ -4,6 +4,14 @@
|
|
<th:block th:include="include :: header('新增通知公告')" />
|
|
<th:block th:include="include :: header('新增通知公告')" />
|
|
<th:block th:include="include :: summernote-css" />
|
|
<th:block th:include="include :: summernote-css" />
|
|
<th:block th:include="include :: bootstrap-fileinput-css"/>
|
|
<th:block th:include="include :: bootstrap-fileinput-css"/>
|
|
|
|
+ <!-- 自定义 CSS -->
|
|
|
|
+ <style>
|
|
|
|
+ /* 修改文本域的背景颜色和文字颜色 */
|
|
|
|
+ .note-editable {
|
|
|
|
+ background-color: black !important; /* 黑色背景 */
|
|
|
|
+ color: white !important; /* 白色文字 */
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
</head>
|
|
</head>
|
|
<body class="white-bg">
|
|
<body class="white-bg">
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
@@ -82,6 +90,7 @@
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+
|
|
$(".file-upload").each(function (i) {
|
|
$(".file-upload").each(function (i) {
|
|
var inputName = this.id;
|
|
var inputName = this.id;
|
|
var val = $("input[name='" + inputName + "']").val();
|
|
var val = $("input[name='" + inputName + "']").val();
|
|
@@ -156,6 +165,7 @@
|
|
$.operate.save(prefix + "/add", $('#form-notice-add').serialize());
|
|
$.operate.save(prefix + "/add", $('#form-notice-add').serialize());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
</script>
|
|
</script>
|
|
</body>
|
|
</body>
|
|
</html>
|
|
</html>
|