|
|
|
@ -54,7 +54,7 @@ |
|
|
|
<a-col :lg="12" :xl="8" :xxl="6" class="query_item" > |
|
|
|
<span>订单状态:</span> |
|
|
|
<a-select default-value="" v-model="query.transaction_status"> |
|
|
|
<a-select-option value="">全部</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="2">待交付</a-select-option> |
|
|
|
<a-select-option value="3">待结算</a-select-option> |
|
|
|
@ -62,10 +62,27 @@ |
|
|
|
<a-select-option value="5">已关闭</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-col> |
|
|
|
|
|
|
|
<a-col :lg="12" :xl="8" :xxl="6" class="query_item query_item2"> |
|
|
|
<span>订单创建时间:</span> |
|
|
|
<a-range-picker v-model="query.createtime" valueFormat="YYYY-MM-DD"/> |
|
|
|
</a-col> |
|
|
|
<a-col :lg="12" :xl="8" :xxl="12" class="query_item query_item3"> |
|
|
|
<span>标的金额:</span> |
|
|
|
<a-input v-model="query.entrust_name" placeholder="最小值"/> |
|
|
|
<el-col :span="10" v-html="'\u00a0'"/> |
|
|
|
<el-col style="color:#d9d9d9;">-</el-col> |
|
|
|
<el-col :span="10" v-html="'\u00a0'"/> |
|
|
|
<a-input v-model="query.entrust_name" placeholder="最大值"/> |
|
|
|
</a-col> |
|
|
|
<a-col :lg="12" :xl="8" :xxl="12" class="query_item query_item3"> |
|
|
|
<span>订单金额:</span> |
|
|
|
<a-input v-model="query.entrust_name" placeholder="最小值"/> |
|
|
|
<el-col :span="10" v-html="'\u00a0'"/> |
|
|
|
<el-col style="color:#d9d9d9;">-</el-col> |
|
|
|
<el-col :span="10" v-html="'\u00a0'"/> |
|
|
|
<a-input v-model="query.entrust_name" placeholder="最大值"/> |
|
|
|
</a-col> |
|
|
|
<a-col :lg="24" :xl="8" :xxl="24" class="query_item query_item1"> |
|
|
|
<a-space :size="21"> |
|
|
|
<a-button type="primary" class="query_button" @click="getList(1)">查 询</a-button> |
|
|
|
@ -191,6 +208,18 @@ export default { |
|
|
|
dataIndex: 'entrust_type', |
|
|
|
// align:'center' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '标的金额', |
|
|
|
dataIndex: 'goods_price', |
|
|
|
width:'90px', |
|
|
|
// align:'center' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '交易佣金', |
|
|
|
dataIndex: 'total_service_charge', |
|
|
|
width:'90px', |
|
|
|
// align:'center' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '订单金额', |
|
|
|
dataIndex: 'total_money', |
|
|
|
|