qinzhipeng_v vor 5 Jahren
Ursprung
Commit
b9097b96e7

+ 6 - 6
src/views/projectManage/iteration/components/requiredTable.vue

@@ -30,7 +30,7 @@
             </el-dropdown-menu>
           </el-dropdown>
         </div>
-        <div class="iterationCode"><img class="iterationImage" src="@/assets/建立档案@2x.png">
+        <div v-if="false" class="iterationCode"><img class="iterationImage" src="@/assets/建立档案@2x.png">
           <el-dropdown trigger="click" placement="bottom">
             <span class="iterationCode">
               变更状态
@@ -67,11 +67,11 @@
       show-overflow-tooltip="true"
       @selection-change="handleSelectionChange"
     >
-      <el-table-column fixed width="35">
+      <el-table-column :key="Math.random()" fixed width="35">
         <img style="display: inline-block; width: 8px; vertical-align: middle;" :src="image_role">
       </el-table-column>
-      <el-table-column type="selection" fixed min-width="40" align="center" />
-      <el-table-column type="expand" fixed width="40">
+      <el-table-column :key="Math.random()" type="selection" fixed min-width="40" align="center" />
+      <el-table-column :key="Math.random()" type="expand" fixed width="40">
         <template slot="header">
           <div class="expand"><i v-show="!allChange" class="el-icon-plus" @click="expandAll(true)" /></div>
           <div class="expand"><i v-show="allChange" class="el-icon-minus" @click="expandAll(false)" /></div>
@@ -80,7 +80,7 @@
           <iterationTable :id="props.row.id" :type-list="taskScheduleEvent" />
         </template>
       </el-table-column>
-      <el-table-column label="优先级" fixed min-width="80" align="center">
+      <el-table-column :key="Math.random()" label="优先级" fixed min-width="80" align="center">
         <template v-slot="scope">
           <div align="center">
             <div
@@ -100,7 +100,7 @@
           </div>
         </template>
       </el-table-column>
-      <el-table-column label="需求名称" fixed min-width="250" show-overflow-tooltip>
+      <el-table-column :key="Math.random()" label="需求名称" fixed min-width="250" show-overflow-tooltip>
         <template v-slot="scope">
           <div class="table-project-name" @click="clickRequiredName(scope.row.id)">
             <span class="id">{{ scope.row.requirementDisplayId }} <img v-if="scope.row.type === 1" :src="extraUrgent" style="height: 17px;padding: 0 10px;"></span>

+ 1 - 0
src/views/projectManage/taskList/taskViewDetail.vue

@@ -627,6 +627,7 @@ export default {
         const resTask = await taskUpdate({ taskInfoDO, user })
         if (resTask.code === 200) {
           this.$refs.timeLine.taskGetWorkFlow()
+          this.taskGet()
           this.$message({ message: '修改成功', type: 'success', offset: 150 })
         }
       }