|
|
@@ -80,12 +80,12 @@
|
|
|
<el-table-column label="本周工作总结" min-width="450">
|
|
|
<el-table-column label="工作内容" prop="taskName">
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="是否上周遗留" width="100" prop="lastWeekFlag">
|
|
|
+<!-- <el-table-column label="是否上周遗留" width="100" prop="lastWeekFlag" v-show="false">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.lastWeekFlag==='0'" style="color: darkred">是</div>
|
|
|
<div v-else="scope.row.lastWeekFlag==='1'">否</div>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column>-->
|
|
|
<el-table-column label="完成情况说明" prop="progressValue" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<div style="color: darkgreen" @click="getTaskScheduleRemarks(scope.row)">{{ scope.row.progressValue }}%
|