|
@@ -26,7 +26,7 @@
|
|
|
<hc-info-table>
|
|
|
<tr>
|
|
|
<hc-info-table-td is-title width="10%" center>项目阶段</hc-info-table-td>
|
|
|
- <hc-info-table-td center width="40%">{{ rowDrawerInfo.workFocusStage }}</hc-info-table-td>
|
|
|
+ <hc-info-table-td center width="40%">{{ rowDrawerInfo.workFocusStageName }}</hc-info-table-td>
|
|
|
<hc-info-table-td is-title width="10%" center>目标任务</hc-info-table-td>
|
|
|
<hc-info-table-td center width="40%">{{ rowDrawerInfo.targetPlan }}</hc-info-table-td>
|
|
|
</tr>
|
|
@@ -161,13 +161,13 @@ watch(() => props.loading, (res) => {
|
|
|
|
|
|
//表头
|
|
|
const tableColumn = [
|
|
|
- { key: 'workFocusStage', name: '项目阶段', width: 100 },
|
|
|
+ { key: 'workFocusStageName', name: '项目阶段', width: 100 },
|
|
|
{ key: 'targetPlan', name: '目标任务', width: 140 },
|
|
|
{ key: 'workPlan', name: '工作内容' },
|
|
|
{ key: 'startYear', name: '开始年份', width: 100 },
|
|
|
{ key: 'endYear', name: '结束年份', width: 100 },
|
|
|
{ key: 'dutyUnit', name: '责任单位', width: 100 },
|
|
|
- { key: 'key7', name: '完成情况填写比例(%)', width: 100 },
|
|
|
+ { key: 'comRate', name: '完成情况填写比例(%)', width: 100 },
|
|
|
{ key: 'action', name: '操作', width: isAdminAuth.value ? 220 : 100, fixed:'right', align: 'center' },
|
|
|
]
|
|
|
|