|
|
@@ -55,6 +55,7 @@
|
|
|
<el-select
|
|
|
v-model="form.occupation_op"
|
|
|
placeholder="请选择"
|
|
|
+ @change="change_occupation_op"
|
|
|
style="width: 340px"
|
|
|
>
|
|
|
<el-option
|
|
|
@@ -377,13 +378,6 @@ export default {
|
|
|
return condition;
|
|
|
},
|
|
|
},
|
|
|
- watch: {
|
|
|
- "form.occupation_op": function () {
|
|
|
- if (this.form.occupation_op !== this.userInfo.occupation_op) {
|
|
|
- this.form.direction_op = "";
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
async mounted() {
|
|
|
this.userInfo = await this.getUserInfo();
|
|
|
const user = this.userInfo;
|
|
|
@@ -434,6 +428,10 @@ export default {
|
|
|
this.cnzz("签约流程", "基本信息", "访问");
|
|
|
},
|
|
|
methods: {
|
|
|
+ async change_occupation_op()
|
|
|
+ {
|
|
|
+ this.form.direction_op = "";
|
|
|
+ },
|
|
|
async nextStep() {
|
|
|
if (!this.canNext) {
|
|
|
this.cnzz("签约流程", "基本信息(下一步)", "失败");
|