This commit is contained in:
liushuai
2020-03-14 10:49:25 +08:00
parent fb25d5036c
commit a53f88aa61

View File

@@ -28,54 +28,34 @@
</el-card> </el-card>
<el-card style="margin-top: 5px"> <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 @row-click="searchTable2"> <el-table v-loading="loading1" :data="tableData1" size="mini" border stripe style="width: 100%" height="600px" highlight-current-row @row-click="searchTable2">
<el-table-column label="采购合同编号" align="center" min-width="130">
<template slot-scope="scope">
{{ scope.row.采购合同编号 }}
</template>
</el-table-column>
<el-table-column label="供应商" align="center" min-width="150"> <el-table-column label="供应商" align="center" min-width="150">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.供应商名称 }} {{ scope.row.供应商名称 }}
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
{{ scope.row.姓名 }} {{ scope.row.姓名 }}
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
{{ scope.row.合同总 }} {{ scope.row.请款金 }}
</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.规定到货时间 }}
</template>
</el-table-column>
<el-table-column label="提交时间" align="center" min-width="60">
<template slot-scope="scope">
{{ scope.row.提交时间 }}
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
{{ scope.row.审核时间 }} {{ scope.row.审核时间 ? scope.row.审核时间.split(' ')[0] : '' }}
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
{{ scope.row.审核人 }} {{ scope.row.审核人姓名 }}
</template> </template>
</el-table-column> </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"> <template slot-scope="scope">
{{ scope.row.审核结果 }} {{ scope.row.审核情况内容 }}
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>