|
@@ -128,7 +128,7 @@ export default {
|
|
|
label: "到期时间",
|
|
|
prop: "dateSimulationLicense",
|
|
|
formatter:(data)=>{
|
|
|
- return data.dateSimulationLicense.slice(0,10)
|
|
|
+ return data.dateSimulationLicense?data.dateSimulationLicense.slice(0,10):''
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -139,7 +139,7 @@ export default {
|
|
|
label: "到期时间",
|
|
|
prop: "dateDynamicLicense",
|
|
|
formatter:(data)=>{
|
|
|
- return data.dateDynamicLicense.slice(0,10)
|
|
|
+ return data.dateDynamicLicense?data.dateDynamicLicense.slice(0,10):''
|
|
|
}
|
|
|
},
|
|
|
{
|