|
|
@ -51,11 +51,27 @@ |
|
|
<a-select-option value="2">授权</a-select-option> |
|
|
<a-select-option value="2">授权</a-select-option> |
|
|
</a-select> |
|
|
</a-select> |
|
|
</a-col> |
|
|
</a-col> |
|
|
<a-col :lg="12" :xl="8" :xxl="6" class="query_item query_item2"> |
|
|
<a-col :lg="12" :xl="8" :xxl="12" class="query_item query_item2"> |
|
|
<span>订单创建时间:</span> |
|
|
<span>订单创建时间:</span> |
|
|
<a-range-picker v-model="query.createtime" valueFormat="YYYY-MM-DD"/> |
|
|
<a-range-picker v-model="query.createtime" valueFormat="YYYY-MM-DD"/> |
|
|
</a-col> |
|
|
</a-col> |
|
|
<a-col :lg="12" :xl="16" :xxl="6" class="query_item query_item1"> |
|
|
<a-col :lg="12" :xl="8" :xxl="12" class="query_item query_item3"> |
|
|
|
|
|
<span>标的金额:</span> |
|
|
|
|
|
<a-input v-model="query.biaodi_start" 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.biaodi_end" placeholder="最大值"/> |
|
|
|
|
|
</a-col> |
|
|
|
|
|
<a-col :lg="12" :xl="8" :xxl="12" class="query_item query_item3"> |
|
|
|
|
|
<span>订单金额:</span> |
|
|
|
|
|
<a-input v-model="query.dingdan_start" 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.dingdan_end" placeholder="最大值"/> |
|
|
|
|
|
</a-col> |
|
|
|
|
|
<a-col :lg="12" :xl="16" :xxl="24" class="query_item query_item1"> |
|
|
<a-space :size="21"> |
|
|
<a-space :size="21"> |
|
|
<a-button type="primary" class="query_button" @click="getList(1)">查 询</a-button> |
|
|
<a-button type="primary" class="query_button" @click="getList(1)">查 询</a-button> |
|
|
<a-button class="query_button" @click="resetQurey">重 置</a-button> |
|
|
<a-button class="query_button" @click="resetQurey">重 置</a-button> |
|
|
@ -116,6 +132,10 @@ export default { |
|
|
createtime:'', |
|
|
createtime:'', |
|
|
goods_isli:'', |
|
|
goods_isli:'', |
|
|
charges_type:'', |
|
|
charges_type:'', |
|
|
|
|
|
biaodi_start:'', |
|
|
|
|
|
biaodi_end:'', |
|
|
|
|
|
dingdan_start:'', |
|
|
|
|
|
dingdan_end:'', |
|
|
}, |
|
|
}, |
|
|
batchcode:'', |
|
|
batchcode:'', |
|
|
visible:false, |
|
|
visible:false, |
|
|
@ -176,11 +196,23 @@ export default { |
|
|
dataIndex: 'entrust_type', |
|
|
dataIndex: 'entrust_type', |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
title: '标的金额', |
|
|
|
|
|
dataIndex: 'goods_price', |
|
|
|
|
|
width:'90px', |
|
|
|
|
|
// align:'center' |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
title: '交易佣金', |
|
|
|
|
|
dataIndex: 'total_service_charge', |
|
|
|
|
|
width:'90px', |
|
|
|
|
|
// align:'center' |
|
|
|
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '订单金额', |
|
|
title: '订单金额', |
|
|
dataIndex: 'total_money', |
|
|
dataIndex: 'total_money', |
|
|
width:'90px', |
|
|
width:'90px', |
|
|
|
|
|
// align:'center' |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: '操作', |
|
|
title: '操作', |
|
|
|