telephone-clients 4.0.0-1-90 → 4.0.0-1-91
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
CHANGED
|
@@ -197,6 +197,15 @@
|
|
|
197
197
|
close-on-select>
|
|
198
198
|
</v-select>
|
|
199
199
|
</div>
|
|
200
|
+
<div class="col-sm-3 form-group form-input-group" style="width: 20%">
|
|
201
|
+
<label class="font_normal_body" style="width: 40%" >接单站点</label>
|
|
202
|
+
<v-select :value.sync="model.f_outlets" v-model='model.f_outlets'
|
|
203
|
+
multiple="false"
|
|
204
|
+
:options='$parent.$parent.outlets'
|
|
205
|
+
condition="tswo.f_outlets = '{}'"
|
|
206
|
+
placeholder='接单站点'
|
|
207
|
+
close-on-select></v-select>
|
|
208
|
+
</div>
|
|
200
209
|
</div>
|
|
201
210
|
|
|
202
211
|
|
|
@@ -534,6 +543,7 @@ export default {
|
|
|
534
543
|
title: '工单列表',
|
|
535
544
|
data() {
|
|
536
545
|
return {
|
|
546
|
+
outlets:this.$appdata.getParam('呼叫所属部门')? [{label: '全部', value: ''}, ...this.$appdata.getParam('呼叫所属部门')]:this.$appdata.getParam('呼叫所属部门'),
|
|
537
547
|
slice_areas:[],
|
|
538
548
|
// 结案备注
|
|
539
549
|
f_caseremarks: '',
|