|
@@ -32,9 +32,9 @@
|
|
<view class="u-flex ">
|
|
<view class="u-flex ">
|
|
<text class="title">求职状态</text>
|
|
<text class="title">求职状态</text>
|
|
</view>
|
|
</view>
|
|
- <view class="u-flex u-row-between" style="margin-top: 20rpx;">
|
|
|
|
- <input type="text" placeholder="请选择你的求职状态" v-model="from.job_status_name">
|
|
|
|
- <u-icon name="arrow-right" @click="show =true" size="12" class="address"></u-icon>
|
|
|
|
|
|
+ <view class="u-flex u-row-between" style="margin-top: 20rpx;" @click="show =true">
|
|
|
|
+ <input :disabled="true" type="text" placeholder="请选择你的求职状态" v-model="from.job_status_name">
|
|
|
|
+ <u-icon name="arrow-right" size="12" class="address"></u-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
|
|
<view class="" style="border-top:2rpx solid #F0F0F0;margin-top: 32rpx;">
|
|
@@ -182,7 +182,7 @@ color: #333333;">
|
|
<view class="left" @click="jianlishow = true">
|
|
<view class="left" @click="jianlishow = true">
|
|
简历导入
|
|
简历导入
|
|
</view>
|
|
</view>
|
|
- <view class="right" @click="preview1">
|
|
|
|
|
|
+ <view class="right" @click="preview">
|
|
<text style="opacity: 1;color: #0C66C2;">预览</text>
|
|
<text style="opacity: 1;color: #0C66C2;">预览</text>
|
|
</view>
|
|
</view>
|
|
<view class="safe-area-inset-bottom"></view>
|
|
<view class="safe-area-inset-bottom"></view>
|
|
@@ -379,6 +379,7 @@ color: #333333;">
|
|
console.log('打开文档成功');
|
|
console.log('打开文档成功');
|
|
},
|
|
},
|
|
fail: () => {
|
|
fail: () => {
|
|
|
|
+ console.log(this.path1);
|
|
console.log('文件打开失败');
|
|
console.log('文件打开失败');
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -508,6 +509,13 @@ color: #333333;">
|
|
this.from.job_status_name = e.value[0].name
|
|
this.from.job_status_name = e.value[0].name
|
|
this.from.job_status_id = e.value[0].id
|
|
this.from.job_status_id = e.value[0].id
|
|
this.show = false
|
|
this.show = false
|
|
|
|
+ update({
|
|
|
|
+ job_status_id: this.from.job_status_id,
|
|
|
|
+ source_type: "resume",
|
|
|
|
+ source_id: this.jlid
|
|
|
|
+ }).then(res => {
|
|
|
|
+ this.resumeDetail()
|
|
|
|
+ })
|
|
},
|
|
},
|
|
get_job_status() {
|
|
get_job_status() {
|
|
get_job_status().then(res => {
|
|
get_job_status().then(res => {
|