This commit is contained in:
liushuai
2020-04-17 18:07:27 +08:00
parent 199f7fbbec
commit 1f2325301a
10 changed files with 500 additions and 39 deletions

View File

@@ -36,7 +36,7 @@
</el-card>
<el-card style="margin-top: 5px">
<el-table v-loading="loading1" :data="tableData1" size="mini" border stripe style="width: 100%" height="600px" highlight-current-row>
<el-table-column label="供应商" align="center" min-width="150">
<el-table-column label="供应商" align="center" min-width="150" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.供应商名称 }}
</template>
@@ -46,7 +46,7 @@
{{ scope.row.姓名 }}
</template>
</el-table-column>
<el-table-column label="请款金额(元)" align="center" min-width="60">
<el-table-column label="请款金额(元)" align="center" min-width="80">
<template slot-scope="scope">
{{ scope.row.请款金额 }}
</template>
@@ -71,16 +71,16 @@
<!--{{ scope.row.审核情况内容 }}-->
<!--</template>-->
<!--</el-table-column>-->
<el-table-column label="审批时间" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.审批时间 ? scope.row.审批时间.split(' ')[0] : '' }}
</template>
</el-table-column>
<el-table-column label="审批人" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.审批人 }}
</template>
</el-table-column>
<el-table-column label="审批时间" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.审批时间 ? scope.row.审批时间.split(' ')[0] : '' }}
</template>
</el-table-column>
<el-table-column label="审批结果" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.审批情况内容 }}
@@ -101,7 +101,7 @@
{{ scope.row.付款时间 ? scope.row.付款时间.split(' ')[0] : '' }}
</template>
</el-table-column>
<el-table-column label="付款情况内容" align="center" min-width="60">
<el-table-column label="付款情况" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.付款情况内容 }}
</template>
@@ -226,6 +226,7 @@ export default {
},
searchTable2(row) { // 查看详情(请款信息包含的合同)
this.gridData = []
this.dialogFormVisible = true
searchRequsetFundDetail(row.采购合同请款流水号).then(response => {
this.gridData = response.data
})