telephone-clients 3.0.105-26 → 3.0.105-27
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
|
@@ -190,9 +190,7 @@
|
|
|
190
190
|
<label class="font_normal_body" style="width: 40%">报修类型</label>
|
|
191
191
|
<v-select :value.sync="model.f_repairtype" v-model='model.f_repairtype'
|
|
192
192
|
:multiple="true"
|
|
193
|
-
:options='$parent.$parent.repairstypes' placeholder='报修类型'
|
|
194
|
-
close-on-select
|
|
195
|
-
condition="f_repairtype like '%{}%'"></v-select>
|
|
193
|
+
:options='$parent.$parent.repairstypes' placeholder='报修类型'></v-select>
|
|
196
194
|
</div>
|
|
197
195
|
</div>
|
|
198
196
|
</div>
|
|
@@ -717,6 +715,14 @@
|
|
|
717
715
|
if(this.order_man){
|
|
718
716
|
condition.condition1 += ` and (f_order_man in (${this.order_man}) or f_outlets = '${this.depname}') `
|
|
719
717
|
}
|
|
718
|
+
if(args.model.f_repairtype.length > 0){
|
|
719
|
+
let repairtype = '('
|
|
720
|
+
args.model.f_repairtype.forEach(p => {
|
|
721
|
+
repairtype += "'" + p + "', "
|
|
722
|
+
})
|
|
723
|
+
repairtype = repairtype.substring(0,repairtype.length -2)
|
|
724
|
+
condition.condition1 += ' and f_repairtype in ' + repairtype + ')'
|
|
725
|
+
}
|
|
720
726
|
if(this.f_accept_man){
|
|
721
727
|
condition.condition2 = ` sender = '${this.f_accept_man}'`
|
|
722
728
|
condition.condition1 += 'and tt.actcount > 0'
|