|
|
@@ -0,0 +1,435 @@
|
|
|
1
|
+<!DOCTYPE html>
|
|
|
2
|
+<html>
|
|
|
3
|
+ <head>
|
|
|
4
|
+ <meta charset="UTF-8">
|
|
|
5
|
+ <script src="../Script/Common/huayi.load.js"></script>
|
|
|
6
|
+ <script src="../Script/Common/huayi.config.js"></script>
|
|
|
7
|
+ <link rel="stylesheet" href="../css/init.css" />
|
|
|
8
|
+ <title>新版知识库添加</title>
|
|
|
9
|
+ <style type="text/css">
|
|
|
10
|
+ ul,li{
|
|
|
11
|
+ padding: 0;
|
|
|
12
|
+ margin: 0;
|
|
|
13
|
+ list-style: none;
|
|
|
14
|
+ }
|
|
|
15
|
+ .tab_list{
|
|
|
16
|
+ border-bottom: 1px solid #d5d5d5;
|
|
|
17
|
+ }
|
|
|
18
|
+ .tab_list li{
|
|
|
19
|
+ padding: 10px 15px;
|
|
|
20
|
+ float: left;
|
|
|
21
|
+ color: #333333;
|
|
|
22
|
+ font-size: 14px;
|
|
|
23
|
+ position: relative;
|
|
|
24
|
+ }
|
|
|
25
|
+ .tab_list li.active{
|
|
|
26
|
+ color: #19aad0;
|
|
|
27
|
+ }
|
|
|
28
|
+ .tab_list li.active:after{
|
|
|
29
|
+ content: "";
|
|
|
30
|
+ width: 100%;
|
|
|
31
|
+ height: 2px;
|
|
|
32
|
+ background: #19aad0;
|
|
|
33
|
+ position: absolute;
|
|
|
34
|
+ bottom: -1px;
|
|
|
35
|
+ left: 0;
|
|
|
36
|
+ }
|
|
|
37
|
+ .tab_content{
|
|
|
38
|
+ font-size: 14px;
|
|
|
39
|
+ color: #4c4c4c;
|
|
|
40
|
+ padding: 15px 0;
|
|
|
41
|
+ /*text-indent: 28px;*/
|
|
|
42
|
+ }
|
|
|
43
|
+ .tab_content>div{
|
|
|
44
|
+ display: none;
|
|
|
45
|
+ }
|
|
|
46
|
+ .table tr td input[type="text"]{
|
|
|
47
|
+ width: 100%;
|
|
|
48
|
+ height: 30px;
|
|
|
49
|
+ background: #f3f3f4;
|
|
|
50
|
+ border: 0;
|
|
|
51
|
+ outline: none;
|
|
|
52
|
+ }
|
|
|
53
|
+ .radio-inline input[type=radio]{
|
|
|
54
|
+ margin-top: 2px;
|
|
|
55
|
+ }
|
|
|
56
|
+ .table tr td textarea{
|
|
|
57
|
+ width: 100%;
|
|
|
58
|
+ height: 100%;
|
|
|
59
|
+ background: #f3f3f4;
|
|
|
60
|
+ border: 0;
|
|
|
61
|
+ resize: none;
|
|
|
62
|
+ }
|
|
|
63
|
+ #scwj{
|
|
|
64
|
+ background-color: #FFF;
|
|
|
65
|
+ background-image: none;
|
|
|
66
|
+ border: 1px solid #ccc;
|
|
|
67
|
+ border-radius: 1px;
|
|
|
68
|
+ color: inherit;
|
|
|
69
|
+ padding: 6px 12px!important;
|
|
|
70
|
+ }
|
|
|
71
|
+ .files{
|
|
|
72
|
+ padding: 5px!important;
|
|
|
73
|
+ }
|
|
|
74
|
+ .time-box{
|
|
|
75
|
+ position: relative;
|
|
|
76
|
+ width: 197px!important;
|
|
|
77
|
+ height: 34px;
|
|
|
78
|
+ margin: 0;
|
|
|
79
|
+ }
|
|
|
80
|
+ .tub + input {
|
|
|
81
|
+ padding-right: 30px;
|
|
|
82
|
+ border: 1px solid #e5e6e7!important;
|
|
|
83
|
+ }
|
|
|
84
|
+ i.tub {
|
|
|
85
|
+ position: absolute;
|
|
|
86
|
+ right: 8px;
|
|
|
87
|
+ top: 8px;
|
|
|
88
|
+ font-size: 18px;
|
|
|
89
|
+ color: #00a0ca;
|
|
|
90
|
+ }
|
|
|
91
|
+ .tab_content textarea{
|
|
|
92
|
+ display: block;
|
|
|
93
|
+ background: #f3f3f4;
|
|
|
94
|
+ width: 100%;
|
|
|
95
|
+ height: 298px;
|
|
|
96
|
+ box-sizing: border-box;
|
|
|
97
|
+ text-indent: 28px;
|
|
|
98
|
+ }
|
|
|
99
|
+ .tab_content .cons >div{
|
|
|
100
|
+ background: #f3f3f4;
|
|
|
101
|
+ width: 100%;
|
|
|
102
|
+ min-height: 298px;
|
|
|
103
|
+ box-sizing: border-box;
|
|
|
104
|
+ text-indent: 28px;
|
|
|
105
|
+ word-break:break-all;
|
|
|
106
|
+ word-wrap:break-word;
|
|
|
107
|
+ }
|
|
|
108
|
+ .tab_content .cons >div img{
|
|
|
109
|
+ max-width: 100%;
|
|
|
110
|
+ /*width: 95%;
|
|
|
111
|
+ margin: 0 auto;*/
|
|
|
112
|
+ }
|
|
|
113
|
+ .shdetail table{
|
|
|
114
|
+ width: 100%;
|
|
|
115
|
+ line-height: 30px;
|
|
|
116
|
+ text-align: center;
|
|
|
117
|
+ }
|
|
|
118
|
+ </style>
|
|
|
119
|
+ </head>
|
|
|
120
|
+ <body class="gray-bg">
|
|
|
121
|
+ <div class="container-fluid wrapper-content animated fadeInRight">
|
|
|
122
|
+ <table class="table table-bordered table-condensed">
|
|
|
123
|
+ <tr>
|
|
|
124
|
+ <td width="100">关键词</td>
|
|
|
125
|
+ <td colspan="3"><input type="text" id="key" readonly="readonly"/></td>
|
|
|
126
|
+ </tr>
|
|
|
127
|
+ <tr>
|
|
|
128
|
+ <td width="100">事件名称</td>
|
|
|
129
|
+ <td colspan="3"> <input type="text" id="title" readonly="readonly" /></td>
|
|
|
130
|
+ </tr>
|
|
|
131
|
+ <tr>
|
|
|
132
|
+ <td width="100">主办单位</td>
|
|
|
133
|
+ <td colspan="3"> <input type="text" id="maindept" readonly="readonly" /></td>
|
|
|
134
|
+ </tr>
|
|
|
135
|
+ <tr >
|
|
|
136
|
+ <td rowspan="2" width="100">公开电话</td>
|
|
|
137
|
+ <td> <input type="text" id="publicphone1" readonly="readonly"/></td>
|
|
|
138
|
+ <td rowspan="2" width="100">内部电话</td>
|
|
|
139
|
+ <td> <input type="text" id="privatephone1" readonly="readonly" /></td>
|
|
|
140
|
+
|
|
|
141
|
+ </tr>
|
|
|
142
|
+ <tr>
|
|
|
143
|
+ <td> <input type="text" id="publicphone2" readonly="readonly" /></td>
|
|
|
144
|
+ <td> <input type="text" id="privatephone2" readonly="readonly" /></td>
|
|
|
145
|
+ </tr>
|
|
|
146
|
+ <tr>
|
|
|
147
|
+ <td width="100" height="100"> 咨询要点</td>
|
|
|
148
|
+ <td colspan="3" height="100"> <textarea name="" rows="" cols="" id="points" readonly="readonly"></textarea></td>
|
|
|
149
|
+ </tr>
|
|
|
150
|
+ <tr>
|
|
|
151
|
+ <td width="100" height="100"> 标准话术</td>
|
|
|
152
|
+ <td colspan="3" height="100"> <textarea name="" rows="" cols="" id="baseanswer" readonly="readonly"></textarea></td>
|
|
|
153
|
+ </tr>
|
|
|
154
|
+ <tr>
|
|
|
155
|
+ <td width="100" height="100"> 结案参考</td>
|
|
|
156
|
+ <td colspan="3" height="100"> <textarea name="" rows="" cols="" id="endanswer" readonly="readonly"></textarea></td>
|
|
|
157
|
+ </tr>
|
|
|
158
|
+ <tr>
|
|
|
159
|
+ <td width="100"> 办理方式</td>
|
|
|
160
|
+ <td><input type="text" id="dealtype" readonly="readonly"/></td>
|
|
|
161
|
+ <td width="100"> 法定办结时限</td>
|
|
|
162
|
+ <td><input type="text" id="legallimittime" readonly="readonly" /></td>
|
|
|
163
|
+ </tr>
|
|
|
164
|
+ <tr>
|
|
|
165
|
+ <!--<td width="100"> 是否收费</td>
|
|
|
166
|
+ <td>
|
|
|
167
|
+ <label class="radio-inline">
|
|
|
168
|
+ <input type="radio" name="ispay" disabled="disabled" id="ispay1" value="1" readonly="readonly"> 是
|
|
|
169
|
+ </label>
|
|
|
170
|
+ <label class="radio-inline">
|
|
|
171
|
+ <input type="radio" name="ispay" disabled="disabled" id="ispay2" value="0" readonly="readonly"> 否
|
|
|
172
|
+ </label>
|
|
|
173
|
+
|
|
|
174
|
+
|
|
|
175
|
+ </td>-->
|
|
|
176
|
+ <td width="100"> 承诺办结时限</td>
|
|
|
177
|
+ <td><input type="text" id="promiselimittime" readonly="readonly" /></td>
|
|
|
178
|
+ <!--</tr>
|
|
|
179
|
+ <tr>-->
|
|
|
180
|
+ <td width="100"> 紧急事项</td>
|
|
|
181
|
+ <td>
|
|
|
182
|
+ <label class="radio-inline">
|
|
|
183
|
+ <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="1"> 是
|
|
|
184
|
+ </label>
|
|
|
185
|
+ <label class="radio-inline">
|
|
|
186
|
+ <input type="radio" name="isUrgency" disabled="disabled" id="isUrgency" value="0"> 否
|
|
|
187
|
+ </label>
|
|
|
188
|
+ </td>
|
|
|
189
|
+ </tr>
|
|
|
190
|
+ <tr>
|
|
|
191
|
+ <td width="100"> 收费标准</td>
|
|
|
192
|
+ <td> <input type="text" id="paymoney" readonly="readonly" /></td>
|
|
|
193
|
+ <td width="100"> 办公地点</td>
|
|
|
194
|
+ <td><textarea name="" rows="" cols="" id="officeaddress" readonly="readonly"></textarea></td>
|
|
|
195
|
+ </tr>
|
|
|
196
|
+ <tr>
|
|
|
197
|
+ <td width="100"> 办理对象</td>
|
|
|
198
|
+ <td><input type="text" id="serobject" readonly="readonly" /></td>
|
|
|
199
|
+ <td width="100"> 乘车路线</td>
|
|
|
200
|
+ <td><textarea name="" rows="" cols=""id="busline" readonly="readonly"></textarea></td>
|
|
|
201
|
+ </tr>
|
|
|
202
|
+ <tr>
|
|
|
203
|
+ <td width="100"> 办公时间</td>
|
|
|
204
|
+ <td colspan="3">
|
|
|
205
|
+ <input type="text" id="officetime" readonly="readonly" />
|
|
|
206
|
+ <!--<div class="form-group time-box">
|
|
|
207
|
+ <i class="tub fa fa-calendar"></i>
|
|
|
208
|
+ <input class="form-control" type="text" id="officetime" placeholder="请选择开始时间" readonly="readonly">
|
|
|
209
|
+ </div>-->
|
|
|
210
|
+
|
|
|
211
|
+ </td>
|
|
|
212
|
+ </tr>
|
|
|
213
|
+ <tr>
|
|
|
214
|
+ <td width="100" rowspan="2"> 协办单位</td>
|
|
|
215
|
+ <td rowspan="2"><input type="text" name="otherdept" id="otherdept" readonly="readonly" /></td>
|
|
|
216
|
+ <td width="100"> 公开电话</td>
|
|
|
217
|
+ <td><input type="text" id="otherpublicphone" readonly="readonly" /></td>
|
|
|
218
|
+ </tr>
|
|
|
219
|
+ <tr>
|
|
|
220
|
+ <td width="100"> 内部电话</td>
|
|
|
221
|
+ <td><input type="text" id="otherprivatephone" readonly="readonly" /></td>
|
|
|
222
|
+ </tr>
|
|
|
223
|
+ <tr>
|
|
|
224
|
+ <td width="100" height="100"> 备注</td>
|
|
|
225
|
+ <td colspan="3" height="100"><textarea name="" rows="" cols="" id="remark" readonly="readonly"></textarea> </td>
|
|
|
226
|
+ </tr>
|
|
|
227
|
+ <!--<tr>
|
|
|
228
|
+ <td width="100" > 修改人</td>
|
|
|
229
|
+ <td></td>
|
|
|
230
|
+ <td width="100" > 修改日期</td>
|
|
|
231
|
+ <td></td>
|
|
|
232
|
+ </tr>-->
|
|
|
233
|
+ </table>
|
|
|
234
|
+ <div style="width: 100%;padding: 10px;" class="shdetail">
|
|
|
235
|
+ <table class="Table" border="" cellspacing="0" cellpadding="0">
|
|
|
236
|
+ <theard>
|
|
|
237
|
+ <tr>
|
|
|
238
|
+ <td class="text-center" style="min-width:50px;">次数</td>
|
|
|
239
|
+ <td class="text-center" style="min-width:100px;">审核人</td>
|
|
|
240
|
+ <td class="text-center" style="min-width:100px;">审核内容</td>
|
|
|
241
|
+ <td class="text-center" style="min-width:100px;">审核时间</td>
|
|
|
242
|
+ <td class="text-center authority" style="min-width:100px;">是否通过</td>
|
|
|
243
|
+ </tr>
|
|
|
244
|
+ </theard>
|
|
|
245
|
+ <tbody class="SHXX">
|
|
|
246
|
+ </tbody>
|
|
|
247
|
+ </table>
|
|
|
248
|
+ </div>
|
|
|
249
|
+ <ul class="tab_list clearfix">
|
|
|
250
|
+ <li class="active">设定依据</li>
|
|
|
251
|
+ <li>办理流程</li>
|
|
|
252
|
+ <li>办理材料</li>
|
|
|
253
|
+ <li>办理结果样本</li>
|
|
|
254
|
+ <li>收费标准及依据</li>
|
|
|
255
|
+ <li>附件</li>
|
|
|
256
|
+ </ul>
|
|
|
257
|
+ <div class="tab_content">
|
|
|
258
|
+ <div class="cons" style="display: block;">
|
|
|
259
|
+ <div id="baseon" >
|
|
|
260
|
+
|
|
|
261
|
+ </div>
|
|
|
262
|
+ <!--<textarea name="" readonly="readonly"></textarea>-->
|
|
|
263
|
+ </div>
|
|
|
264
|
+ <div class="cons">
|
|
|
265
|
+ <div id="process" >
|
|
|
266
|
+
|
|
|
267
|
+ </div>
|
|
|
268
|
+ <!--<textarea name="" id="process" readonly="readonly"></textarea>-->
|
|
|
269
|
+ </div>
|
|
|
270
|
+ <div class="cons">
|
|
|
271
|
+ <div id="material" >
|
|
|
272
|
+
|
|
|
273
|
+ </div>
|
|
|
274
|
+ <!--<textarea name="" id="material" readonly="readonly"></textarea>-->
|
|
|
275
|
+ </div>
|
|
|
276
|
+ <div class="cons">
|
|
|
277
|
+ <div id="template" >
|
|
|
278
|
+
|
|
|
279
|
+ </div>
|
|
|
280
|
+ <!--<textarea name="" id="template" readonly="readonly"></textarea>-->
|
|
|
281
|
+ </div>
|
|
|
282
|
+ <div class="cons">
|
|
|
283
|
+ <div id="payinfo" >
|
|
|
284
|
+
|
|
|
285
|
+ </div>
|
|
|
286
|
+ <!--<textarea name="" id="payinfo" readonly="readonly"></textarea>-->
|
|
|
287
|
+ </div>
|
|
|
288
|
+
|
|
|
289
|
+ <div class="cons">
|
|
|
290
|
+ <div>
|
|
|
291
|
+
|
|
|
292
|
+
|
|
|
293
|
+ <table class="table-bordered table-condensed feilTable" style="width: 100%;">
|
|
|
294
|
+ <thead>
|
|
|
295
|
+ <tr>
|
|
|
296
|
+ <th>文件名称</th>
|
|
|
297
|
+ <th>添加时间</th>
|
|
|
298
|
+ <th>文件大小</th>
|
|
|
299
|
+ </tr>
|
|
|
300
|
+ </thead>
|
|
|
301
|
+ <tbody>
|
|
|
302
|
+
|
|
|
303
|
+ </tbody>
|
|
|
304
|
+
|
|
|
305
|
+ </table>
|
|
|
306
|
+ </div>
|
|
|
307
|
+ </div>
|
|
|
308
|
+ </div>
|
|
|
309
|
+
|
|
|
310
|
+ <script src="../js/kindeditor/kindeditor-all-min.js"></script>
|
|
|
311
|
+ <script src="../js/kindeditor/lang/zh-CN.js"></script>
|
|
|
312
|
+ <script src="../js/adjustHeight.js"></script>
|
|
|
313
|
+ <script src="../js/laydate/laydate.js"></script>
|
|
|
314
|
+ <script>
|
|
|
315
|
+
|
|
|
316
|
+ var ids=helper.request.queryString("ids");
|
|
|
317
|
+ $(document).ready(function(){
|
|
|
318
|
+ $('.tab_list li').click(function(){
|
|
|
319
|
+ var index=$(this).index();
|
|
|
320
|
+ $(this).addClass('active').siblings().removeClass('active');
|
|
|
321
|
+ $('.tab_content>div').eq(index).show().siblings().hide();
|
|
|
322
|
+
|
|
|
323
|
+ })
|
|
|
324
|
+ //按钮【按钮一】的回调
|
|
|
325
|
+ $.ajax({
|
|
|
326
|
+ type: "post",
|
|
|
327
|
+ url: huayi.config.callcenter_url + "Repository/OptRep",
|
|
|
328
|
+ async: true,
|
|
|
329
|
+ dataType: 'json',
|
|
|
330
|
+ data: {
|
|
|
331
|
+ token: $.cookie("token"),
|
|
|
332
|
+ repid: ids,
|
|
|
333
|
+ type:0
|
|
|
334
|
+ },
|
|
|
335
|
+ success: function(data) {
|
|
|
336
|
+ if(data.state.toLowerCase() == 'success') {
|
|
|
337
|
+// debugger
|
|
|
338
|
+
|
|
|
339
|
+ }
|
|
|
340
|
+ }
|
|
|
341
|
+ });
|
|
|
342
|
+ $.ajax({
|
|
|
343
|
+ type:"get",
|
|
|
344
|
+ url:huayi.config.callcenter_url +"Repository/GetRepository",
|
|
|
345
|
+ async:true,
|
|
|
346
|
+ dataType:'json',
|
|
|
347
|
+ data:{
|
|
|
348
|
+ token: $.cookie("token"),
|
|
|
349
|
+ id:ids
|
|
|
350
|
+ },
|
|
|
351
|
+ success:function(res){
|
|
|
352
|
+ if(res.state.toLowerCase()=='success'){
|
|
|
353
|
+ var con=res.data.data;
|
|
|
354
|
+ $('#key').val(con.F_Key);//关键字
|
|
|
355
|
+ $('#title').val(con.F_Title);//事件名称
|
|
|
356
|
+ $('#maindept').val(con.F_MainDept);//主办单位
|
|
|
357
|
+ $('#publicphone1').val(con.F_PublicPhone1);//公开电话1
|
|
|
358
|
+ $('#publicphone2').val(con.F_PublicPhone2);//公开电话2
|
|
|
359
|
+ $('#privatephone1').val(con.F_PrivatePhone1);//内部电话1
|
|
|
360
|
+ $('#privatephone2').val(con.F_PrivatePhone2);//内部电话2
|
|
|
361
|
+ $('#points').val(con.F_Points);//询问要点
|
|
|
362
|
+ $('#baseanswer').val(con.F_BaseAnswer);//标准话术
|
|
|
363
|
+ $('#endanswer').val(con.F_EndAnswer);//结案参考
|
|
|
364
|
+ $('#dealtype').val(con.F_DealType);//办理方式
|
|
|
365
|
+ $('#legallimittime').val(con.F_LegalLimitTime);//法定办结时限
|
|
|
366
|
+ $('#promiselimittime').val(con.F_PromiseLimitTime);//承诺办结时限
|
|
|
367
|
+// $('input[name="ispay"]:checked ').val(F_PayMoney);//是否收费
|
|
|
368
|
+ $('input[name="ispay"][value="'+con.F_IsPay+'"]').prop("checked","checked");//是否收费
|
|
|
369
|
+ $('input[name="isUrgency"][value="'+con.F_IsUrgent+'"]').prop("checked","checked"),//是否紧急事项
|
|
|
370
|
+ $('#paymoney').val(con.F_PayMoney);//收费标准
|
|
|
371
|
+ $('#officeaddress').val(con.F_OfficeAddress);//办公地点
|
|
|
372
|
+ $('#serobject').val(con.F_Object);//办理对象
|
|
|
373
|
+ $('#busline').val(con.F_BusLine);//乘车路线
|
|
|
374
|
+ $('#officetime').val(con.F_OfficeTime);//办公时间
|
|
|
375
|
+ $('#otherdept').val(con.F_OtherDept);// 协办单位
|
|
|
376
|
+ $('#otherpublicphone').val(con.F_OtherPublicPhone);// 协办单位公开电话
|
|
|
377
|
+ $('#otherprivatephone').val(con.F_OtherPrivatePhone);//协办单位内部电话
|
|
|
378
|
+ $('#remark').val(con.F_Remark);//备注
|
|
|
379
|
+ $('#baseon').html(con.F_BaseOn);//设定依据
|
|
|
380
|
+ $('#process').html(con.F_Process);//办理流程
|
|
|
381
|
+ $('#material').html(con.F_Material);//办理材料
|
|
|
382
|
+ $('#template').html(con.F_Template);//办理结果样本
|
|
|
383
|
+ $('#payinfo').html(con.F_PayInfo);//收费标准及依据
|
|
|
384
|
+ // $('#files').val() //收费标准及依据
|
|
|
385
|
+ console.log()
|
|
|
386
|
+ $(res.data.file).each(function(k,q){
|
|
|
387
|
+// var strs='<span class="files" fiel-num="'+ q.F_FileId +'">'+ q.F_FileName.substring(19) +'</span>'
|
|
|
388
|
+ var size= (q.F_Size/1024).toFixed(2)
|
|
|
389
|
+ var strs='<tr>'+
|
|
|
390
|
+ '<td><a href="'+ q.F_FileUrl+'" download="test.pdf">'+ q.F_FileName.substring(19) +'</a></td>'+
|
|
|
391
|
+ '<td>'+ q.F_AddTime +'</td>'+
|
|
|
392
|
+ '<td>'+ size +'kb</td>'+
|
|
|
393
|
+ '</tr>'
|
|
|
394
|
+ $(strs).appendTo($('.feilTable tbody'))
|
|
|
395
|
+ })
|
|
|
396
|
+ var shaudit;
|
|
|
397
|
+ $(res.data.shData).each(function(k,q){
|
|
|
398
|
+ if (q.F_ISPass==2) {
|
|
|
399
|
+ shaudit="未通过"
|
|
|
400
|
+ }else if(q.F_ISPass==1){
|
|
|
401
|
+ shaudit="通过"
|
|
|
402
|
+ }
|
|
|
403
|
+ var num=k+1;
|
|
|
404
|
+ var strs='<tr>'+
|
|
|
405
|
+ '<td>'+ num +'</td>'+
|
|
|
406
|
+ '<td>'+ q.F_AuditBy +'</td>'+
|
|
|
407
|
+ '<td>'+ q.F_AuditRemark +'</td>'+
|
|
|
408
|
+ '<td>'+ q.F_CreateOn +'</td>'+
|
|
|
409
|
+ '<td>'+ shaudit +'</td>'+
|
|
|
410
|
+ '</tr>'
|
|
|
411
|
+ $(strs).appendTo($('.SHXX'))
|
|
|
412
|
+ })
|
|
|
413
|
+
|
|
|
414
|
+
|
|
|
415
|
+
|
|
|
416
|
+
|
|
|
417
|
+
|
|
|
418
|
+ }
|
|
|
419
|
+
|
|
|
420
|
+ }
|
|
|
421
|
+ });
|
|
|
422
|
+
|
|
|
423
|
+
|
|
|
424
|
+
|
|
|
425
|
+
|
|
|
426
|
+
|
|
|
427
|
+ })
|
|
|
428
|
+
|
|
|
429
|
+
|
|
|
430
|
+
|
|
|
431
|
+
|
|
|
432
|
+
|
|
|
433
|
+ </script>
|
|
|
434
|
+</body>
|
|
|
435
|
+</html>
|