项目计划查询

This commit is contained in:
Vergil
2020-03-12 17:01:34 +08:00
parent cd81b0fdc4
commit 733a1b1919

View File

@@ -223,7 +223,7 @@
{{ scope.row.组号 }} {{ scope.row.组号 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column min-width="200px" label="任务名称" align="center"> <el-table-column width="300px" label="任务名称" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.任务名称 }} {{ scope.row.任务名称 }}
</template> </template>
@@ -243,7 +243,7 @@
{{ scope.row.计划完成时间 ? scope.row.计划完成时间.split(' ')[0] : '-' }} {{ scope.row.计划完成时间 ? scope.row.计划完成时间.split(' ')[0] : '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column width="100px" label="期(天)" align="center"> <el-table-column width="140px" label="计划工期(天)" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.货期 }} {{ scope.row.货期 }}
</template> </template>
@@ -253,6 +253,11 @@
{{ scope.row.实际完成时间 ? scope.row.实际完成时间.split(' ')[0] : '-' }} {{ scope.row.实际完成时间 ? scope.row.实际完成时间.split(' ')[0] : '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column width="140px" label="实际工期(天)" align="center">
<template slot-scope="scope">
{{ scope.row.实际完成时间 ? scope.row.实际工期 : '-' }}
</template>
</el-table-column>
</el-table> </el-table>
</el-card> </el-card>
</div> </div>