This commit is contained in:
X1627315083
2024-08-06 11:41:57 +08:00
parent ffa1da742f
commit edab4fce9d
3 changed files with 54 additions and 12 deletions

View File

@@ -253,18 +253,32 @@ export default defineComponent({
{
title: "Valid Start Time",
align: "center",
dataIndex: "validstartTime",
dataIndex: "validStartTime",
key: "validstartTime",
width:200,
ellipsis:true
ellipsis:true,
customRender: (record: any) => {
let time = ''
if(record.text){
time = formatTime(record.text / 1000, 'YYYY-MM-DD hh:mm:ss')
}
return time
},
},
{
title: "Valid End Time",
align: "center",
dataIndex: "validendTime",
dataIndex: "validEndTime",
key: "validendTime",
width:200,
ellipsis:true
ellipsis:true,
customRender: (record: any) => {
let time = ''
if(record.text){
time = formatTime(record.text / 1000, 'YYYY-MM-DD hh:mm:ss')
}
return time
},
},
{
title: "Country",