fix: CBC创建时间格式显示错误
This commit is contained in:
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user