|
@@ -483,7 +483,7 @@
|
|
|
v-model="form.phone"
|
|
|
placeholder="请输入联系电话"
|
|
|
style="width: 45%"
|
|
|
- maxlength="20"
|
|
|
+ maxlength="11"
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -501,7 +501,7 @@
|
|
|
v-model="form.number"
|
|
|
placeholder="请输入联系电话"
|
|
|
style="width: 45%"
|
|
|
- maxlength="20"
|
|
|
+ maxlength="11"
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -1126,7 +1126,7 @@ export default {
|
|
|
this.$set(this.form, "handler", response.data.user.nickName);
|
|
|
}
|
|
|
if (response.data.list.scyStatus == "03") {
|
|
|
- this.active = 1;
|
|
|
+ this.active = 1;
|
|
|
} else if (response.data.list.scyStatus == "05") {
|
|
|
this.$set(
|
|
|
this.form,
|
|
@@ -1157,6 +1157,10 @@ export default {
|
|
|
response.data.userCompany[0].sucrCard
|
|
|
);
|
|
|
this.active = 3;
|
|
|
+ } else if (response.data.list.scyStatus == "00") {
|
|
|
+ this.$store.dispatch("LogOut").then(() => {
|
|
|
+ location.href = "/login";
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
})
|