|
|
|
@ -40,6 +40,15 @@ |
|
|
|
style="background: #eee;height: 80rpx;line-height: 80rpx;padding: 18rpx 20rpx;border-radius: 20rpx;"> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="box1"> |
|
|
|
<view class="reg-name"> |
|
|
|
* 手机号 |
|
|
|
</view> |
|
|
|
<view class="reg-value"> |
|
|
|
<input type="number" v-model="formData.mobile" placeholder="手机号" |
|
|
|
style="background: #eee;height: 80rpx;line-height: 80rpx;padding: 18rpx 20rpx;border-radius: 20rpx;"> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="box1"> |
|
|
|
<view class="reg-name"> |
|
|
|
* 兼职类型 |
|
|
|
@ -209,6 +218,7 @@ |
|
|
|
highFloorFee: 0, |
|
|
|
paotui: false, |
|
|
|
waima: false, |
|
|
|
mobile:'', |
|
|
|
studentCard: '', |
|
|
|
}, |
|
|
|
bigImg: '', |
|
|
|
@ -239,6 +249,7 @@ |
|
|
|
let data = res.result; |
|
|
|
if (data.workerName) that.formData.name = data.workerName; |
|
|
|
if (data.cardPicture) that.formData.studentCard = data.cardPicture; |
|
|
|
if (data.mobile) that.formData.mobile = data.mobile; |
|
|
|
if (data.highFloorFee !== undefined && data.highFloorFee !== null) that.formData.highFloorFee = data.highFloorFee; |
|
|
|
|
|
|
|
let list = data.workerRelaPriceList || []; |
|
|
|
@ -396,6 +407,7 @@ |
|
|
|
workerName: this.formData.name, |
|
|
|
cardPicture: this.formData.studentCard, |
|
|
|
highFloorFee: this.formData.highFloorFee, |
|
|
|
mobile: this.formData.mobile, |
|
|
|
workerRelaPriceList: workerRelaPriceList |
|
|
|
}; |
|
|
|
|
|
|
|
|