|
|
|
@ -285,11 +285,15 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let str = this.currentRow.zczbhhzbapzbh;
|
|
|
|
|
if (this.$isNotBlank(str) && str.search(",") != -1) {
|
|
|
|
|
if (this.$isNotBlank(str) && str.search(";") != -1) {
|
|
|
|
|
this.currentCert = null;
|
|
|
|
|
this.certList = str.split(';,');
|
|
|
|
|
this.dialogFormVisible = true;
|
|
|
|
|
} else if (this.$isNotBlank(str) && str.search(",") != -1){
|
|
|
|
|
this.currentCert = null;
|
|
|
|
|
this.certList = str.split(',');
|
|
|
|
|
this.dialogFormVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
}else {
|
|
|
|
|
this.combine();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|