feat: 更新业务需求
This commit is contained in:
@@ -125,7 +125,11 @@ function handleMultiDelete() {
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
function formatDate(dateString: string) {
|
||||
if (!dateString) return '';
|
||||
const date = new Date(dateString);
|
||||
return date.toISOString().split('T')[0];
|
||||
}
|
||||
function handleDownloadExcel() {
|
||||
commonDownloadExcel(houseChargeExport, '房屋收费数据', tableApi.formApi.form.values, {
|
||||
fieldMappingTime: formOptions.fieldMappingTime,
|
||||
@@ -161,6 +165,14 @@ function handleDownloadExcel() {
|
||||
</a-button>
|
||||
</Space>
|
||||
</template>
|
||||
<template #startTime="{row}">
|
||||
{{ formatDate(row.startTime) }}
|
||||
|
||||
</template>
|
||||
<template #endTime="{row}">
|
||||
{{ formatDate(row.endTime) }}
|
||||
|
||||
</template>
|
||||
<template #action="{ row }">
|
||||
<Space>
|
||||
<ghost-button
|
||||
|
Reference in New Issue
Block a user