|
|
@@ -21,9 +21,12 @@
|
|
21
|
21
|
<i class="syIcon"></i>位置:
|
|
22
|
22
|
<a href="javaScript:;" id="ReIndex">首页</a>>
|
|
23
|
23
|
<a href="javaScript:;">手机客户端管理</a>>
|
|
24
|
|
- <a href="" style="color: #000;">保密协议</a>
|
|
|
24
|
+ <a href="" class="nowPosition">保密协议</a>
|
|
25
|
25
|
</sapn>
|
|
26
|
26
|
</div>
|
|
|
27
|
+ <div class="dhRight">
|
|
|
28
|
+ <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
|
|
|
29
|
+ </div>
|
|
27
|
30
|
</div>
|
|
28
|
31
|
<div class="Content_box">
|
|
29
|
32
|
<div class="complain Shows">
|
|
|
@@ -31,14 +34,14 @@
|
|
31
|
34
|
|
|
32
|
35
|
</div>
|
|
33
|
36
|
<div style="width: 100%;padding: 10px; text-align: center;">
|
|
34
|
|
- <textarea name="" style="width: 90%; height: 400px;"></textarea>
|
|
|
37
|
+ <textarea class="textarea-content" name="" style="width: 90%; height: 400px;"></textarea>
|
|
35
|
38
|
</div>
|
|
36
|
39
|
</div>
|
|
37
|
40
|
</div>
|
|
38
|
41
|
</div>
|
|
39
|
42
|
|
|
40
|
43
|
<script>
|
|
41
|
|
- $(document).ready(function() {
|
|
|
44
|
+ $(document).ready(function(){
|
|
42
|
45
|
laydate.skin('molv');
|
|
43
|
46
|
laydate({
|
|
44
|
47
|
elem: '#startTime',
|
|
|
@@ -51,6 +54,27 @@
|
|
51
|
54
|
});
|
|
52
|
55
|
|
|
53
|
56
|
})
|
|
|
57
|
+ $.ajax({
|
|
|
58
|
+ type: "post",
|
|
|
59
|
+ url: huayi.config.callcenter_url + "/Article/GetInfoByTitle",
|
|
|
60
|
+ dataType: 'json',
|
|
|
61
|
+ async: true,
|
|
|
62
|
+// data: {
|
|
|
63
|
+
|
|
|
64
|
+// },
|
|
|
65
|
+ success: function(data) {
|
|
|
66
|
+ /*验证请求*/
|
|
|
67
|
+ if(data.state == "success") {
|
|
|
68
|
+ $.cookie("token", data.data.token, {
|
|
|
69
|
+ expires: 7
|
|
|
70
|
+ });
|
|
|
71
|
+ $('.textarea-content').val(data.title);
|
|
|
72
|
+ }else{
|
|
|
73
|
+ console.log(data.message);
|
|
|
74
|
+ }
|
|
|
75
|
+ }
|
|
|
76
|
+ });
|
|
|
77
|
+
|
|
54
|
78
|
</script>
|
|
55
|
79
|
</body>
|
|
56
|
80
|
|