|
|
@@ -11,7 +11,7 @@
|
|
|
>
|
|
|
{{ lang.Returnoldversion }}
|
|
|
</div>
|
|
|
- <div class="lp_r_box">
|
|
|
+ <div class="lp_r_box" v-loading="nextStepsLoading">
|
|
|
<div class="lp_r_b_logo">
|
|
|
<div>
|
|
|
<el-image
|
|
|
@@ -78,7 +78,7 @@
|
|
|
<span v-if="['bind'].includes(loginType)">
|
|
|
<!-- 绑定账户 -->
|
|
|
{{ lang.Bindaccount }}</span>
|
|
|
- <div class="lp_r_b_formArea">
|
|
|
+ <div class="lp_r_b_formArea" >
|
|
|
<!-- 微信绑定,账号登录,组织号登录 -->
|
|
|
<div
|
|
|
class="fa_input"
|
|
|
@@ -234,7 +234,6 @@
|
|
|
class="lp_r_b_btn"
|
|
|
v-if="['code'].includes(loginType)"
|
|
|
@click="nextSteps"
|
|
|
- v-loading="nextStepsLoading"
|
|
|
>
|
|
|
{{ lang.confirm }}
|
|
|
</div>
|
|
|
@@ -359,7 +358,7 @@
|
|
|
</template>
|
|
|
|
|
|
</template>
|
|
|
- <div class="stuPage" v-if="steps == 2" v-loading="nextStepsLoading">
|
|
|
+ <div class="stuPage" v-if="steps == 2">
|
|
|
<div>{{ lang.choosename }}</div>
|
|
|
<div style="max-height: 400px;display: flex;gap: 10px;">
|
|
|
<div class="nameList">
|
|
|
@@ -573,7 +572,9 @@ export default {
|
|
|
.catch(() => {});
|
|
|
},
|
|
|
// 随机码获取组织后缀
|
|
|
- async getrandomcodeSuffix() {
|
|
|
+ // async getrandomcodeSuffix() {
|
|
|
+ getrandomcodeSuffix: _.debounce(async function() {
|
|
|
+
|
|
|
let params = [
|
|
|
{
|
|
|
functionName: API_CONFIG.ajax_getliyuanCode.functionName,
|
|
|
@@ -591,7 +592,8 @@ export default {
|
|
|
this.orginfo = [];
|
|
|
this.org = "";
|
|
|
}
|
|
|
- },
|
|
|
+ }, 300),
|
|
|
+
|
|
|
// 获取组织后缀
|
|
|
// async getSuffix() {
|
|
|
getSuffix: _.debounce(async function() {
|
|
|
@@ -1258,7 +1260,6 @@ export default {
|
|
|
} else {
|
|
|
this.$message.error(this.lang.codenotexist);
|
|
|
}
|
|
|
- this.nextStepsLoading = false
|
|
|
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -1304,10 +1305,13 @@ export default {
|
|
|
|
|
|
this.classJuri = this.groupByName(res.data[0])
|
|
|
// console.log('this.classJuri',this.classJuri);
|
|
|
+ this.nextStepsLoading = false
|
|
|
|
|
|
this.steps = 2;
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
+ this.nextStepsLoading = false
|
|
|
+
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|