|
|
@@ -14,7 +14,7 @@
|
|
|
|
|
|
<div class="form-label">1.您期望雇佣开发者的技术栈</div>
|
|
|
<el-form-item label-width="0" prop="match_directions">
|
|
|
- <el-cascader :options="directionData" clearable @change="directionChange"></el-cascader>
|
|
|
+ <el-cascader :options="directionData" v-model="check_directionData" clearable @change="directionChange"></el-cascader>
|
|
|
</el-form-item>
|
|
|
|
|
|
<div class="form-label">2.开发者需要具备哪些核心技能标签? (1-5个)</div>
|
|
|
@@ -201,6 +201,7 @@ export default {
|
|
|
ys_money_type: "",
|
|
|
|
|
|
},
|
|
|
+ check_directionData:[],
|
|
|
pro_appoint_uid:0,
|
|
|
rules: {
|
|
|
description: [{
|
|
|
@@ -274,12 +275,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {},
|
|
|
- mounted() {
|
|
|
+ async mounted() {
|
|
|
this.pro_appoint_uid=this.$route.query.user_id ? this.$route.query.user_id : 0;
|
|
|
- this.get_appoint_user_info();
|
|
|
this.$emit("formChange", 2, "process");
|
|
|
- this.fetchDirectionData()
|
|
|
- this.fetchCityData()
|
|
|
+ await this.fetchDirectionData();
|
|
|
+ await this.fetchCityData();
|
|
|
+ await this.get_appoint_user_info();
|
|
|
},
|
|
|
mixins: [uploadFile],
|
|
|
methods: {
|
|
|
@@ -295,6 +296,7 @@ export default {
|
|
|
this.yy_obj.nickname=res.data.nickname;
|
|
|
this.yy_obj.icon=res.data.icon;
|
|
|
this.yy_obj.uid=res.data.uid;
|
|
|
+ this.check_directionData=[res.data.occupation_op+"",res.data.direction_op+""];
|
|
|
})
|
|
|
},
|
|
|
submitForm() {
|