|
@@ -0,0 +1,71 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <title>layui</title>
|
|
|
|
+ <meta name="renderer" content="webkit">
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
+ <link rel="stylesheet" href="__PUBLIC__/layui/css/layui.css" media="all">
|
|
|
|
+ <link rel="stylesheet" href="__PUBLIC__/font-awesome/css/font-awesome.min.css" media="all"/>
|
|
|
|
+ <link rel="stylesheet" href="__CSS__/admin.css" media="all">
|
|
|
|
+</head>
|
|
|
|
+<body style="padding:10px;">
|
|
|
|
+<div class="tplay-body-div">
|
|
|
|
+
|
|
|
|
+ {include file="webconfig/tab"}
|
|
|
|
+
|
|
|
|
+ <div style="margin-top: 20px;">
|
|
|
|
+ </div>
|
|
|
|
+ <form class="layui-form" id="admin">
|
|
|
|
+
|
|
|
|
+ <div class="layui-form-item">
|
|
|
|
+ <label class="layui-form-label">标题</label>
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <input name="notice_title" lay-verify="title" autocomplete="off" placeholder="请输入标题" class="layui-input"
|
|
|
|
+ type="text" {notempty name="$web_config.notice_title" }value="{$web_config.notice_title}" {/notempty}>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ {include file="emailconfig/publish_tinymce" item="web_config" field="notice_content" use="webconfig" label="内容"}
|
|
|
|
+
|
|
|
|
+ <div class="layui-form-item">
|
|
|
|
+ <div class="layui-input-block">
|
|
|
|
+ <button class="layui-btn" lay-submit lay-filter="admin">立即提交</button>
|
|
|
|
+ <button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+
|
|
|
|
+ {include file="public/foot"}
|
|
|
|
+
|
|
|
|
+ <script>
|
|
|
|
+ layui.use(['layer', 'form'], function () {
|
|
|
|
+ var layer = layui.layer,
|
|
|
|
+ $ = layui.jquery,
|
|
|
|
+ form = layui.form;
|
|
|
|
+ $(window).on('load', function () {
|
|
|
|
+ form.on('submit(admin)', function (data) {
|
|
|
|
+ $.ajax({
|
|
|
|
+ url: "{:url('admin/webconfig/publish')}",
|
|
|
|
+ data: $('#admin').serialize(),
|
|
|
|
+ type: 'post',
|
|
|
|
+ dataType: 'json',
|
|
|
|
+ async: false,
|
|
|
|
+ success: function (res) {
|
|
|
|
+ layer.msg(res.msg);
|
|
|
|
+ if (res.code == 1) {
|
|
|
|
+ setTimeout(function () {
|
|
|
|
+ location.reload();
|
|
|
|
+ }, 1500)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ return false;
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ </script>
|
|
|
|
+</div>
|
|
|
|
+</body>
|
|
|
|
+</html>
|