Sfoglia il codice sorgente

项目计划预算

duy 2 anni fa
parent
commit
45c82f3805

+ 1 - 1
src/views/home/components/TaskTable.vue

@@ -40,7 +40,7 @@
                 <span class="text-orange" v-if="row.status === 1">待审批</span>
                 <span class="text-green" v-if="row.status === 2">已审批</span>
                 <template v-if="row.status === 3">
-                    <el-popover placement="top-start" title="驳回原因" :width="200" :hide-after="0" content="这里是驳回原因说明内容">
+                    <el-popover placement="top-start" title="驳回原因" :width="200" :hide-after="0" :content="row?.rejectDesc">
                         <template #reference>
                             <span class="text-red">已驳回</span>
                         </template>

+ 8 - 0
src/views/program/project/form.vue

@@ -247,6 +247,14 @@ const tableColumn = [
     {key: 'planDays', name: '预计工作量(小数/整数/天)', width: '160', align: 'center'},
     {key: 'postTypeValue', name: '投入岗位类型(日单价)', width: '160', align: 'center'},
     {key: 'staffCount', name: '投入人员数量', width: '160', align: 'center'},
+    {key: 'budgetStaffCost', name: '预计人工成本(元)', width: '160', align: 'center'},
+    {key: 'budgetTravelExpense', name: '预计差旅费(元)', width: '160', align: 'center'},
+    {key: 'outsourceUnitPrice', name: '外包单价', width: '160', align: 'center'},
+    {key: 'outsourcePeopleCount', name: '外包数量', width: '160', align: 'center'},
+    {key: 'outsourceCountMoney', name: '外包金额', width: '160', align: 'center'},
+    {key: 'otherBudgetMoney', name: '其他预算额', width: '160', align: 'center'},
+    {key: 'budgetCountMoney', name: '总预算金额', width: '160', align: 'center'},
+    {key: 'budgetRemark	', name: '测算备注', width: '160', align: 'center'},
     {key: 'returnedValue', name: '关联回款里程碑', minWidth: '200', isTooltip: true},
     {key: 'action', name: '操作', width: '280', align: 'center', fixed: 'right'},
 ]