|
|
@ -112,6 +112,15 @@ |
|
|
<option value="2">空乘</option> |
|
|
<option value="2">空乘</option> |
|
|
</select> |
|
|
</select> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
<view class="flex-box"> |
|
|
|
|
|
<picker mode="selector" :range="industryList" range-key="name" :value="idIndex" |
|
|
|
|
|
@change="onChangeIndustry"> |
|
|
|
|
|
<text v-if="idIndex > -1">{{ industryList[idIndex].name }}</text> |
|
|
|
|
|
<text v-else class="col-80">选择行业类别</text> |
|
|
|
|
|
</picker> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
@ -145,9 +154,20 @@ |
|
|
// 经办人身份证 |
|
|
// 经办人身份证 |
|
|
jfr_idafile:[], |
|
|
jfr_idafile:[], |
|
|
jfr_idbfile:[], |
|
|
jfr_idbfile:[], |
|
|
|
|
|
// 行业id |
|
|
|
|
|
industryType:0, |
|
|
|
|
|
// 行业列表 |
|
|
|
|
|
industryList: [], |
|
|
|
|
|
// 选择的物流公司索引 |
|
|
|
|
|
idIndex: -1, |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
mounted() { |
|
|
|
|
|
// 页面初始化 |
|
|
|
|
|
this.getIndustList() |
|
|
|
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
|
|
|
// 选择 |
|
|
// 选择 |
|
|
vfselitem(item){ |
|
|
vfselitem(item){ |
|
|
this.vfindex = item |
|
|
this.vfindex = item |
|
|
@ -206,6 +226,31 @@ |
|
|
selsf(val){ |
|
|
selsf(val){ |
|
|
this.sfval = val |
|
|
this.sfval = val |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 行业列表 |
|
|
|
|
|
getIndustList(){ |
|
|
|
|
|
const app = this |
|
|
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
|
|
VerifyApi.getIndustry() |
|
|
|
|
|
.then(result => { |
|
|
|
|
|
app.industryList = result.data |
|
|
|
|
|
//app.expressList = result.data.list |
|
|
|
|
|
resolve() |
|
|
|
|
|
}) |
|
|
|
|
|
.catch(reject) |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 选择物流公司 |
|
|
|
|
|
onChangeIndustry(e) { |
|
|
|
|
|
console.log("e",e) |
|
|
|
|
|
const curIndex = e.detail.value |
|
|
|
|
|
this.idIndex = curIndex |
|
|
|
|
|
// console.log("curIndustry",this.industryList[curIndex]) |
|
|
|
|
|
this.industryType = this.industryList[curIndex].industryId |
|
|
|
|
|
// console.log(this.industryType) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
// 选择图片 |
|
|
// 选择图片 |
|
|
chooseImage( item) { |
|
|
chooseImage( item) { |
|
|
const app = this |
|
|
const app = this |
|
|
|