|
@@ -130,8 +130,9 @@
|
|
|
</view>
|
|
|
<view class="body-input u-flex-col u-row-center" @click="toworktion">
|
|
|
<text class="input-title">工作内容</text>
|
|
|
- <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写工作内容" border
|
|
|
- placeholderClass='input-style' v-model="job_experience.work_content"></u--input>
|
|
|
+ <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
|
|
|
+ placeholder="请填写工作内容" border placeholderClass='input-style'
|
|
|
+ v-model="job_experience.work_content"></u--input>
|
|
|
</view>
|
|
|
<view class="button" @click="next">
|
|
|
下一步
|
|
@@ -170,7 +171,9 @@
|
|
|
job_name: "",
|
|
|
level_reason: "", //离职原因
|
|
|
work_content: "", //工作内容
|
|
|
- }
|
|
|
+ },
|
|
|
+ time1: '',
|
|
|
+ time2: ''
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
@@ -194,8 +197,8 @@
|
|
|
if (this.radiovalue1 == 2) {
|
|
|
uni.navigateTo({
|
|
|
url: '../pagesA/worktion?concent=' + this.job_experience[index].work_content,
|
|
|
- events:{
|
|
|
- todcp:res=>{
|
|
|
+ events: {
|
|
|
+ todcp: res => {
|
|
|
this.job_experience[index].work_content = res
|
|
|
}
|
|
|
}
|
|
@@ -203,8 +206,8 @@
|
|
|
} else {
|
|
|
uni.navigateTo({
|
|
|
url: '../pagesA/worktion?concent=' + this.job_experience.work_content,
|
|
|
- events:{
|
|
|
- todcp:res=>{
|
|
|
+ events: {
|
|
|
+ todcp: res => {
|
|
|
this.job_experience.work_content = res
|
|
|
}
|
|
|
}
|
|
@@ -229,12 +232,14 @@
|
|
|
async entryConfirm(e) {
|
|
|
const timeFormat = uni.$u.timeFormat;
|
|
|
console.log(e.value);
|
|
|
+ this.time1 = e.value
|
|
|
let timeValue = await timeFormat(e.value, 'yyyy-mm');
|
|
|
this.job_experience.start_time = timeValue;
|
|
|
this.entryShow = false
|
|
|
},
|
|
|
async dimissionConfirm(e) {
|
|
|
const timeFormat = uni.$u.timeFormat;
|
|
|
+ this.time2 = e.value
|
|
|
let timeValue = await timeFormat(e.value, 'yyyy-mm');
|
|
|
this.job_experience.end_time = timeValue;
|
|
|
this.dimissionShow = false
|
|
@@ -298,7 +303,12 @@
|
|
|
})
|
|
|
}
|
|
|
} else {
|
|
|
-
|
|
|
+ if (this.time1 > this.time2) {
|
|
|
+ this.$u.toast("离职时间应大于入职时间")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ console.log('time1', this.time1);
|
|
|
+ console.log('time2', this.time2);
|
|
|
if (!this.job_experience.company_name) {
|
|
|
this.$u.toast("请填写公司名称")
|
|
|
return
|
|
@@ -349,9 +359,10 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
- ::v-deep .u-input--square{
|
|
|
+ ::v-deep .u-input--square {
|
|
|
background-color: #fff !important;
|
|
|
}
|
|
|
+
|
|
|
page {
|
|
|
background-color: #F3F3F3;
|
|
|
}
|