소스 검색

修复bug

ZaiZai 1 년 전
부모
커밋
a623718ce2
1개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 8 8
      src/views/project/modules/gist-list.vue

+ 8 - 8
src/views/project/modules/gist-list.vue

@@ -34,9 +34,9 @@
                         <hc-info-table v-if="isDrawerType === 'view'" class="mt-[-1px]">
                             <tr>
                                 <hc-info-table-td is-title width="10%" center>开始年份</hc-info-table-td>
-                                <hc-info-table-td center width="15%">-</hc-info-table-td>
+                                <hc-info-table-td center width="15%">{{ rowDrawerInfo.startYear }}</hc-info-table-td>
                                 <hc-info-table-td is-title width="10%" center>结束年份</hc-info-table-td>
-                                <hc-info-table-td center width="15%">-</hc-info-table-td>
+                                <hc-info-table-td center width="15%">{{ rowDrawerInfo.endYear }}</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.dutyUnit }}</hc-info-table-td>
                             </tr>
@@ -75,20 +75,20 @@
                                                 <span v-else>{{ row.progress }}</span>
                                             </template>
                                         </el-table-column>
-                                        <el-table-column prop="schedule" label="存在问题" align="center">
+                                        <el-table-column prop="problemInfo" label="存在问题" align="center">
                                             <template #default="{ row }">
                                                 <hc-body v-if="isDrawerType === 'edit'">
-                                                    <hc-table-input v-model="row.schedule" type="textarea" resize="none" :disabled="currentYear < yearKey" />
+                                                    <hc-table-input v-model="row.problemInfo" type="textarea" resize="none" :disabled="currentYear < yearKey" />
                                                 </hc-body>
-                                                <span v-else>{{ row.schedule }}</span>
+                                                <span v-else>{{ row.problemInfo }}</span>
                                             </template>
                                         </el-table-column>
-                                        <el-table-column prop="schedule1" label="工作建议" align="center">
+                                        <el-table-column prop="workSug" label="工作建议" align="center">
                                             <template #default="{ row }">
                                                 <hc-body v-if="isDrawerType === 'edit'">
-                                                    <hc-table-input v-model="row.schedule1" type="textarea" resize="none" :disabled="currentYear < yearKey" />
+                                                    <hc-table-input v-model="row.workSug" type="textarea" resize="none" :disabled="currentYear < yearKey" />
                                                 </hc-body>
-                                                <span v-else>{{ row.schedule1 }}</span>
+                                                <span v-else>{{ row.workSug }}</span>
                                             </template>
                                         </el-table-column>
                                     </el-table>