From e12623d607da6eebd0f5b93b600269c1871f9747 Mon Sep 17 00:00:00 2001 From: dongjian <315328220@qq.com> Date: Mon, 8 Sep 2025 12:52:42 +0800 Subject: [PATCH] no message --- .../mine_authentication/mine_authentication.vue | 5 ++--- .../rwa_withdrawal/rwa_withdrawal.vue | 16 ++++++++-------- .../rwa_withdrawal_log/rwa_withdrawal_log.vue | 6 +++--- utils/enumUtils.js | 2 +- 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/pages/mine_package/mine_authentication/mine_authentication.vue b/pages/mine_package/mine_authentication/mine_authentication.vue index f42db43..1f82f27 100644 --- a/pages/mine_package/mine_authentication/mine_authentication.vue +++ b/pages/mine_package/mine_authentication/mine_authentication.vue @@ -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, } diff --git a/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue b/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue index 0409733..7e6c868 100644 --- a/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue +++ b/pages/rwa_package/rwa_withdrawal/rwa_withdrawal.vue @@ -1,6 +1,6 @@