|
|
@@ -5,10 +5,10 @@
|
|
5
|
5
|
<meta charset="UTF-8">
|
|
6
|
6
|
<title>语音留言</title>
|
|
7
|
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
|
- <link href="../css/init.css" rel="stylesheet" />
|
|
|
8
|
+ <link href="../css/init.css" rel="stylesheet"/>
|
|
9
|
9
|
<script src="../Script/Common/huayi.load.js"></script>
|
|
10
|
10
|
<script src="../Script/Common/huayi.config.js"></script>
|
|
11
|
|
- <link href="../css/Table/table1.css" rel="stylesheet" />
|
|
|
11
|
+ <link href="../css/Table/table1.css" rel="stylesheet"/>
|
|
12
|
12
|
<script src="../css/laydate/laydate.js"></script>
|
|
13
|
13
|
<style>
|
|
14
|
14
|
.LY:hover {
|
|
|
@@ -29,11 +29,13 @@
|
|
29
|
29
|
overflow-y: scroll;*/
|
|
30
|
30
|
overflow-x: scroll;
|
|
31
|
31
|
}
|
|
32
|
|
- .tds{
|
|
|
32
|
+
|
|
|
33
|
+ .tds {
|
|
33
|
34
|
background-color: #1ab394!important;
|
|
34
|
35
|
color: #fff;
|
|
35
|
36
|
padding: ;
|
|
36
|
37
|
}
|
|
|
38
|
+
|
|
37
|
39
|
.hwbb tbody td {
|
|
38
|
40
|
min-width: 100px;
|
|
39
|
41
|
overflow: hidden;
|
|
|
@@ -46,15 +48,14 @@
|
|
46
|
48
|
}
|
|
47
|
49
|
</style>
|
|
48
|
50
|
</head>
|
|
49
|
|
-
|
|
50
|
51
|
<body class="gray-bg">
|
|
51
|
52
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
52
|
53
|
<div class="daoHang clearfix">
|
|
53
|
54
|
<div class="dhLeft">
|
|
54
|
55
|
<sapn><i class="syIcon"></i>位置:
|
|
55
|
56
|
<a href="javaScript:;" id="ReIndex">首页</a>>
|
|
56
|
|
- <a href="javaScript:;">调查问卷</a>>
|
|
57
|
|
- <a href="" style="color: #000;">调查问卷统计</a>
|
|
|
57
|
+ <a href="javaScript:;">外呼管理</a>>
|
|
|
58
|
+ <a href="" style="color: #000;">外呼问题查询报表</a>
|
|
58
|
59
|
</sapn>
|
|
59
|
60
|
</div>
|
|
60
|
61
|
</div>
|
|
|
@@ -83,7 +84,6 @@
|
|
83
|
84
|
</div>
|
|
84
|
85
|
</div>
|
|
85
|
86
|
<div style="width: 100%;padding: 10px;">
|
|
86
|
|
-
|
|
87
|
87
|
<div class="table-body">
|
|
88
|
88
|
<table class="thTable hwbb table table-hover table-striped table-bordered table-condensed">
|
|
89
|
89
|
<thead>
|
|
|
@@ -98,7 +98,6 @@
|
|
98
|
98
|
</div>
|
|
99
|
99
|
</div>
|
|
100
|
100
|
</div>
|
|
101
|
|
- >
|
|
102
|
101
|
<script>
|
|
103
|
102
|
$(document).ready(function() {
|
|
104
|
103
|
Task();
|
|
|
@@ -159,14 +158,14 @@
|
|
159
|
158
|
token: $.cookie("token")
|
|
160
|
159
|
},
|
|
161
|
160
|
async: true,
|
|
162
|
|
- success: function(data) {
|
|
|
161
|
+ success: function(data) {
|
|
163
|
162
|
var Count = data.data;
|
|
164
|
|
- if( Count.length>0){
|
|
|
163
|
+ if(Count.length > 0) {
|
|
165
|
164
|
|
|
166
|
|
- $('<td class="tds"> </td>').appendTo(".hwbb thead tr");
|
|
167
|
|
- for(var i = 0; i < Count.length; i++) {
|
|
168
|
|
- $('<td class="tds" colspan="' + Count[i].fenxiangshu + '">' + Count[i].wenti + ' </td>').appendTo(".hwbb thead tr");
|
|
169
|
|
- }
|
|
|
165
|
+ $('<td class="tds"> </td>').appendTo(".hwbb thead tr");
|
|
|
166
|
+ for(var i = 0; i < Count.length; i++) {
|
|
|
167
|
+ $('<td class="tds" colspan="' + Count[i].fenxiangshu + '">' + Count[i].wenti + ' </td>').appendTo(".hwbb thead tr");
|
|
|
168
|
+ }
|
|
170
|
169
|
}
|
|
171
|
170
|
console.log(Count)
|
|
172
|
171
|
}
|
|
|
@@ -217,15 +216,16 @@
|
|
217
|
216
|
id.innerText = str;
|
|
218
|
217
|
}
|
|
219
|
218
|
//导出功能
|
|
220
|
|
- $('.export').click(function() {
|
|
221
|
|
- dcexcel(this);
|
|
222
|
|
- })
|
|
223
|
|
- function dcexcel(obj) {
|
|
224
|
|
- var url = huayi.config.callcenter_url + "Questionnaire/GetDataListExpt?token=" + $.cookie("token");
|
|
225
|
|
- url += "&taskname=" + $("#cljg").val() + "&question=" + $("#Wt").val();
|
|
226
|
|
- obj.href = url;
|
|
227
|
|
- }
|
|
228
|
|
-
|
|
|
219
|
+ $('.export').click(function() {
|
|
|
220
|
+ dcexcel(this);
|
|
|
221
|
+ })
|
|
|
222
|
+
|
|
|
223
|
+ function dcexcel(obj) {
|
|
|
224
|
+ var url = huayi.config.callcenter_url + "Questionnaire/GetDataListExpt?token=" + $.cookie("token");
|
|
|
225
|
+ url += "&taskname=" + $("#cljg").val() + "&question=" + $("#Wt").val();
|
|
|
226
|
+ obj.href = url;
|
|
|
227
|
+ }
|
|
|
228
|
+
|
|
229
|
229
|
}
|
|
230
|
230
|
|
|
231
|
231
|
)
|