|
@@ -19,10 +19,15 @@
|
|
|
<el-table-column label="项目" prop="projectName">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.projectName }}</div>
|
|
|
- <el-tag size="mini">{{ '进度:' + scope.row.progressValue + '%' }}</el-tag>
|
|
|
+ <el-tag size="mini">{{ '进度:' + scope.row.projectProgress + '%' }}</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="模块" prop="moduleName">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>{{ scope.row.moduleName }}</div>
|
|
|
+ <el-tag size="mini">{{ '进度:' + scope.row.moduleProgress + '%' }}</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="模块" prop="moduleName"/>
|
|
|
<el-table-column label="任务名称" prop="taskName" min-width="150"/>
|
|
|
<el-table-column label="进度(%)" prop="progressValue" width="70"/>
|
|
|
<el-table-column label="周期" width="160">
|