ggooalice преди 2 години
родител
ревизия
28cfcf3a7c
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

+ 3 - 1
fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

@@ -366,10 +366,12 @@
                     {{scope.row.projectName}}
                   </template>
                 </el-table-column>
-                <el-table-column v-for="(item,indexs) in stages" :label="item" min-width="150" :key="indexs" align="right" show-overflow-tooltip="true" >
+                <el-table-column v-for="(item,indexs) in stages" :label="item + '(实际|预算)'" min-width="150" :key="indexs" align="right" show-overflow-tooltip="true" >
                   <template slot-scope="scope" >
                     {{scope.row.stageCostList.filter(s=>s.stageName == item).length == 0?'0':scope.row.stageCostList.filter(s=>s.stageName == item)[0].workingTime.toFixed(1)}}h
                     <span v-if="permissions.reportPhaseCost">/¥{{scope.row.stageCostList.filter(s=>s.stageName == item).length == 0?'0':scope.row.stageCostList.filter(s=>s.stageName == item)[0].cost.toFixed(1)}}</span>
+                    <span> | </span>
+                    <span>{{scope.row.stageCostList.filter(s=>s.stageName == item).length == 0?'0':scope.row.stageCostList.filter(s=>s.stageName == item)[0].stagesTime.toFixed(1)}}h</span>
                   </template>
                 </el-table-column>
             </el-table>