|
@@ -21,8 +21,8 @@
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="账套">
|
|
|
- <a-input placeholder="请输入账套" v-model="queryParam.orderNumber"></a-input>
|
|
|
- <!-- <a-select placeholder="请选择账套" v-model="queryParam.acSetNo">
|
|
|
+ <a-input placeholder="请输入账套" v-model="queryParam.account"></a-input>
|
|
|
+ <!-- <a-select placeholder="请选择账套" v-model="queryParam.account">
|
|
|
<a-select-option value="">请选择</a-select-option>
|
|
|
<a-select-option :value="0">香港森语(101)</a-select-option>
|
|
|
<a-select-option :value="1">宁波森语(102)</a-select-option>
|
|
@@ -108,7 +108,7 @@ export default {
|
|
|
// 账套替换
|
|
|
{
|
|
|
title: '账套',
|
|
|
- dataIndex: 'acSetNo',
|
|
|
+ dataIndex: 'account',
|
|
|
width: 80,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
@@ -135,7 +135,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '分销点',
|
|
|
- dataIndex: 'distributionPoint ',
|
|
|
+ dataIndex: 'distributionPoint',
|
|
|
width: 120,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
@@ -235,7 +235,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '币种',
|
|
|
- dataIndex: 'currencyValue',
|
|
|
+ dataIndex: 'currencyText',
|
|
|
width: 100,
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
@@ -314,7 +314,7 @@ export default {
|
|
|
// 查询条件
|
|
|
queryParam: {
|
|
|
orderNumber: '', // 订单号
|
|
|
- acSetNo: '',
|
|
|
+ account: '',
|
|
|
pageNo: '', // 初始页
|
|
|
pageSize: '-1' // 每页显示条数
|
|
|
},
|
|
@@ -360,7 +360,7 @@ export default {
|
|
|
// 重置
|
|
|
searchReset() {
|
|
|
this.queryParam.orderNumber = ''
|
|
|
- this.queryParam.acSetNo = ''
|
|
|
+ this.queryParam.account = ''
|
|
|
this.getOrderList()
|
|
|
},
|
|
|
// 选中行
|