|
|
|
@ -285,7 +285,11 @@ 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;
|
|
|
|
|