|
|
|
@ -39,7 +39,7 @@
|
|
|
|
|
<el-select v-model="query.type" clearable placeholder="类型" class="filter-item" style="width: 130px"> |
|
|
|
|
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" /> |
|
|
|
|
</el-select> |
|
|
|
|
<el-select v-model="orderType" multiple |
|
|
|
|
<el-select v-model="orderType" multiple @change="change" |
|
|
|
|
clearable placeholder="订单类型" class="filter-item" style="width: 130px"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="item in typeOptions" |
|
|
|
@ -364,6 +364,14 @@
|
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
change(val){ |
|
|
|
|
let res=val.some(item => item=='0'); |
|
|
|
|
if (res){ |
|
|
|
|
this.orderType=['0'] |
|
|
|
|
// console.info('val',this.orderType) |
|
|
|
|
} |
|
|
|
|
// console.info('val',val); |
|
|
|
|
}, |
|
|
|
|
toDetailURL(id){ |
|
|
|
|
this.$router.push({ path: '/bxg/order/detail/'+id }) |
|
|
|
|
}, |
|
|
|
|