注册备案号选择优化

dev
薛宇 2 years ago
parent dd5ce87aee
commit cef3eccc5c

@ -285,11 +285,15 @@ export default {
return; return;
} }
let str = this.currentRow.zczbhhzbapzbh; 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.currentCert = null;
this.certList = str.split(','); this.certList = str.split(',');
this.dialogFormVisible = true; this.dialogFormVisible = true;
} else { }else {
this.combine(); this.combine();
} }
}, },

Loading…
Cancel
Save