fix: CBC创建时间格式显示错误

This commit is contained in:
TsMask
2025-08-05 17:26:20 +08:00
parent 501fc4fd07
commit 6aeb645d88

View File

@@ -155,7 +155,7 @@ let tableColumns: ColumnsType = [
width: 200, width: 200,
customRender(opt) { customRender(opt) {
if (!opt.value) return ''; if (!opt.value) return '';
return parseDateToStr(opt.value / 1000); return parseDateToStr(opt.value);
}, },
}, },
{ {
@@ -885,7 +885,10 @@ onMounted(() => {
<a-col :lg="8" :md="12" :xs="24"> <a-col :lg="8" :md="12" :xs="24">
<a-form-item :label="t('views.cbc.cbe.eventName')" name="eventName"> <a-form-item :label="t('views.cbc.cbe.eventName')" name="eventName">
<a-input v-model:value="queryParams.eventName" /> <a-input
v-model:value="queryParams.eventName"
:placeholder="t('common.inputPlease')"
/>
</a-form-item> </a-form-item>
</a-col> </a-col>