|
@@ -62,6 +62,9 @@
|
|
|
<el-option v-for="item in monthData" :key="item" :label="item" :value="item" />
|
|
|
</el-select>
|
|
|
</template>
|
|
|
+ <template #coverDate="{ row }">
|
|
|
+ <el-date-picker v-model="row.coverDate" class="block" format="YYYY-MM-DD" type="date" value-format="YYYY-MM-DD" :disabled="row.isLock === 1" />
|
|
|
+ </template>
|
|
|
<template #formPrintDate="{ row }">
|
|
|
<el-date-picker v-model="row.formPrintDate" class="block" format="YYYY-MM-DD" type="date" value-format="YYYY-MM-DD" :disabled="row.isLock === 1" />
|
|
|
</template>
|
|
@@ -118,6 +121,7 @@ const tableColumn = ref([
|
|
|
{ key: 'periodName', name: '期名称' },
|
|
|
{ key: 'periodYear', name: '年份' },
|
|
|
{ key: 'periodMonth', name: '月份' },
|
|
|
+ { key: 'coverDate', name: '封面日期' },
|
|
|
{ key: 'formPrintDate', name: '报表打印日期' },
|
|
|
{ key: 'action', name: '操作', width: 80 },
|
|
|
])
|
|
@@ -172,6 +176,7 @@ const tableEditColumn = [
|
|
|
{ key: 'periodName', name: '期名称' },
|
|
|
{ key: 'periodYear', name: '年份' },
|
|
|
{ key: 'periodMonth', name: '月份' },
|
|
|
+ { key: 'coverDate', name: '封面日期' },
|
|
|
{ key: 'formPrintDate', name: '报表打印日期' },
|
|
|
{ key: 'action', name: '操作', width: 80, align: 'center' },
|
|
|
]
|