|
@@ -62,6 +62,12 @@
|
|
|
<u-picker :default-time="birthDateText" v-model="showDatePicker" mode="time" :params="dateParams"
|
|
<u-picker :default-time="birthDateText" v-model="showDatePicker" mode="time" :params="dateParams"
|
|
|
@confirm="onDateConfirm"></u-picker>
|
|
@confirm="onDateConfirm"></u-picker>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="form-item">
|
|
|
|
|
+ <view class="form-label">邮箱</view>
|
|
|
|
|
+ <input class="form-input" type="text" placeholder="请输入邮箱号码,方便接收offer" v-model="email" />
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
|
|
|
<!-- 求职状态 -->
|
|
<!-- 求职状态 -->
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
@@ -125,6 +131,7 @@
|
|
|
return {
|
|
return {
|
|
|
BarHeight: '',
|
|
BarHeight: '',
|
|
|
weChatNum: '',
|
|
weChatNum: '',
|
|
|
|
|
+ email:'',
|
|
|
sex: '',
|
|
sex: '',
|
|
|
age: '',
|
|
age: '',
|
|
|
phone: '',
|
|
phone: '',
|
|
@@ -177,6 +184,8 @@
|
|
|
this.ifExp = options.ifExp
|
|
this.ifExp = options.ifExp
|
|
|
if (options && options.resumesPhone)
|
|
if (options && options.resumesPhone)
|
|
|
this.phone = options.resumesPhone
|
|
this.phone = options.resumesPhone
|
|
|
|
|
+ if (options && options.resumesEmail)
|
|
|
|
|
+ this.email = options.resumesEmail
|
|
|
this.getUserInfo()
|
|
this.getUserInfo()
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
@@ -272,6 +281,8 @@
|
|
|
title: "生日不能为空",
|
|
title: "生日不能为空",
|
|
|
icon: "none"
|
|
icon: "none"
|
|
|
})
|
|
})
|
|
|
|
|
+ }else if(!this.email){
|
|
|
|
|
+ this.$queue.showToast('邮箱不能为空')
|
|
|
} else {
|
|
} else {
|
|
|
this.age = this.$queue.calculateAgeFromBirthday(this.birthDateText) || 0
|
|
this.age = this.$queue.calculateAgeFromBirthday(this.birthDateText) || 0
|
|
|
let that = this
|
|
let that = this
|
|
@@ -310,6 +321,7 @@
|
|
|
resumesStatus: this.selectedJobStatus,
|
|
resumesStatus: this.selectedJobStatus,
|
|
|
resumesPhone: this.phone,
|
|
resumesPhone: this.phone,
|
|
|
birthday: this.birthDateText,
|
|
birthday: this.birthDateText,
|
|
|
|
|
+ resumesEmail:this.email,
|
|
|
ifExp: this.ifExp
|
|
ifExp: this.ifExp
|
|
|
}
|
|
}
|
|
|
this.$Request.postJson("/app/userFirst/regist", data).then((res) => {
|
|
this.$Request.postJson("/app/userFirst/regist", data).then((res) => {
|