lion 3 years ago
parent 38844f41df
commit f4b78d5b41

@ -204,7 +204,12 @@
prop: 'idcard',
align: 'center',
formatter: (cell, data, value) => {
return this.getName(value)
if(value){
return this.getName(value)
}else{
return ''
}
}
},
// {
@ -249,7 +254,12 @@
prop: 'address',
align: 'left',
formatter: (cell, data, value) => {
return value.indexOf('江苏省常州市金坛区') > -1 ? value.replace('江苏省常州市金坛区', '') : value
if(value){
return value.indexOf('江苏省常州市金坛区') > -1 ? value.replace('江苏省常州市金坛区', '') : value
}else {
return ''
}
}
},
// {

Loading…
Cancel
Save