|
|
@@ -64,7 +64,7 @@
|
|
|
<input type="text" placeholder="请填写电子邮件" value="" class="list-input" v-model="email" />
|
|
|
</view>
|
|
|
<view class="box-1">
|
|
|
- <view class="box-left">联系地址(选填)</view>
|
|
|
+ <view class="box-left">联系地址<text class="imp">*</text></view>
|
|
|
<input type="text" value="" placeholder="请填写联系地址" class="list-input" v-model="address" />
|
|
|
</view>
|
|
|
<view class="box-1">
|
|
|
@@ -77,7 +77,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="box-1">
|
|
|
- <view class="box-left">教育程度(选填)</view>
|
|
|
+ <view class="box-left">教育程度<text class="imp">*</text></view>
|
|
|
<picker @change="bindPickerEdu" :value="index" :range="chooseEdu">
|
|
|
<view class="box-right">{{ education }}</view>
|
|
|
</picker>
|
|
|
@@ -103,7 +103,6 @@
|
|
|
<view class="box-left">
|
|
|
有无服务经验
|
|
|
<text class="imp">*</text>
|
|
|
-
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="uni-list">
|
|
|
@@ -228,7 +227,7 @@ export default {
|
|
|
otherspe: '',
|
|
|
loding: false, //是否提交中
|
|
|
array: ['男', '女'],
|
|
|
- chooseEdu: ['小学以下', '小学', '初中', '高中/中专', '大专/本科', '硕士','博士','博士后'],
|
|
|
+ chooseEdu: ['小学以下', '小学', '初中', '高中/中专', '大专/高职','本科','研究生', '硕士', '博士', '博士后'],
|
|
|
chooseVol: ['有', '无'],
|
|
|
is_experience: [
|
|
|
{
|
|
|
@@ -532,7 +531,7 @@ export default {
|
|
|
specialty: obj.specialty, //职业/职务/专业
|
|
|
education: obj.educationid, //教育程度
|
|
|
is_vol: obj.checked,//是否受过志愿者服务
|
|
|
- is_experience: obj.checked1,//有无工作经验
|
|
|
+ is_experience: obj.checked1 == 1 ? 0: 1,//有无工作经验
|
|
|
start_hour: obj.start_hour,
|
|
|
end_hour: obj.end_hour,
|
|
|
work_week: obj.dates,//星期几
|