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