telephone-clients 4.0.0-1-77 → 4.0.0-1-79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/pc/QueryVisitHistory.vue +267 -254
- package/src/components/pc/RecordListLeft.vue +1 -1
- package/src/components/temp/HandplanInfo.vue +125 -129
- package/src/components/temp/InstructInfo.vue +86 -86
- package/src/components/workorder/ChangeMeterPageNew.vue +7 -2
- package/src/filiale/meihekou/pc/RepairsWork.vue +1003 -1003
- package/src/filiale/meihekou/pc/WorkListNew.vue +1049 -1049
- package/src/filiale/xinkang/pc/HandplanInfo.vue +116 -0
- package/src/filiale/xinkang/telephone.js +19 -16
package/package.json
CHANGED
|
@@ -1,254 +1,267 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div id="pc-finduser-page" class="flex bg-white p-10 basic-main">
|
|
4
|
-
<div class="span">
|
|
5
|
-
<criteria-paged :model="model" v-ref:paged v-if="!show">
|
|
6
|
-
<criteria partial='criteria' v-ref:criteria @condition-changed='search'>
|
|
7
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
|
-
<div class="row">
|
|
9
|
-
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
10
|
-
<label class="font_normal_body" style="width: 40%">回访人</label>
|
|
11
|
-
<input type="text" class="input_search" v-model="model.f_visitman" placeholder='回访人'
|
|
12
|
-
condition="f_visitman like '%{}%'"
|
|
13
|
-
:size="model.f_visitman ? model.f_visitman.length : 8">
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
17
|
-
<label class="font_normal_body" style="width: 40%">电话号码</label>
|
|
18
|
-
<input type="text" class="input_search" v-model="model.f_phone" placeholder='电话号码'
|
|
19
|
-
condition="v.f_phone like '%{}%'">
|
|
20
|
-
</div>
|
|
21
|
-
|
|
22
|
-
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
23
|
-
<label class="font_normal_body" style="width: 40%">回访类型</label>
|
|
24
|
-
<v-select :value.sync="model.f_type"
|
|
25
|
-
v-model="model.f_type"
|
|
26
|
-
:options='$parent.$parent.types' placeholder='回访类型'
|
|
27
|
-
close-on-select condition="f_type = '{}' "></v-select>
|
|
28
|
-
</div>
|
|
29
|
-
|
|
30
|
-
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
31
|
-
<label class="font_normal_body" style="width: 40%">回访时间</label>
|
|
32
|
-
<datepicker placeholder="开始时间"
|
|
33
|
-
v-model="model.comingtime"
|
|
34
|
-
:value.sync="model.comingtime"
|
|
35
|
-
condition="f_visitdate > '{}'"
|
|
36
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
37
|
-
></datepicker>
|
|
38
|
-
</div>
|
|
39
|
-
|
|
40
|
-
<div style="float: right;" class="form-group span">
|
|
41
|
-
<button type="button" name="button" style="background-color: #5ac0d9;border-radius: 4px;"
|
|
42
|
-
class="button_spacing button_search" @click="$parent.$parent.clearmsg">置空
|
|
43
|
-
</button>
|
|
44
|
-
<button type="button" name="button"
|
|
45
|
-
class="button_search button_spacing" @click="$parent.$parent.search">查询
|
|
46
|
-
</button>
|
|
47
|
-
<div style="float: right;" class="button_spacing"
|
|
48
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
49
|
-
@click="$parent.$parent.hidden()"></div>
|
|
50
|
-
<export-excel-tel :data="$parent.$parent.searchData"
|
|
51
|
-
:field="$parent.$parent.excelHeaders"
|
|
52
|
-
sqlurl="af-telephone/rs/logic/telephoneExport" sql-name="tel_singleTable_OrderBy"
|
|
53
|
-
:template-name="$parent.$parent.excelTitle"></export-excel-tel>
|
|
54
|
-
</div>
|
|
55
|
-
|
|
56
|
-
</div>
|
|
57
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
58
|
-
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
59
|
-
<label class="font_normal_body" style="width: 40%">回访时间</label>
|
|
60
|
-
<datepicker placeholder="结束时间"
|
|
61
|
-
v-model="model.endtime"
|
|
62
|
-
:value.sync="model.endtime"
|
|
63
|
-
condition="f_visitdate < '{}'"
|
|
64
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
65
|
-
></datepicker>
|
|
66
|
-
</div>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</criteria>
|
|
70
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
71
|
-
<template partial='head'>
|
|
72
|
-
<tr>
|
|
73
|
-
<th>
|
|
74
|
-
<nobr>序号</nobr>
|
|
75
|
-
</th>
|
|
76
|
-
<th>
|
|
77
|
-
<nobr>回访人</nobr>
|
|
78
|
-
</th>
|
|
79
|
-
<th>
|
|
80
|
-
<nobr>电话号码</nobr>
|
|
81
|
-
</th>
|
|
82
|
-
<th>
|
|
83
|
-
<nobr>用户信息</nobr>
|
|
84
|
-
</th>
|
|
85
|
-
<th>
|
|
86
|
-
<nobr>故障明细</nobr>
|
|
87
|
-
</th>
|
|
88
|
-
<th>
|
|
89
|
-
<nobr>回访时间</nobr>
|
|
90
|
-
</th>
|
|
91
|
-
<th>
|
|
92
|
-
<nobr>回访类型</nobr>
|
|
93
|
-
</th>
|
|
94
|
-
<th>
|
|
95
|
-
<nobr
|
|
96
|
-
</th>
|
|
97
|
-
<th>
|
|
98
|
-
<nobr
|
|
99
|
-
</th>
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
<td style="text-align: center">
|
|
110
|
-
<nobr>{{
|
|
111
|
-
</td>
|
|
112
|
-
<td style="text-align: center">
|
|
113
|
-
<nobr>{{ row.
|
|
114
|
-
</td>
|
|
115
|
-
<td style="text-align: center">
|
|
116
|
-
<nobr>{{
|
|
117
|
-
</td>
|
|
118
|
-
<td style="text-align: center">
|
|
119
|
-
<nobr>{{ row.
|
|
120
|
-
</td>
|
|
121
|
-
<td style="text-align: center">
|
|
122
|
-
<nobr>{{ row.
|
|
123
|
-
</td>
|
|
124
|
-
<td style="text-align: center">
|
|
125
|
-
<nobr>{{ row.
|
|
126
|
-
</td>
|
|
127
|
-
<td style="text-align: center">
|
|
128
|
-
<nobr>{{ row.
|
|
129
|
-
</td>
|
|
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
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
this.
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
}
|
|
254
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div id="pc-finduser-page" class="flex bg-white p-10 basic-main">
|
|
4
|
+
<div class="span">
|
|
5
|
+
<criteria-paged :model="model" v-ref:paged v-if="!show">
|
|
6
|
+
<criteria partial='criteria' v-ref:criteria @condition-changed='search'>
|
|
7
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
10
|
+
<label class="font_normal_body" style="width: 40%">回访人</label>
|
|
11
|
+
<input type="text" class="input_search" v-model="model.f_visitman" placeholder='回访人'
|
|
12
|
+
condition="f_visitman like '%{}%'"
|
|
13
|
+
:size="model.f_visitman ? model.f_visitman.length : 8">
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
17
|
+
<label class="font_normal_body" style="width: 40%">电话号码</label>
|
|
18
|
+
<input type="text" class="input_search" v-model="model.f_phone" placeholder='电话号码'
|
|
19
|
+
condition="v.f_phone like '%{}%'">
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
23
|
+
<label class="font_normal_body" style="width: 40%">回访类型</label>
|
|
24
|
+
<v-select :value.sync="model.f_type"
|
|
25
|
+
v-model="model.f_type"
|
|
26
|
+
:options='$parent.$parent.types' placeholder='回访类型'
|
|
27
|
+
close-on-select condition="f_type = '{}' "></v-select>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
31
|
+
<label class="font_normal_body" style="width: 40%">回访时间</label>
|
|
32
|
+
<datepicker placeholder="开始时间"
|
|
33
|
+
v-model="model.comingtime"
|
|
34
|
+
:value.sync="model.comingtime"
|
|
35
|
+
condition="f_visitdate > '{}'"
|
|
36
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
37
|
+
></datepicker>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<div style="float: right;" class="form-group span">
|
|
41
|
+
<button type="button" name="button" style="background-color: #5ac0d9;border-radius: 4px;"
|
|
42
|
+
class="button_spacing button_search" @click="$parent.$parent.clearmsg">置空
|
|
43
|
+
</button>
|
|
44
|
+
<button type="button" name="button"
|
|
45
|
+
class="button_search button_spacing" @click="$parent.$parent.search">查询
|
|
46
|
+
</button>
|
|
47
|
+
<div style="float: right;" class="button_spacing"
|
|
48
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
49
|
+
@click="$parent.$parent.hidden()"></div>
|
|
50
|
+
<export-excel-tel :data="$parent.$parent.searchData"
|
|
51
|
+
:field="$parent.$parent.excelHeaders"
|
|
52
|
+
sqlurl="af-telephone/rs/logic/telephoneExport" sql-name="tel_singleTable_OrderBy"
|
|
53
|
+
:template-name="$parent.$parent.excelTitle"></export-excel-tel>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
</div>
|
|
57
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
58
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
59
|
+
<label class="font_normal_body" style="width: 40%">回访时间</label>
|
|
60
|
+
<datepicker placeholder="结束时间"
|
|
61
|
+
v-model="model.endtime"
|
|
62
|
+
:value.sync="model.endtime"
|
|
63
|
+
condition="f_visitdate < '{}'"
|
|
64
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
65
|
+
></datepicker>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
</criteria>
|
|
70
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
71
|
+
<template partial='head'>
|
|
72
|
+
<tr>
|
|
73
|
+
<th>
|
|
74
|
+
<nobr>序号</nobr>
|
|
75
|
+
</th>
|
|
76
|
+
<th>
|
|
77
|
+
<nobr>回访人</nobr>
|
|
78
|
+
</th>
|
|
79
|
+
<th>
|
|
80
|
+
<nobr>电话号码</nobr>
|
|
81
|
+
</th>
|
|
82
|
+
<th>
|
|
83
|
+
<nobr>用户信息</nobr>
|
|
84
|
+
</th>
|
|
85
|
+
<th>
|
|
86
|
+
<nobr>故障明细</nobr>
|
|
87
|
+
</th>
|
|
88
|
+
<th>
|
|
89
|
+
<nobr>回访时间</nobr>
|
|
90
|
+
</th>
|
|
91
|
+
<th>
|
|
92
|
+
<nobr>回访类型</nobr>
|
|
93
|
+
</th>
|
|
94
|
+
<th>
|
|
95
|
+
<nobr>质量满意度</nobr>
|
|
96
|
+
</th>
|
|
97
|
+
<th>
|
|
98
|
+
<nobr>服务满意度</nobr>
|
|
99
|
+
</th>
|
|
100
|
+
<th>
|
|
101
|
+
<nobr>客户意见</nobr>
|
|
102
|
+
</th>
|
|
103
|
+
<th>
|
|
104
|
+
<nobr>备注</nobr>
|
|
105
|
+
</th>
|
|
106
|
+
</tr>
|
|
107
|
+
</template>
|
|
108
|
+
<template partial='body'>
|
|
109
|
+
<td style="text-align: center">
|
|
110
|
+
<nobr>{{ $index + 1 }}</nobr>
|
|
111
|
+
</td>
|
|
112
|
+
<td style="text-align: center">
|
|
113
|
+
<nobr>{{ row.f_visitman }}</nobr>
|
|
114
|
+
</td>
|
|
115
|
+
<td style="text-align: center">
|
|
116
|
+
<nobr>{{ row.f_phone }}</nobr>
|
|
117
|
+
</td>
|
|
118
|
+
<td style="text-align: center">
|
|
119
|
+
<nobr>{{ row.f_user_name }} {{ row.f_address }}</nobr>
|
|
120
|
+
</td>
|
|
121
|
+
<td style="text-align: center">
|
|
122
|
+
<nobr>{{ $parent.$parent.$parent.trouble(row.failure) }}</nobr>
|
|
123
|
+
</td>
|
|
124
|
+
<td style="text-align: center">
|
|
125
|
+
<nobr>{{ row.f_visitdate }}</nobr>
|
|
126
|
+
</td>
|
|
127
|
+
<td style="text-align: center">
|
|
128
|
+
<nobr>{{ row.f_type }}</nobr>
|
|
129
|
+
</td>
|
|
130
|
+
<td style="text-align: center">
|
|
131
|
+
<nobr>{{ row.f_qualitycore }}</nobr>
|
|
132
|
+
</td>
|
|
133
|
+
<td style="text-align: center">
|
|
134
|
+
<nobr>{{ row.f_servicescore }}</nobr>
|
|
135
|
+
</td>
|
|
136
|
+
<td style="text-align: center">
|
|
137
|
+
<nobr>{{ row.f_remarks }}</nobr>
|
|
138
|
+
</td>
|
|
139
|
+
<td style="text-align: center">
|
|
140
|
+
<nobr>{{ row.f_bz }}</nobr>
|
|
141
|
+
</td>
|
|
142
|
+
</template>
|
|
143
|
+
</data-grid>
|
|
144
|
+
</criteria-paged>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
<!--<div v-if="show">-->
|
|
148
|
+
<!--<modal :show.sync="show" v-ref:modal backdrop="false">-->
|
|
149
|
+
<!--<header slot="modal-header" class="modal-header">-->
|
|
150
|
+
<!--<h2 class="modal-title">正在播放{{wavflie}}语音文件</h2>-->
|
|
151
|
+
<!--</header>-->
|
|
152
|
+
<!--<article slot="modal-body" class="modal-body">-->
|
|
153
|
+
<!--<audio controls>-->
|
|
154
|
+
<!--<source src="{{'/Dual/GetWAV/'+ wavflie +'.wav'}}" type="audio/wav" >-->
|
|
155
|
+
<!--您的浏览器不支持 audio 元素。-->
|
|
156
|
+
<!--</audio>-->
|
|
157
|
+
<!--</article>-->
|
|
158
|
+
<!--<footer slot="modal-footer" class="modal-footer">-->
|
|
159
|
+
<!--<button type="button" class="btn btn-default" @click='closemodel'>返回</button>-->
|
|
160
|
+
<!--</footer>-->
|
|
161
|
+
<!--</modal>-->
|
|
162
|
+
<!--</div>-->
|
|
163
|
+
</div>
|
|
164
|
+
</template>
|
|
165
|
+
|
|
166
|
+
<script>
|
|
167
|
+
import {PagedList} from 'vue-client'
|
|
168
|
+
|
|
169
|
+
export default {
|
|
170
|
+
title: '回访记录',
|
|
171
|
+
data() {
|
|
172
|
+
return {
|
|
173
|
+
model: new PagedList('af-telephone/rs/sql/tel_singleTable_OrderBy', 20, {
|
|
174
|
+
items: "' v.*,s.failure '",
|
|
175
|
+
tablename: "' t_telvisit v LEFT JOIN t_serviceworkorder s ON v.serviceid = s.f_service_id '",
|
|
176
|
+
orderitem: "' v.f_visitdate desc '"
|
|
177
|
+
}),
|
|
178
|
+
row: null,
|
|
179
|
+
show: false,
|
|
180
|
+
wavflie: '',
|
|
181
|
+
orderMan: '',
|
|
182
|
+
msgs: [],
|
|
183
|
+
service: Object,
|
|
184
|
+
pendingCount: 0,
|
|
185
|
+
serobj: Object,
|
|
186
|
+
criteriaShow: false,
|
|
187
|
+
excelHeaders: {
|
|
188
|
+
'f_visitman': '回访人',
|
|
189
|
+
'f_phone': '回访电话',
|
|
190
|
+
'f_visitdate': '回访时间',
|
|
191
|
+
'f_type': '回访类型',
|
|
192
|
+
'f_remarks': '客户意见',
|
|
193
|
+
'f_bz': '备注'
|
|
194
|
+
},
|
|
195
|
+
searchData: {
|
|
196
|
+
condition: "1=1",
|
|
197
|
+
items: "*",
|
|
198
|
+
tablename: 't_telvisit',
|
|
199
|
+
orderitem: 'f_visitdate desc'
|
|
200
|
+
},
|
|
201
|
+
excelTitle: '回访记录导出',
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
ready() {
|
|
205
|
+
},
|
|
206
|
+
methods: {
|
|
207
|
+
hidden() {
|
|
208
|
+
this.criteriaShow = !this.criteriaShow
|
|
209
|
+
},
|
|
210
|
+
trouble(val) {
|
|
211
|
+
let failureall = ''
|
|
212
|
+
// val=[{"f_failure_type":"抽油烟机","failurecase":[],"f_equipment":""},{"f_failure_type":"抽油烟机","failurecase":[],"f_equipment":""},{"f_failure_type":"抽油烟机","failurecase":[],"f_equipment":""}]
|
|
213
|
+
|
|
214
|
+
let failure = JSON.parse(val)
|
|
215
|
+
for (let i = 0; i < failure.length; i++) {
|
|
216
|
+
if (failure[i].failurecase.length > 0) {
|
|
217
|
+
failureall += failure[i].f_failure_type + ":"
|
|
218
|
+
for (let j = 0; j < failure[i].failurecase.length; j++) {
|
|
219
|
+
failureall += failure[i].failurecase[j]
|
|
220
|
+
if (j + 1 != failure[i].failurecase.length) {
|
|
221
|
+
failureall += ","
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
} else {
|
|
225
|
+
failureall += failure[i].f_failure_type
|
|
226
|
+
}
|
|
227
|
+
if (i + 1 != failure.length) {
|
|
228
|
+
failureall += ';'
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
return failureall
|
|
232
|
+
},
|
|
233
|
+
//置空 查询条件
|
|
234
|
+
clearmsg() {
|
|
235
|
+
this.$refs.paged.$refs.criteria.model = {}
|
|
236
|
+
},
|
|
237
|
+
playWav(val) {
|
|
238
|
+
this.wavflie = val;
|
|
239
|
+
this.show = true
|
|
240
|
+
},
|
|
241
|
+
closemodel() {
|
|
242
|
+
this.wavflie = '';
|
|
243
|
+
this.show = false
|
|
244
|
+
},
|
|
245
|
+
search() {
|
|
246
|
+
this.model.rows = []
|
|
247
|
+
this.$refs.paged.$refs.criteria.search()
|
|
248
|
+
this.searchData.condition = this.model.condition
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
computed: {
|
|
252
|
+
types() {
|
|
253
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('回访类型')]
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
</script>
|
|
258
|
+
<style scoped>
|
|
259
|
+
label {
|
|
260
|
+
width: 80px;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
#pc-finduser-page .form-input-group {
|
|
264
|
+
margin: 5px 0px;
|
|
265
|
+
height: auto;
|
|
266
|
+
}
|
|
267
|
+
</style>
|
|
@@ -243,7 +243,7 @@ export default {
|
|
|
243
243
|
if (this.flag == '是') {
|
|
244
244
|
if (this.f_filiale_id) {
|
|
245
245
|
args.condition = args.condition + ' and f_filiale_id in ' + this.f_filiale_id
|
|
246
|
-
}
|
|
246
|
+
}
|
|
247
247
|
}
|
|
248
248
|
if(args.model.istelon == '是'){
|
|
249
249
|
args.condition = args.condition + " and len(starttime) != 0 "
|