瀏覽代碼

工作要点

ZaiZai 1 年之前
父節點
當前提交
0b68df0c95
共有 1 個文件被更改,包括 9 次插入4 次删除
  1. 9 4
      src/views/project/modules/gist-list.vue

+ 9 - 4
src/views/project/modules/gist-list.vue

@@ -26,19 +26,19 @@
                         <hc-info-table>
                             <tr>
                                 <hc-info-table-td is-title width="10%" center>项目阶段</hc-info-table-td>
-                                <hc-info-table-td center width="40%">紧盯重大项目,推动交通投资稳进增效</hc-info-table-td>
+                                <hc-info-table-td center width="40%">{{ rowDrawerInfo.workFocusStage }}</hc-info-table-td>
                                 <hc-info-table-td is-title width="10%" center>目标任务</hc-info-table-td>
-                                <hc-info-table-td center width="40%">充分发挥投资的关键作用</hc-info-table-td>
+                                <hc-info-table-td center width="40%">{{ rowDrawerInfo.targetPlan }}</hc-info-table-td>
                             </tr>
                         </hc-info-table>
                         <hc-info-table class="mt-[-1px]">
                             <tr>
                                 <hc-info-table-td is-title width="10%" center>工作内容</hc-info-table-td>
-                                <hc-info-table-td center width="90%">2024年,市交通运输委完成投资1155亿元,其中铁路计划完成投资480亿元、公路计划完成投资565亿元(高速公路建设计划投资428亿元、高速公路养护计划投资8.5亿元、普通公路建设及养护工程力争完成投资110亿元、公交及枢纽场站计划投资8.5亿元)、水运计划投资39亿元、民航计划投资70亿元、邮政计划投资1.3亿元、公交车辆购置更新等其他计划投资10亿元。</hc-info-table-td>
+                                <hc-info-table-td center width="90%">{{ rowDrawerInfo.workPlan }}</hc-info-table-td>
                             </tr>
                             <tr v-if="isDrawerType === 'view'">
                                 <hc-info-table-td is-title width="10%" center>责任单位</hc-info-table-td>
-                                <hc-info-table-td center width="90%">市交通运输委</hc-info-table-td>
+                                <hc-info-table-td center width="90%">{{ rowDrawerInfo.dutyUnit }}</hc-info-table-td>
                             </tr>
                         </hc-info-table>
                     </div>
@@ -198,8 +198,12 @@ const tableYearData = ref([
 ])
 const testValue = ref('')
 
+//抽屉面板详情
+const rowDrawerInfo = ref({})
+
 //工作完成情况
 const completion = (row) => {
+    rowDrawerInfo.value = row
     isDrawerType.value = 'edit'
     isDrawer.value = true
     emit('completion', row)
@@ -215,6 +219,7 @@ const saveCompletionClick = () => {
 const isDrawer = ref(false)
 const isDrawerType = ref('view')
 const examine = (row) => {
+    rowDrawerInfo.value = row
     isDrawerType.value = 'view'
     isDrawer.value = true
     emit('examine', row)