no message

This commit is contained in:
2025-09-08 12:52:42 +08:00
parent d3202d2a3b
commit e12623d607
4 changed files with 14 additions and 15 deletions
@@ -112,12 +112,11 @@ export default {
if (result && result.bizcode === 100) {
const data = result.data;
this.userInfo = result.data || {};
this.form = {
name:this.userInfo.name,
certNo:this.userInfo.certNo,
certType:this.userInfo.certType,
certName: this.userInfo.certType == 1?'居民身份证' : '护照',
certType:this.userInfo.certType != null ? this.userInfo.certType : 1,
certName: this.userInfo.certType == 2? '护照' :'居民身份证',
certFimg:this.userInfo.certFimg,
certBimg:this.userInfo.certBimg,
}