更新
This commit is contained in:
@@ -46,12 +46,12 @@
|
||||
{{ scope.row.姓名 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="请款金额(元)" align="center" min-width="60">
|
||||
<el-table-column label="请款金额(元)" align="center" min-width="110">
|
||||
<template slot-scope="scope">
|
||||
{{ 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.请款时间 ? scope.row.请款时间.split(' ')[0] : '' }}
|
||||
</template>
|
||||
@@ -61,19 +61,19 @@
|
||||
{{ 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.审核时间 ? 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="80">
|
||||
<template slot-scope="scope">
|
||||
{{ 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.未通过审核原因 }}
|
||||
{{ scope.row.未通过审核原因 === '通过' ? '' : scope.row.未通过审核原因 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="审批人" align="center" width="90">
|
||||
@@ -81,31 +81,41 @@
|
||||
{{ 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.审批时间 ? 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="80">
|
||||
<template slot-scope="scope">
|
||||
{{ 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.付款人 }}
|
||||
{{ scope.row.未通过审批原因 === '通过' ? '' : 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>
|
||||
</el-table-column>
|
||||
<el-table-column label="财务审批时间" align="center" min-width="80">
|
||||
<template slot-scope="scope">
|
||||
{{ 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="80">
|
||||
<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.未付款原因 }}
|
||||
</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">
|
||||
@@ -276,6 +286,9 @@ export default {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.app-container{
|
||||
width: 1400px;
|
||||
}
|
||||
.el-card{
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user