From c69ff22bf0f30cf0421e1a38c8619c520861564c Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Tue, 16 Sep 2025 17:29:03 +0800
Subject: [PATCH] 1
---
src/page/authentication/index.vue | 36 +++++++++++++++++++++---------------
1 files changed, 21 insertions(+), 15 deletions(-)
diff --git a/src/page/authentication/index.vue b/src/page/authentication/index.vue
index 3b768aa..4679065 100644
--- a/src/page/authentication/index.vue
+++ b/src/page/authentication/index.vue
@@ -6,6 +6,10 @@
<div style="width: 100%; height: .25em; background-color: #777"></div>
+ <div class="shjj" v-if="$store.state.userInfo.isActive == 3">
+ {{ $t('shjj') }}: {{ $store.state.userInfo.authMsg }}
+ </div>
+
<div class="form-group" :class="{ 'disabled': isSubmitting || isActive }">
<label class="required-label">{{ $t('hj195') }}</label>
<input type="text" v-model="form.name" class="form-input" :disabled="isActive" />
@@ -14,9 +18,7 @@
<div class="form-group" :class="{ 'disabled': isSubmitting || isActive }">
<label class="required-label">{{ $t('it1') }}</label>
<van-radio-group v-model="auRadio" direction="horizontal" disabled style="font-size: 3.5vw;margin-top: 1em;">
- <van-radio name="1">{{ $t('dl1') }}</van-radio>
- <van-radio name="2">{{ $t('pa1') }}</van-radio>
- <van-radio name="3">{{ $t('ot1') }}</van-radio>
+ <van-radio name="1">{{ $t('hj196') }}</van-radio>
</van-radio-group>
</div>
@@ -57,7 +59,9 @@
<div style="width: 100%; height: .25em; background-color: #777"></div>
<div class="submit-button" :class="{ 'disabled': isSubmitting || isActive }" @click="toSure">
- <span>{{ $t("uv1") }}</span>
+ <span>
+ {{ isSubmitting || isActive ? $store.state.userInfo.isActive == 2 ? $t('sptg') : $t("uv1") : $t('hj161') }}
+ </span>
</div>
</div>
</template>
@@ -148,17 +152,13 @@
this.$store.commit("dialogVisible", false);
this.$store.state.userInfo = data.data;
this.userInfo = data.data;
- if (
- this.$store.state.userInfo.isActive === 1 ||
- this.$store.state.userInfo.isActive === 2
- ) {
- this.form.idCard = this.$store.state.userInfo.idCard;
- this.form.vaildNumber = this.$store.state.userInfo.vaildNumber;
- this.form.name = this.$store.state.userInfo.realName;
- this.form.img1key = this.$store.state.userInfo.img1Key;
- this.form.img2key = this.$store.state.userInfo.img2Key;
- this.showBtn = false;
- }
+ // 回填数据
+ this.form.idCard = this.$store.state.userInfo.idCard;
+ this.form.vaildNumber = this.$store.state.userInfo.vaildNumber;
+ this.form.name = this.$store.state.userInfo.realName;
+ this.form.img1key = this.$store.state.userInfo.img1Key;
+ this.form.img2key = this.$store.state.userInfo.img2Key;
+ this.showBtn = false;
} else {
//this.$store.commit('dialogVisible',true);
//跳转到login
@@ -221,6 +221,12 @@
display: none;
}
+.shjj {
+ font-size: .4rem;
+ color: red;
+ padding: .2rem;
+}
+
.authentication-container {
/* padding: 20px; */
// background-color: #ffffff;
--
Gitblit v1.9.3