|
@@ -5,7 +5,7 @@
|
|
|
</view>
|
|
|
<view class="form-label-switch">
|
|
|
<view class="phone-form-label"><text class="form-label-require"></text>身份证照片</view>
|
|
|
- <!-- <switch @change="switchSfzChange" color="#3fd2a1" style="transform:scale(0.7)" /> -->
|
|
|
+ <!-- <switch @change="switchSfzChange" color="#3fd2a1" style="transform:scale(0.7)" /> -->
|
|
|
</view>
|
|
|
<view class="ziliao-upload-box">
|
|
|
<view class="upload-item-box">
|
|
@@ -34,7 +34,7 @@
|
|
|
</view>
|
|
|
<view class="form-label-switch form-top-margin">
|
|
|
<view class="phone-form-label"><text class="form-label-require"></text>资格类照片</view>
|
|
|
- <!-- <switch @change="switchZgChange" color="#3fd2a1" style="transform:scale(0.7)" /> -->
|
|
|
+ <!-- <switch @change="switchZgChange" color="#3fd2a1" style="transform:scale(0.7)" /> -->
|
|
|
</view>
|
|
|
<view class="zhaopianZiliao-shenfenzhengImg">
|
|
|
<view class="ziliao-upload-box">
|
|
@@ -61,7 +61,7 @@
|
|
|
|
|
|
<view class="form-label-select">
|
|
|
<view class="phone-form-label"><text class="form-label-require"></text>健康证日期</view>
|
|
|
- <uni-datetime-picker class="form-radio-picker" type="date" @change="changeJiankang">
|
|
|
+ <uni-datetime-picker class="form-radio-picker" type="date" @change="changeJiankang">
|
|
|
<view class="form-radio-select">
|
|
|
<view>{{jiankangDate}}</view>
|
|
|
<icon></icon>
|
|
@@ -74,7 +74,8 @@
|
|
|
<view class="red-tip">(*如未经同意,体检报告均不展示在简历中;在系统中预约的体检,如有电子报告,会自动关联到简历中) </view>
|
|
|
<view>
|
|
|
<checkbox-group>
|
|
|
- <checkbox value="cb" checked="true" color="#3fd2a1" style="transform:scale(0.65)" />
|
|
|
+ <checkbox :checked="tijianbaogaoFlag" @click="changeTijianbaogao" color="#3fd2a1"
|
|
|
+ style="transform:scale(0.65)" />
|
|
|
已经同意,上传个人体检报告
|
|
|
</checkbox-group>
|
|
|
</view>
|
|
@@ -111,6 +112,7 @@
|
|
|
tijianDate: '',
|
|
|
tijianUrl: '',
|
|
|
jiankangDate: '',
|
|
|
+ tijianbaogaoFlag: false,
|
|
|
zhengshuUrls: '',
|
|
|
}
|
|
|
},
|
|
@@ -154,6 +156,9 @@
|
|
|
this.jiankangDate = data
|
|
|
|
|
|
},
|
|
|
+ changeTijianbaogao(data) {
|
|
|
+ this.tijianbaogaoFlag = !this.tijianbaogaoFlag
|
|
|
+ },
|
|
|
switchSfzChange(data) {
|
|
|
console.log('data', data);
|
|
|
},
|
|
@@ -163,29 +168,22 @@
|
|
|
switchZgChange(data) {
|
|
|
console.log('data', data);
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
goNext() {
|
|
|
this.formData = {
|
|
|
- icon:this.icon,
|
|
|
- idcardUrl1:this.idcardUrl1,
|
|
|
- idcardUrl2:this.idcardUrl2,
|
|
|
- shenghuoUrls:this.shenghuizhaoList.join(','),
|
|
|
- zhengshuUrls:this.zigezhaoList.join(','),
|
|
|
- tijianDate:this.tijianDate,
|
|
|
- jiankangDate:this.jiankangDate,
|
|
|
- tijianUrl:this.tijianUrl,
|
|
|
-
|
|
|
+ icon: this.icon,
|
|
|
+ idcardUrl1: this.idcardUrl1,
|
|
|
+ idcardUrl2: this.idcardUrl2,
|
|
|
+ tijianbaogaoFlag: this.tijianbaogaoFlag,
|
|
|
+ shenghuoUrls: this.shenghuizhaoList.join(','),
|
|
|
+ zhengshuUrls: this.zigezhaoList.join(','),
|
|
|
+ tijianDate: this.tijianDate,
|
|
|
+ jiankangDate: this.jiankangDate,
|
|
|
+ tijianUrl: this.tijianUrl,
|
|
|
+
|
|
|
}
|
|
|
- console.log('this.formData',this.formData);
|
|
|
- // if(!this.formData.agree){
|
|
|
- // uni.showToast({
|
|
|
- // title: "请勾选本人同意!",
|
|
|
- // icon: 'none',
|
|
|
- // duration: 2000
|
|
|
- // })
|
|
|
- // return false
|
|
|
- // }
|
|
|
- this.$emit('goNext',{},2);
|
|
|
+ console.log('this.formData', this.formData);
|
|
|
+ this.$emit('goNext', this.formData, 2);
|
|
|
},
|
|
|
goUp() {
|
|
|
// if(!this.formData.agree){
|
|
@@ -196,7 +194,7 @@
|
|
|
// })
|
|
|
// return false
|
|
|
// }
|
|
|
- this.$emit('goUp',{},2);
|
|
|
+ this.$emit('goUp', {}, 2);
|
|
|
},
|
|
|
|
|
|
},
|