Browse Source

添加需求交付日期

qinzhipeng_v 5 năm trước cách đây
mục cha
commit
c539b4a84f

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

@@ -150,9 +150,9 @@
           <a :href="scope.row.mrdUrl" style="color: #409EFF;" target="_blank">{{ scope.row.mrdUrl }}</a>
         </template>
       </el-table-column>
-      <!-- <el-table-column label="交付日期" min-width="200" align="center">
-        <template slot-scope="scope">{{ scope.row.gmtModify }}</template>
-      </el-table-column> -->
+      <el-table-column label="交付日期" min-width="200" align="center">
+        <template slot-scope="scope">{{ scope.row.optionsObject === null? '' :scope.row.optionsObject.endTime }}</template>
+      </el-table-column>
       <el-table-column label="任务数量" min-width="100" align="center">
         <template slot-scope="scope">{{ scope.row.taskCount }}</template>
       </el-table-column>

+ 3 - 3
src/views/projectManage/projectList/components/needsList.vue

@@ -64,9 +64,9 @@
           <el-link :href="scope.row.mrdUrl" class="mrdUrl" target="_blank">{{ scope.row.mrdUrl }}</el-link>
         </template>
       </el-table-column>
-      <!-- <el-table-column label="交付日期" min-width="200" align="center" show-overflow-tooltip>
-        <template slot-scope="scope">{{ scope.row.gmtModify }}</template>
-      </el-table-column> -->
+      <el-table-column label="交付日期" min-width="200" align="center" show-overflow-tooltip>
+        <template slot-scope="scope">{{ scope.row.optionsObject === null? '' :scope.row.optionsObject.endTime }}</template>
+      </el-table-column>
       <el-table-column label="任务数量" min-width="100" align="center">
         <template slot-scope="scope">{{ scope.row.taskCount }}</template>
       </el-table-column>

+ 3 - 1
src/views/workbench/team/components/needsList.vue

@@ -68,7 +68,9 @@
           <el-link :href="scope.row.mrdUrl" class="mrdUrl" target="_blank">{{ scope.row.mrdUrl }}</el-link>
         </template>
       </el-table-column>
-      <!-- <el-table-column label="交付日期" width="150" align="center" prop="gmtModify" show-overflow-tooltip /> -->
+      <el-table-column label="交付日期" min-width="200" align="center" show-overflow-tooltip>
+        <template slot-scope="scope">{{ scope.row.optionsObject === null? '' :scope.row.optionsObject.endTime }}</template>
+      </el-table-column>
       <el-table-column label="任务数量" width="100" align="center" prop="taskCount" show-overflow-tooltip />
       <el-table-column label="缺陷数量" width="100" align="center" prop="bugCount" show-overflow-tooltip />
     </el-table>