admin
2021-02-06 e2c6372f29ae0a93d9f672ffad4613581ba3e201
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="zh-cn">
 
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>添加TOP通知</title>
        <link href="css/bootstrap.min.css" rel="stylesheet">
        <link href="css/maincontent.css" rel="stylesheet">
        <link href="css/tablestyle.css" rel="stylesheet">
        <!--[if lt IE 9]>
      <script src="js/html5shiv.js"></script>
      <script src="js/respond.min.js"></script>
    <![endif]-->
    <style type="text/css">
        .datediv{
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        .show{
            width: 20px;
                height: 20px;
        }
    </style>
    </head>
 
    <body>
        <nav class="navbar navbar-default navbar-fixed-top">
        </nav>
        <div id="mainbody">
            <div id="sidebar">
                <dl>
                </dl>
            </div>
            <div id="neirong">
                <div class="erjidh">
                    <ol class="breadcrumb">
                        <li>
                            <a href="shezhi.html">TOP通知栏</a>
                        </li>
                        <li class="active">添加内容</li>
                    </ol>
                </div>
                <table class="table">
                    <tbody>
                        <tr>
                            <td>
                                <form class="form-horizontal" role="form">
                                    <div class="form-group">
                                        <label for="input7" class="changdu1 control-label">内容</label>
                                        <div class="col-sm-7">
                                            <textarea class="form-control content" rows="4"></textarea>
                                        </div>
                                    </div>
                                </form>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <table class="table">
                    <tbody>
                        <tr>
                            <td>
                                <form class="form-horizontal" role="form">
                                    <div class="form-group">
                                        <label for="input2" class="changdu1 control-label">跳转链接</label>
                                        <div class="col-sm-7">
                                            <input type="text" class="form-control url" placeholder="">
                                        </div>
                                    </div>
                                </form>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <table class="table">
                    <tbody>
                        <tr>
                            <td>
                                <form class="form-horizontal" role="form">
                                    <div class="form-group">
                                        <label for="input2" class="changdu1 control-label">是否显示</label>
                                        <div class="col-sm-7">
                                            <input type="checkbox" class="show">
                                        </div>
                                    </div>
                                </form>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <table class="table">
                    <tbody>
                        <tr>
                            <td>
                                <form class="form-horizontal" role="form">
                                    <div class="form-group datediv">
                                        <label for="input2" class="changdu1 control-label">起始日期</label>
                                        <div class="col-sm-2">
                                            <input type="text" class="form-control begin" placeholder="">
                                        </div>
                                        <span>至</span>
                                        <div class="col-sm-2">
                                            <input type="text" class="form-control end" placeholder="">
                                        </div>
                                    </div>
                                </form>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <table class="table">
                    <tbody>
                        <tr>
                            <td>
                                <form class="form-horizontal" role="form">
                                    <div class="form-group">
                                        <label for="input1" class="changdu1 control-label">备注</label>
                                        <div class="col-sm-7">
                                            <textarea class="form-control beizhu" rows="7"></textarea>
                                        </div>
                                    </div>
                                </form>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <div class="button0">
                    <div class="button">
                        <button type="button" class="btn btn-primary save">保存</button>
                    </div>
                    <div class="button">
                        <a href="shezhi.html" class="btn btn-default" role="button">取消</a>
                    </div>
                </div>
            </div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/nav.js"></script>
        <script src="laydate/laydate.js"></script>
        <script src="layer/layer.js"></script>
        <script>
            $(function() {
                laydate.render({ 
                  elem: '.begin'
                });
                laydate.render({ 
                  elem: '.end'
                });
                $(".save").bind("click", function() {
                    save();
                });
 
            });
 
            function save() {
                var content = $(".content").val();
                var url = $(".url").val();
                var starttime = $(".begin").val();
                var endtime = $(".end").val();
                var beizhu = $(".beizhu").val();
                var show = $(".show")[0].checked?"1":"0";
                $.post("api/homeNotice/addHomeNotice",{"content":content,"url":url,"show":show,"starttime":starttime,"endtime":endtime,"beizhu":beizhu},function(data){
                            if(data.code == 0) {
                            layer.alert('保存成功!', {
                              icon: 1,
                              skin: 'layer-ext-seaing',
                              yes:function(){
                                  location.href="shezhi.html";
                              }
                                });
                            }else{
                                layer.alert('保存失败!', {
                                          icon: 2,
                                          skin: 'layer-ext-seaing' 
                                });
                            }
                },'json');
            }
        </script>
    </body>
 
</html>