|
|
@ -53,7 +53,7 @@ |
|
|
</a-col> |
|
|
</a-col> |
|
|
<a-col :lg="12" :xl="8" :xxl="6" class="query_item" > |
|
|
<a-col :lg="12" :xl="8" :xxl="6" class="query_item" > |
|
|
<span>订单状态:</span> |
|
|
<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="" @click.native='selectAll'>全部</a-select-option> |
|
|
<a-select-option value="1">待付款</a-select-option> |
|
|
<a-select-option value="1">待付款</a-select-option> |
|
|
<a-select-option value="2">待交付</a-select-option> |
|
|
<a-select-option value="2">待交付</a-select-option> |
|
|
@ -296,6 +296,10 @@ export default { |
|
|
this.page=page |
|
|
this.page=page |
|
|
this.getList() |
|
|
this.getList() |
|
|
}, |
|
|
}, |
|
|
|
|
|
// |
|
|
|
|
|
selectAll(){ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|