fix
This commit is contained in:
@@ -253,18 +253,32 @@ export default defineComponent({
|
|||||||
{
|
{
|
||||||
title: "Valid Start Time",
|
title: "Valid Start Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validstartTime",
|
dataIndex: "validStartTime",
|
||||||
key: "validstartTime",
|
key: "validstartTime",
|
||||||
width:200,
|
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",
|
title: "Valid End Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validendTime",
|
dataIndex: "validEndTime",
|
||||||
key: "validendTime",
|
key: "validendTime",
|
||||||
width:200,
|
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",
|
title: "Country",
|
||||||
|
|||||||
@@ -122,18 +122,32 @@ export default defineComponent({
|
|||||||
{
|
{
|
||||||
title: "Valid Start Time",
|
title: "Valid Start Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validstartTime",
|
dataIndex: "validStartTime",
|
||||||
key: "validstartTime",
|
key: "validstartTime",
|
||||||
width:200,
|
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",
|
title: "Valid End Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validendTime",
|
dataIndex: "validEndTime",
|
||||||
key: "validendTime",
|
key: "validendTime",
|
||||||
width:200,
|
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",
|
title: "Country",
|
||||||
|
|||||||
@@ -149,18 +149,32 @@ export default defineComponent({
|
|||||||
{
|
{
|
||||||
title: "Valid Start Time",
|
title: "Valid Start Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validstartTime",
|
dataIndex: "validStartTime",
|
||||||
key: "validstartTime",
|
key: "validstartTime",
|
||||||
width:200,
|
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",
|
title: "Valid End Time",
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: "validendTime",
|
dataIndex: "validEndTime",
|
||||||
key: "validendTime",
|
key: "validendTime",
|
||||||
width:200,
|
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",
|
title: "Country",
|
||||||
|
|||||||
Reference in New Issue
Block a user