This commit is contained in:
liushuai
2020-04-24 17:24:14 +08:00
parent 4bb41367fa
commit 6d5edf5211
4 changed files with 45 additions and 10 deletions

View File

@@ -88,7 +88,7 @@
</el-table-column>
<el-table-column label="未过原因" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.未通过审批原因 }}
{{ scope.row.未通过审批原因 === '通过' ? '' : scope.row.未通过审批原因 }}
</template>
</el-table-column>
<el-table-column label="付款人" align="center" min-width="60">
@@ -106,6 +106,11 @@
{{ scope.row.付款情况内容 }}
</template>
</el-table-column>
<el-table-column label="未过原因" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.未付款原因 === '通过' ? '' : scope.row.未付款原因 }}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="90px" fixed="right">
<template slot-scope="scope">
<el-tooltip :open-delay="1000" effect="dark" content="查看详情" placement="top">
@@ -218,7 +223,7 @@ export default {
this.supplierValue ? check1 = 1 : check1 = 0
this.dateRange ? check2 = 1 : (check2 = 0, this.dateRange = '')
searchTable1(this.radio, check1, this.supplierValue, check2, this.dateRange[0], this.dateRange[1], this.pageCurrent1, this.pageSize1).then(response => {
console.log(response.data)
console.log(response.data, 123)
this.loading1 = false
this.tableData1 = response.data.rows
this.total1 = response.data.total