Browse Source

全部订单多选框

master
luyisha 3 years ago
parent
commit
1141a58e6f
  1. 8
      src/components/page/order/index.vue

8
src/components/page/order/index.vue

@ -53,7 +53,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item" >
<span>订单状态</span>
<a-select default-value="" v-model="query.transaction_status">
<a-select default-value="" v-model="query.transaction_status" mode="multiple" :maxTagCount="1" :maxTagTextLength="1">
<a-select-option value="" @click.native='selectAll'>全部</a-select-option>
<a-select-option value="1">待付款</a-select-option>
<a-select-option value="2">待交付</a-select-option>
@ -144,7 +144,7 @@ export default {
goods_name:'',
order_type:'',
entrust_type:'',
transaction_status:'',
transaction_status:[""],
createtime:[],
goods_isli:'',
charges_type:'',
@ -296,6 +296,10 @@ export default {
this.page=page
this.getList()
},
//
selectAll(){
}
}
}
</script>

Loading…
Cancel
Save