|
|
@@ -46,16 +46,22 @@
|
|
|
<span v-else>{{ row.currentAmountUSD }}</span>
|
|
|
</tempalte>
|
|
|
<template slot="reconciliationAmount" slot-scope="{ row }">
|
|
|
- <el-popover trigger="click">
|
|
|
+ <el-popover trigger="click" v-if="Number(row.reconciliationAmount)">
|
|
|
<avue-crud :data="rlaData" :option="rlaOption"></avue-crud>
|
|
|
- <span style="color: #409eff; cursor: pointer" slot="reference" @click="viewRLA(row,'对账')">{{ row.reconciliationAmount }}</span>
|
|
|
+ <span style="color: #409eff; cursor: pointer" slot="reference" @click="viewRLA(row, '对账')">
|
|
|
+ {{ row.reconciliationAmount }}
|
|
|
+ </span>
|
|
|
</el-popover>
|
|
|
+ <span v-else>{{ row.reconciliationAmount }}</span>
|
|
|
</template>
|
|
|
<template slot="reconciliationAmountUsd" slot-scope="{ row }">
|
|
|
- <el-popover trigger="click">
|
|
|
+ <el-popover trigger="click" v-if="Number(row.reconciliationAmountUsd)">
|
|
|
<avue-crud :data="rlaData" :option="rlaOption"></avue-crud>
|
|
|
- <span style="color: #409eff; cursor: pointer" slot="reference" @click="viewRLA(row,'对账')">{{ row.reconciliationAmountUsd }}</span>
|
|
|
+ <span style="color: #409eff; cursor: pointer" slot="reference" @click="viewRLA(row, '对账')">
|
|
|
+ {{ row.reconciliationAmountUsd }}
|
|
|
+ </span>
|
|
|
</el-popover>
|
|
|
+ <span v-else>{{ row.reconciliationAmountUsd }}</span>
|
|
|
</template>
|
|
|
</avue-crud>
|
|
|
</div>
|
|
|
@@ -159,21 +165,21 @@ export default {
|
|
|
value: "C",
|
|
|
},
|
|
|
],
|
|
|
- sortable:true,
|
|
|
+ sortable: true,
|
|
|
overHidden: true,
|
|
|
},
|
|
|
{
|
|
|
label: "账单编号",
|
|
|
prop: "accBillNo",
|
|
|
width: 120,
|
|
|
- sortable:true,
|
|
|
+ sortable: true,
|
|
|
overHidden: true,
|
|
|
},
|
|
|
{
|
|
|
label: "主单号",
|
|
|
prop: "mblno",
|
|
|
width: 100,
|
|
|
- sortable:true,
|
|
|
+ sortable: true,
|
|
|
overHidden: true,
|
|
|
},
|
|
|
{
|
|
|
@@ -290,7 +296,7 @@ export default {
|
|
|
currentPage: 1,
|
|
|
total: 0,
|
|
|
pageSize: 200,
|
|
|
- pageSizes: [20, 50, 100, 200, 500,'ALL'],
|
|
|
+ pageSizes: [20, 50, 100, 200, 500, "ALL"],
|
|
|
},
|
|
|
pageData: [],
|
|
|
};
|
|
|
@@ -310,7 +316,7 @@ export default {
|
|
|
},
|
|
|
sizeChange(val) {
|
|
|
this.page.currentPage = 1;
|
|
|
- this.page.pageSize = val?val:this.queryData.length;
|
|
|
+ this.page.pageSize = val ? val : this.queryData.length;
|
|
|
this.getList();
|
|
|
},
|
|
|
currentChange(val) {
|