845 lines
26 KiB
Vue
845 lines
26 KiB
Vue
|
|
<!--
|
|||
|
|
* @Date: 2024-10-08 14:29:36
|
|||
|
|
* @LastEditors: lip
|
|||
|
|
* @LastEditTime: 2025-05-06 16:55:10
|
|||
|
|
-->
|
|||
|
|
<template>
|
|||
|
|
|
|||
|
|
<view class="input-outer-part">
|
|||
|
|
<scroll-view scroll-y="true" :style="{height: edit?'calc(90vh - 150px)':'calc(100vh - 144px)'}">
|
|||
|
|
<view class="inner">
|
|||
|
|
<view class="part-title" style="display: flex;justify-content: space-between;">求职需求信息
|
|||
|
|
<view v-if="!edit&&formData.id&&formData.currentStatus!=3" class="btn"
|
|||
|
|
style="font-weight: normal;display: flex;" @click="edit=true">编辑<u-icon name="edit-pen"
|
|||
|
|
color="#A6A6A6"></u-icon></view>
|
|||
|
|
</view>
|
|||
|
|
<view class="inner-part">
|
|||
|
|
<u--form labelPosition="left" :model="formData" :rules="rules" ref="uForm" class="self-form" labelWidth="100">
|
|||
|
|
<u-form-item label="姓名" prop="personName" required
|
|||
|
|
>
|
|||
|
|
<view v-if="name" style="width: 100%;"
|
|||
|
|
class="disabledLine">
|
|||
|
|
{{ formData.personName || '请选择' }}
|
|||
|
|
</view>
|
|||
|
|
<view v-else style="width: 100%;" @click="openPersonChooser"
|
|||
|
|
:class="{disabledLine: !edit||!canChoosePerson, noValue: !formData.personName}">
|
|||
|
|
{{ formData.personName || '请选择' }}
|
|||
|
|
</view>
|
|||
|
|
<u-icon slot="right" name="edit-pen" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item>
|
|||
|
|
|
|||
|
|
<!-- <u-form-item label="求职工种" prop="jobWorkType" required>
|
|||
|
|
<view style="width: 100%;" @click="showPicker('jobWorkType')"
|
|||
|
|
:class="{disabledLine: !edit, noValue: !formData.jobWorkTypeName}">
|
|||
|
|
{{ formData.jobWorkTypeName ||'请选择' }}
|
|||
|
|
</view>
|
|||
|
|
<u-icon slot="right" name="arrow-down" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item> -->
|
|||
|
|
<!-- 新增工种选择 -->
|
|||
|
|
<u-form-item label="求职工种" prop="jobWorkType">
|
|||
|
|
<picker
|
|||
|
|
mode="multiSelector"
|
|||
|
|
:range="workTypeColumns"
|
|||
|
|
range-key="workTypeName"
|
|||
|
|
:value="workTypeIndexes"
|
|||
|
|
@change="onWorkTypePickerChange"
|
|||
|
|
@columnchange="onWorkTypeColumnChange"
|
|||
|
|
v-if="workTypeColumns[0] && workTypeColumns[0].length"
|
|||
|
|
>
|
|||
|
|
<view class="picker-view">
|
|||
|
|
<text>{{ formData.jobWorkTypeName || '请选择工种' }}</text>
|
|||
|
|
<u-icon name="arrow-down" color="#999999"></u-icon>
|
|||
|
|
</view>
|
|||
|
|
</picker>
|
|||
|
|
<view v-else class="picker-view">
|
|||
|
|
<text>工种数据加载中...</text>
|
|||
|
|
</view>
|
|||
|
|
</u-form-item>
|
|||
|
|
<!-- <u-form-item label="工种选择" prop="selectedWorkType">
|
|||
|
|
<uni-data-picker
|
|||
|
|
v-model="selectedWorkType"
|
|||
|
|
:localdata="workTypeTreeList"
|
|||
|
|
:popup-title="'请选择工种'"
|
|||
|
|
:clear-icon="false"
|
|||
|
|
:map="{text:'label', value:'id', children:'children'}"
|
|||
|
|
@change="onWorkTypeChange"
|
|||
|
|
:placeholder="'请选择工种'"
|
|||
|
|
:step-searh="false"
|
|||
|
|
:popup="true"
|
|||
|
|
:multiple="false"
|
|||
|
|
:self-field="false"
|
|||
|
|
/>
|
|||
|
|
</u-form-item> -->
|
|||
|
|
|
|||
|
|
<u-form-item label="最低薪酬" prop="minRecruitmentSalary" required>
|
|||
|
|
<u--input :disabled="!edit" v-model="formData.minRecruitmentSalary" border="none"
|
|||
|
|
placeholder="请输入"></u--input>
|
|||
|
|
<u-icon slot="right" name="edit-pen" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item>
|
|||
|
|
<u-form-item label="最高薪酬" prop="highRecruitmentSalary" required>
|
|||
|
|
<u--input :disabled="!edit" v-model="formData.highRecruitmentSalary" border="none"
|
|||
|
|
placeholder="请输入"></u--input>
|
|||
|
|
<u-icon slot="right" name="edit-pen" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item>
|
|||
|
|
<u-form-item label="单位性质" prop="unitNature" required>
|
|||
|
|
<view style="width: 100%;" @click="showPicker('unitNature')"
|
|||
|
|
:class="{disabledLine: !edit, noValue: getDictLabel(formData.unitNature, this.dictTypeMap.unitNature)=='请选择'}">
|
|||
|
|
{{ getDictLabel(formData.unitNature, this.dictTypeMap.unitNature) }}
|
|||
|
|
</view>
|
|||
|
|
<u-icon slot="right" name="arrow-down" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item>
|
|||
|
|
|
|||
|
|
<u-form-item label="希望工作地点" prop="addressDesc">
|
|||
|
|
<view class="df_flex df_flex_1">
|
|||
|
|
<u--input placeholder="请输入" border="none" v-model="formData.addressDesc"
|
|||
|
|
class="ellipsis_1" @focus="$refs.placePicker.openDialog()"></u--input>
|
|||
|
|
<!-- <u-icon name="edit-pen" color="#999" size="42rpx"></u-icon> -->
|
|||
|
|
</view>
|
|||
|
|
</u-form-item>
|
|||
|
|
<u--form labelPosition="left" class="self-form" labelWidth="110" >
|
|||
|
|
<u-form-item label="求职说明" prop="jobDescription" required >
|
|||
|
|
<u-textarea :disabled="!edit" v-model="formData.jobDescription"
|
|||
|
|
placeholder="请输入" ></u-textarea>
|
|||
|
|
</u-form-item>
|
|||
|
|
</u--form>
|
|||
|
|
<u-form-item label="就业意愿" prop="employmentWillingness">
|
|||
|
|
<view style="width: 100%;" @click="showPicker('employmentWillingness')"
|
|||
|
|
:class="{disabledLine: !edit, noValue: getDictLabel(formData.employmentWillingness, this.dictTypeMap.employmentWillingness)=='请选择'}">
|
|||
|
|
{{ getDictLabel(formData.employmentWillingness, this.dictTypeMap.employmentWillingness) }}
|
|||
|
|
</view>
|
|||
|
|
<u-icon slot="right" name="arrow-down" color="#A6A6A6"></u-icon>
|
|||
|
|
</u-form-item>
|
|||
|
|
</u--form>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<!-- 办理完成后 需求说明 -->
|
|||
|
|
<req-comp :form="{
|
|||
|
|
actualSolveDate: formData.actualSolveDate,
|
|||
|
|
actualSolvePeople: formData.actualSolvePeople,
|
|||
|
|
solveDesc: formData.solveDesc,
|
|||
|
|
fileUrl: formData.fileUrl
|
|||
|
|
}" />
|
|||
|
|
|
|||
|
|
<!-- <view class="inner">
|
|||
|
|
<view class="part-title" style="margin-top: 32rpx;">附件信息</view>
|
|||
|
|
<view class="inner-part">
|
|||
|
|
<u--form labelPosition="left" class="self-form" labelWidth="110">
|
|||
|
|
<u-form-item label="附件" prop="fileUrl">
|
|||
|
|
<ImageUpload :fileList="fileList" @update="changeFile" :maxCount="6" />
|
|||
|
|
</u-form-item>
|
|||
|
|
</u--form>
|
|||
|
|
</view>
|
|||
|
|
</view> -->
|
|||
|
|
|
|||
|
|
</scroll-view>
|
|||
|
|
<u-datetime-picker :show="show.hopeSolveDate" v-model="dates.hopeSolveDate" mode="date"
|
|||
|
|
@confirm="confirmDate('hopeSolveDate', $event)" @cancel="cancelPicker('hopeSolveDate')"></u-datetime-picker>
|
|||
|
|
<u-picker :show="show.jobWorkType" :columns="[jobTypeList]" keyName="workTypeName"
|
|||
|
|
@confirm="jobTypeConfirm('jobWorkType', $event)" @cancel="cancelPicker('jobWorkType')"></u-picker>
|
|||
|
|
<u-picker :show="show.emplymentYear" :columns="[dict.type[this.dictTypeMap.emplymentYear]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('emplymentYear', $event)" @cancel="cancelPicker('emplymentYear')"></u-picker>
|
|||
|
|
<u-picker :show="show.salaryType" :columns="[dict.type[this.dictTypeMap.salaryType]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('salaryType', $event)" @cancel="cancelPicker('salaryType')"></u-picker>
|
|||
|
|
<u-picker :show="show.highRecruitmentSalary" :columns="[dict.type[this.dictTypeMap.highRecruitmentSalary]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('highRecruitmentSalary', $event)"
|
|||
|
|
@cancel="cancelPicker('highRecruitmentSalary')"></u-picker>
|
|||
|
|
<u-picker :show="show.minRecruitmentSalary" :columns="[dict.type[this.dictTypeMap.minRecruitmentSalary]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('minRecruitmentSalary', $event)"
|
|||
|
|
@cancel="cancelPicker('minRecruitmentSalary')"></u-picker>
|
|||
|
|
<u-picker :show="show.unitNature" :columns="[dict.type[this.dictTypeMap.unitNature]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('unitNature', $event)" @cancel="cancelPicker('unitNature')"></u-picker>
|
|||
|
|
<u-picker :show="show.employmentType" :columns="[dict.type[this.dictTypeMap.employmentType || 'qcjy_ygxs']]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('employmentType', $event)" @cancel="cancelPicker('employmentType')"></u-picker>
|
|||
|
|
|
|||
|
|
<u-picker :show="show.employmentWillingness" :columns="[dict.type[this.dictTypeMap.employmentWillingness]]" keyName="label"
|
|||
|
|
@confirm="pickerConfirm('employmentWillingness', $event)"
|
|||
|
|
@cancel="cancelPicker('employmentWillingness')"></u-picker>
|
|||
|
|
|
|||
|
|
<!-- 帮扶方式字典示例 -->
|
|||
|
|
<view v-if="dict.type.qyjy_zdfwlx && dict.type.qyjy_zdfwlx.length" style="padding: 20rpx;">
|
|||
|
|
<text>帮扶方式字典数据示例:</text>
|
|||
|
|
<view v-for="item in dict.type.qyjy_zdfwlx" :key="item.value" style="padding: 10rpx 0;">
|
|||
|
|
{{ item.label }} ({{ item.value }})
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 工种选择器弹窗 -->
|
|||
|
|
<u-picker
|
|||
|
|
:show="show.workTypePicker"
|
|||
|
|
:columns="[workTypeList]"
|
|||
|
|
keyName="label"
|
|||
|
|
@confirm="onWorkTypePickerConfirm"
|
|||
|
|
@cancel="cancelWorkTypePicker"
|
|||
|
|
:loading="workTypeList.length === 0"
|
|||
|
|
:defaultIndex="[0]"
|
|||
|
|
:immediateChange="true"
|
|||
|
|
:closeOnClickOverlay="true"
|
|||
|
|
></u-picker>
|
|||
|
|
|
|||
|
|
<choose-person ref="personChooser" @confirm="personNameConfirm" />
|
|||
|
|
<view class="button-area" v-if="edit">
|
|||
|
|
<view class="btn" @click="cancelPage">取消</view>
|
|||
|
|
<view class="btn reset" @click="getDetail(formData.id)">重置</view>
|
|||
|
|
<view class="btn save" @click="saveInfo">保存</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<PlacePicker ref="placePicker" @selected="handleSelected" />
|
|||
|
|
</view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import { computed } from 'vue'
|
|||
|
|
import {
|
|||
|
|
getPersonBase
|
|||
|
|
} from "../../../api/needs/person";
|
|||
|
|
import {
|
|||
|
|
addPersonDemand,
|
|||
|
|
updatePersonDemand,
|
|||
|
|
getPersonDemand
|
|||
|
|
} from "../../../api/needs/personDemand";
|
|||
|
|
import {
|
|||
|
|
listJobType
|
|||
|
|
} from "../../../api/jobType/index";
|
|||
|
|
import ImageUpload from '@/components/ImageUpload'
|
|||
|
|
import ChoosePerson from './choosePerson';
|
|||
|
|
import PlacePicker from "@/components/placePicker";
|
|||
|
|
|
|||
|
|
//import uPopup from 'uview-ui/components/u-popup/u-popup.vue'
|
|||
|
|
export default {
|
|||
|
|
components: {
|
|||
|
|
ChoosePerson,
|
|||
|
|
ImageUpload,
|
|||
|
|
PlacePicker,
|
|||
|
|
// uPopup
|
|||
|
|
},
|
|||
|
|
props: {
|
|||
|
|
needId: {
|
|||
|
|
type: String,
|
|||
|
|
default: ''
|
|||
|
|
},
|
|||
|
|
name: {
|
|||
|
|
type: String,
|
|||
|
|
default: ''
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
setup() {
|
|||
|
|
// 导入字典store
|
|||
|
|
const useDictStore = require('@/stores/useDictStore').default
|
|||
|
|
const dictStore = useDictStore()
|
|||
|
|
|
|||
|
|
// 直接使用store中的dict对象,支持dict.type.xxx语法
|
|||
|
|
const dict = computed(() => dictStore.dict)
|
|||
|
|
|
|||
|
|
// 字典类型映射
|
|||
|
|
const dictTypeMap = {
|
|||
|
|
emplymentYear: 'qcjy_gznx',
|
|||
|
|
salaryType: 'qcjy_gzlx',
|
|||
|
|
highRecruitmentSalary: 'qcjy_zgzpgz',
|
|||
|
|
minRecruitmentSalary: 'qcjy_zgzpgz',
|
|||
|
|
unitNature: 'qcjy_dwxz',
|
|||
|
|
employmentWillingness: 'qcjt_jyyy',
|
|||
|
|
// 添加帮扶方式字典
|
|||
|
|
qyjy_zdfwlx: 'qyjy_zdfwlx'
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 预加载字典数据
|
|||
|
|
const loadDicts = async () => {
|
|||
|
|
const dictTypes = Object.values(dictTypeMap)
|
|||
|
|
const uniqueTypes = [...new Set(dictTypes)]
|
|||
|
|
await Promise.all(uniqueTypes.map(type => dictStore.loadDict(type)))
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return {
|
|||
|
|
dict,
|
|||
|
|
loadDicts,
|
|||
|
|
dictTypeMap
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
edit: true,
|
|||
|
|
personBase: {},
|
|||
|
|
dates: {},
|
|||
|
|
currentCommunityId: '',
|
|||
|
|
showPickerPicker: false,
|
|||
|
|
formData: {
|
|||
|
|
demandType:"1",
|
|||
|
|
personName: '',
|
|||
|
|
personId:"",
|
|||
|
|
userId:"",
|
|||
|
|
jobWorkType: '',
|
|||
|
|
jobWorkTypeName: '',
|
|||
|
|
selectedWorkType: '',
|
|||
|
|
selectedWorkTypeName: '',
|
|||
|
|
highRecruitmentSalary: '',
|
|||
|
|
minRecruitmentSalary: '',
|
|||
|
|
employmentType: '',
|
|||
|
|
currentCommunity: '',
|
|||
|
|
addressDesc: '',
|
|||
|
|
jobDescription: '',
|
|||
|
|
// fileUrl: []
|
|||
|
|
},
|
|||
|
|
rules: {
|
|||
|
|
personName: [{
|
|||
|
|
required: true,
|
|||
|
|
message: '请填写姓名',
|
|||
|
|
trigger: ['blur', 'change'],
|
|||
|
|
}],
|
|||
|
|
jobWorkType: [{
|
|||
|
|
required: true,
|
|||
|
|
message: '请选择求职工种',
|
|||
|
|
trigger: ['blur', 'change'],
|
|||
|
|
validator: (rule, value) => {
|
|||
|
|
return (Array.isArray(value) && value.length > 0) || (!!value);
|
|||
|
|
}
|
|||
|
|
}],
|
|||
|
|
highRecruitmentSalary: [{
|
|||
|
|
required: true,
|
|||
|
|
message: '请选择最高薪酬',
|
|||
|
|
trigger: ['blur', 'change'],
|
|||
|
|
}, ],
|
|||
|
|
minRecruitmentSalary: [{
|
|||
|
|
required: true,
|
|||
|
|
message: '请选择最低薪酬',
|
|||
|
|
trigger: ['blur', 'change'],
|
|||
|
|
}, ],
|
|||
|
|
jobDescription: [{
|
|||
|
|
required: true,
|
|||
|
|
message: '请填写求职说明',
|
|||
|
|
trigger: ['blur', 'change'],
|
|||
|
|
}, ]
|
|||
|
|
},
|
|||
|
|
show: {
|
|||
|
|
hopeSolveDate: false,
|
|||
|
|
jobWorkType: false,
|
|||
|
|
emplymentYear: false,
|
|||
|
|
salaryType: false,
|
|||
|
|
highRecruitmentSalary: false,
|
|||
|
|
minRecruitmentSalary: false,
|
|||
|
|
unitNature: false,
|
|||
|
|
employmentType: false,
|
|||
|
|
employmentWillingness: false
|
|||
|
|
},
|
|||
|
|
currentCity: '请选择',
|
|||
|
|
bysj: '',
|
|||
|
|
loading: false,
|
|||
|
|
jobTypeList: [],
|
|||
|
|
route: {},
|
|||
|
|
canChoosePerson: false,
|
|||
|
|
fileList: [],
|
|||
|
|
workTypeList: [],
|
|||
|
|
workTypeColumns: [[], [], []],
|
|||
|
|
workTypeIndexes: [0, 0, 0],
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
onReady() {
|
|||
|
|
this.$refs.uForm.setRules(this.rules)
|
|||
|
|
},
|
|||
|
|
created() {
|
|||
|
|
this.loading = true;
|
|||
|
|
// 使用新的字典加载方法
|
|||
|
|
this.loadDicts()
|
|||
|
|
.then(() => {
|
|||
|
|
console.log('字典数据加载完成:', this.dict);
|
|||
|
|
this.loading = false;
|
|||
|
|
})
|
|||
|
|
.catch(error => {
|
|||
|
|
console.error('加载字典数据失败:', error);
|
|||
|
|
this.loading = false;
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
this.workTypeRemoteMethod('');
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
// 不再需要这个方法,使用store中的loadDict方法
|
|||
|
|
|
|||
|
|
cancelPage() {
|
|||
|
|
if (this.formData.id) {
|
|||
|
|
this.edit = false;
|
|||
|
|
this.getDetail(this.formData.id)
|
|||
|
|
} else {
|
|||
|
|
uni.navigateBack()
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
openPersonChooser() {
|
|||
|
|
if (this.edit && this.canChoosePerson) {
|
|||
|
|
this.$refs.personChooser.open();
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
setName(){
|
|||
|
|
this.formData.personName = this.name
|
|||
|
|
this.formData.personId = this.needId
|
|||
|
|
this.formData.userId = this.needId
|
|||
|
|
},
|
|||
|
|
personNameConfirm(event) {
|
|||
|
|
this.formData.personName = event.name
|
|||
|
|
this.formData.personId = event.id
|
|||
|
|
this.formData.userId = event.userId
|
|||
|
|
|
|||
|
|
},
|
|||
|
|
changeFile(e) {
|
|||
|
|
// 清空当前的 fileUrl 数组
|
|||
|
|
this.formData.fileUrl = [];
|
|||
|
|
// 如果 e 有长度(即用户选择了文件)
|
|||
|
|
if (e.length) {
|
|||
|
|
// 遍历每个文件对象并获取其 url
|
|||
|
|
for (let data of e) {
|
|||
|
|
const url = data.data ? data.data.url : data.url;
|
|||
|
|
this.formData.fileUrl.push(url);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
this.formData.fileUrl = this.$arrayToString(this.formData.fileUrl)
|
|||
|
|
},
|
|||
|
|
addOne() {
|
|||
|
|
this.formData = {}
|
|||
|
|
this.getPersonInfo()
|
|||
|
|
if(this.name){
|
|||
|
|
this.formData.personName = this.name
|
|||
|
|
this.formData.userId = this.needId
|
|||
|
|
}
|
|||
|
|
this.edit = true
|
|||
|
|
},
|
|||
|
|
getDetail(id) {
|
|||
|
|
getPersonDemand(id).then(res => {
|
|||
|
|
this.formData = res.data;
|
|||
|
|
// 设置工种索引(需要等工种数据加载完成后)
|
|||
|
|
if (this.formData.jobWorkType && this.workTypeColumns[0].length) {
|
|||
|
|
this.setWorkTypeIndexes(this.formData.jobWorkType);
|
|||
|
|
}
|
|||
|
|
this.currentCommunityId = +res.data.currentCommunity
|
|||
|
|
this.formData.currentCommunity = res.data.currentCommunity
|
|||
|
|
this.edit = false;
|
|||
|
|
this.fileList = this.$processFileUrl(this.formData.fileUrl)
|
|||
|
|
}).catch(error => {
|
|||
|
|
console.error('Error fetching job detail:', error);
|
|||
|
|
});
|
|||
|
|
},
|
|||
|
|
confirmDate(type, e) {
|
|||
|
|
this.show[type] = false;
|
|||
|
|
let date = new Date(e.value)
|
|||
|
|
this.formData[type] =
|
|||
|
|
`${date.getFullYear()}-${(date.getMonth()+1)>9?(date.getMonth()+1):('0'+(date.getMonth()+1))}-${date.getDate()>9?date.getDate():('0'+date.getDate())}`
|
|||
|
|
},
|
|||
|
|
workTypeRemoteMethod(key) {
|
|||
|
|
listJobType({
|
|||
|
|
workTypeName: key,
|
|||
|
|
pageNum: 1,
|
|||
|
|
pageSize: 50
|
|||
|
|
}).then(
|
|||
|
|
(res) => {
|
|||
|
|
console.log('工种数据加载成功:', res.rows);
|
|||
|
|
this.jobTypeList = res.rows;
|
|||
|
|
// 处理树形数据为级联选择器格式
|
|||
|
|
this.processWorkTypeTree(res.rows);
|
|||
|
|
}
|
|||
|
|
).catch(error => {
|
|||
|
|
console.error('获取工种列表失败:', error);
|
|||
|
|
this.workTypeList = [];
|
|||
|
|
this.workTypeColumns = [[], [], []];
|
|||
|
|
});
|
|||
|
|
},
|
|||
|
|
goBack() {
|
|||
|
|
uni.navigateBack();
|
|||
|
|
},
|
|||
|
|
cancelPicker(type) {
|
|||
|
|
this.show[type] = false
|
|||
|
|
},
|
|||
|
|
getCityOptions(data) {
|
|||
|
|
if (data && data[0] && data[0].children) {
|
|||
|
|
return [data].concat(this.getCityOptions(data[0].children))
|
|||
|
|
} else {
|
|||
|
|
return [data]
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
// 新的getDictLabel方法,支持使用dict.type语法
|
|||
|
|
getDictLabel(value, dictType) {
|
|||
|
|
// 兼容旧的使用方式
|
|||
|
|
if (Array.isArray(dictType)) {
|
|||
|
|
let arr = dictType.filter(ele => ele.dictValue == value)
|
|||
|
|
if (arr.length) {
|
|||
|
|
return arr[0].dictLabel || '请选择'
|
|||
|
|
} else {
|
|||
|
|
return '请选择'
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 新的使用方式,通过dict.type和dict.label访问
|
|||
|
|
if (this.dict.label && this.dict.label[dictType]) {
|
|||
|
|
return this.dict.label[dictType][value] || '请选择'
|
|||
|
|
}
|
|||
|
|
return '请选择'
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
pickerConfirm(type, event) {
|
|||
|
|
this.show[type] = false
|
|||
|
|
// 使用新的字典格式
|
|||
|
|
this.formData[type] = event.value[0].value || event.value[0].dictValue
|
|||
|
|
},
|
|||
|
|
jobTypeConfirm(type, event) {
|
|||
|
|
this.show[type] = false
|
|||
|
|
this.formData[type] = event.value[0].id
|
|||
|
|
this.formData.jobWorkTypeName = event.value[0].workTypeName
|
|||
|
|
},
|
|||
|
|
showPicker(type) {
|
|||
|
|
if (this.edit) {
|
|||
|
|
if(type === 'workTypeTree') {
|
|||
|
|
if (!this.workTypeTreeColumns[0] || !this.workTypeTreeColumns[0].length) {
|
|||
|
|
this.$u.toast('工种数据未加载,请稍后重试');
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
// 弹窗打开时,初始化临时columns和index
|
|||
|
|
this.tempWorkTypeTreeColumns = JSON.parse(JSON.stringify(this.workTypeTreeColumns));
|
|||
|
|
this.tempWorkTypeTreeIndex = [...this.workTypeTreeIndex];
|
|||
|
|
}
|
|||
|
|
this.show[type] = true;
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
getPersonInfo() {
|
|||
|
|
this.loading = true;
|
|||
|
|
// 移除对未定义的$store的引用
|
|||
|
|
// 设置默认值,允许选择人员
|
|||
|
|
this.canChoosePerson = true;
|
|||
|
|
// 这里可以添加实际获取用户信息的逻辑
|
|||
|
|
// 例如从localStorage获取或调用其他API
|
|||
|
|
this.loading = false;
|
|||
|
|
},
|
|||
|
|
async saveInfo() {
|
|||
|
|
try {
|
|||
|
|
// 先检查求职说明是否为空,如果为空直接提示
|
|||
|
|
if (!this.formData.jobDescription || this.formData.jobDescription.trim() === '') {
|
|||
|
|
this.$u.toast('请填写求职说明!');
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 验证表单
|
|||
|
|
console.log(this.formData)
|
|||
|
|
const isValid = await this.$refs.uForm.validate();
|
|||
|
|
if (!isValid) {
|
|||
|
|
throw new Error('表单验证失败');
|
|||
|
|
}
|
|||
|
|
// 显示全局加载
|
|||
|
|
this.$showLoading();
|
|||
|
|
this.formData.demandType = 1;
|
|||
|
|
// this.formData.userId = this.formData.personId
|
|||
|
|
// 根据 formData 是否有 id 来决定是更新还是新增
|
|||
|
|
let response;
|
|||
|
|
let successMessage;
|
|||
|
|
if (this.formData.id) {
|
|||
|
|
response = await updatePersonDemand(this.formData);
|
|||
|
|
successMessage = '修改成功';
|
|||
|
|
} else {
|
|||
|
|
response = await addPersonDemand(this.formData);
|
|||
|
|
successMessage = '保存成功';
|
|||
|
|
}
|
|||
|
|
// 检查响应码是否为200
|
|||
|
|
if (response.code === 200) {
|
|||
|
|
this.$u.toast(successMessage);
|
|||
|
|
// 如果是编辑模式,关闭编辑状态;否则返回上一页
|
|||
|
|
if (this.formData.id) {
|
|||
|
|
this.edit = false;
|
|||
|
|
} else {
|
|||
|
|
await this.$delay(1000); // 延迟1秒后返回上一页
|
|||
|
|
uni.navigateBack();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
} catch (error) {
|
|||
|
|
if(error.length){
|
|||
|
|
this.$u.toast('请填写完整信息!');
|
|||
|
|
}else{
|
|||
|
|
this.$u.toast('系统错误,请联系管理员!');
|
|||
|
|
}
|
|||
|
|
// this.$u.toast('请检查必填项填写');
|
|||
|
|
|
|||
|
|
} finally {
|
|||
|
|
// 确保加载页总是会被隐藏
|
|||
|
|
this.$hideLoading();
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
popupclosed() {
|
|||
|
|
this.showPickerPicker = false
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
onChange(e) {
|
|||
|
|
const arr = e.detail.value
|
|||
|
|
this.formData.currentCity = arr[0].value || "";
|
|||
|
|
this.formData.currentArea = arr[1].value || "";
|
|||
|
|
this.formData.currentStreet = arr[2].value || "";
|
|||
|
|
this.formData.currentCommunity = arr[3].value + '' || "";
|
|||
|
|
this.$forceUpdate();
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
// 接收地图数据
|
|||
|
|
handleSelected(marker) {
|
|||
|
|
this.$set(this.formData, "addressDesc", marker.address);
|
|||
|
|
this.$set(this.formData, "latitude", marker.location.lat);
|
|||
|
|
this.$set(this.formData, "longitude", marker.location.lng);
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
// 处理树形数据为级联选择器格式
|
|||
|
|
processWorkTypeTree(treeData) {
|
|||
|
|
if (!treeData || !Array.isArray(treeData)) {
|
|||
|
|
this.workTypeColumns = [[], [], []];
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 第一级
|
|||
|
|
const level1 = treeData.filter(item => item.level === "1");
|
|||
|
|
// 第二级
|
|||
|
|
const level2 = treeData.filter(item => item.level === "2");
|
|||
|
|
// 第三级
|
|||
|
|
const level3 = treeData.filter(item => item.level === "3");
|
|||
|
|
|
|||
|
|
// 构建级联数据
|
|||
|
|
const columns = [];
|
|||
|
|
columns[0] = level1;
|
|||
|
|
|
|||
|
|
// 根据第一级选择,过滤第二级
|
|||
|
|
if (level1.length > 0) {
|
|||
|
|
const firstLevelId = level1[0].id;
|
|||
|
|
columns[1] = level2.filter(item => item.parentId === firstLevelId);
|
|||
|
|
} else {
|
|||
|
|
columns[1] = [];
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 根据第二级选择,过滤第三级
|
|||
|
|
if (columns[1].length > 0) {
|
|||
|
|
const secondLevelId = columns[1][0].id;
|
|||
|
|
columns[2] = level3.filter(item => item.parentId === secondLevelId);
|
|||
|
|
} else {
|
|||
|
|
columns[2] = [];
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
this.workTypeColumns = columns;
|
|||
|
|
console.log('级联数据构建完成:', this.workTypeColumns);
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
// 级联选择器列变化事件
|
|||
|
|
onWorkTypeColumnChange(e) {
|
|||
|
|
const { column, value } = e.detail;
|
|||
|
|
const newIndexes = [...this.workTypeIndexes];
|
|||
|
|
newIndexes[column] = value;
|
|||
|
|
|
|||
|
|
// 重置后续列的数据
|
|||
|
|
if (column === 0) {
|
|||
|
|
// 第一列变化,重置第二、三列
|
|||
|
|
const selectedLevel1 = this.workTypeColumns[0][value];
|
|||
|
|
if (selectedLevel1) {
|
|||
|
|
const level2 = this.jobTypeList.filter(item =>
|
|||
|
|
item.level === "2" && item.parentId === selectedLevel1.id
|
|||
|
|
);
|
|||
|
|
this.workTypeColumns[1] = level2;
|
|||
|
|
this.workTypeColumns[2] = [];
|
|||
|
|
newIndexes[1] = 0;
|
|||
|
|
newIndexes[2] = 0;
|
|||
|
|
}
|
|||
|
|
} else if (column === 1) {
|
|||
|
|
// 第二列变化,重置第三列
|
|||
|
|
const selectedLevel2 = this.workTypeColumns[1][value];
|
|||
|
|
if (selectedLevel2) {
|
|||
|
|
const level3 = this.jobTypeList.filter(item =>
|
|||
|
|
item.level === "3" && item.parentId === selectedLevel2.id
|
|||
|
|
);
|
|||
|
|
this.workTypeColumns[2] = level3;
|
|||
|
|
newIndexes[2] = 0;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
this.workTypeIndexes = newIndexes;
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
// 级联选择器确认事件
|
|||
|
|
onWorkTypePickerChange(e) {
|
|||
|
|
const indexes = e.detail.value;
|
|||
|
|
const selectedLevel1 = this.workTypeColumns[0][indexes[0]];
|
|||
|
|
const selectedLevel2 = this.workTypeColumns[1][indexes[1]];
|
|||
|
|
const selectedLevel3 = this.workTypeColumns[2][indexes[2]];
|
|||
|
|
|
|||
|
|
if (selectedLevel3) {
|
|||
|
|
// 选择第三级
|
|||
|
|
this.formData.jobWorkType = selectedLevel3.id;
|
|||
|
|
this.formData.jobWorkTypeName = `${selectedLevel1.workTypeName}/${selectedLevel2.workTypeName}/${selectedLevel3.workTypeName}`;
|
|||
|
|
} else if (selectedLevel2) {
|
|||
|
|
// 选择第二级
|
|||
|
|
this.formData.jobWorkType = selectedLevel2.id;
|
|||
|
|
this.formData.jobWorkTypeName = `${selectedLevel1.workTypeName}/${selectedLevel2.workTypeName}`;
|
|||
|
|
} else if (selectedLevel1) {
|
|||
|
|
// 选择第一级
|
|||
|
|
this.formData.jobWorkType = selectedLevel1.id;
|
|||
|
|
this.formData.jobWorkTypeName = selectedLevel1.workTypeName;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
this.workTypeIndexes = indexes;
|
|||
|
|
},
|
|||
|
|
|
|||
|
|
// 根据工种ID设置索引
|
|||
|
|
setWorkTypeIndexes(workTypeId) {
|
|||
|
|
// 在工种列表中查找对应的工种
|
|||
|
|
const targetWorkType = this.jobTypeList.find(item => item.id == workTypeId);
|
|||
|
|
if (!targetWorkType) return;
|
|||
|
|
|
|||
|
|
// 根据level确定是哪一级
|
|||
|
|
if (targetWorkType.level === "1") {
|
|||
|
|
const index = this.workTypeColumns[0].findIndex(item => item.id == workTypeId);
|
|||
|
|
if (index !== -1) {
|
|||
|
|
this.workTypeIndexes = [index, 0, 0];
|
|||
|
|
}
|
|||
|
|
} else if (targetWorkType.level === "2") {
|
|||
|
|
// 需要先找到父级
|
|||
|
|
const parent = this.jobTypeList.find(item => item.id == targetWorkType.parentId);
|
|||
|
|
if (parent) {
|
|||
|
|
const parentIndex = this.workTypeColumns[0].findIndex(item => item.id == parent.id);
|
|||
|
|
const childIndex = this.workTypeColumns[1].findIndex(item => item.id == workTypeId);
|
|||
|
|
if (parentIndex !== -1 && childIndex !== -1) {
|
|||
|
|
this.workTypeIndexes = [parentIndex, childIndex, 0];
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
} else if (targetWorkType.level === "3") {
|
|||
|
|
// 需要找到祖父级和父级
|
|||
|
|
const parent = this.jobTypeList.find(item => item.id == targetWorkType.parentId);
|
|||
|
|
const grandparent = this.jobTypeList.find(item => item.id == parent.parentId);
|
|||
|
|
if (parent && grandparent) {
|
|||
|
|
const grandparentIndex = this.workTypeColumns[0].findIndex(item => item.id == grandparent.id);
|
|||
|
|
const parentIndex = this.workTypeColumns[1].findIndex(item => item.id == parent.id);
|
|||
|
|
const childIndex = this.workTypeColumns[2].findIndex(item => item.id == workTypeId);
|
|||
|
|
if (grandparentIndex !== -1 && parentIndex !== -1 && childIndex !== -1) {
|
|||
|
|
this.workTypeIndexes = [grandparentIndex, parentIndex, childIndex];
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style lang="scss">
|
|||
|
|
.page {
|
|||
|
|
::v-deep .u-navbar__content {
|
|||
|
|
background-color: transparent !important;
|
|||
|
|
}
|
|||
|
|
background-color: #EEF1F5 !important;
|
|||
|
|
height: 100vh;
|
|||
|
|
background-image: url('https://rc.jinan.gov.cn/qcwjyH5/static/images/top.png');
|
|||
|
|
background-repeat: no-repeat;
|
|||
|
|
background-size: 100% auto;
|
|||
|
|
}
|
|||
|
|
.input-outer-part {
|
|||
|
|
padding: 0 32rpx;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.inner {
|
|||
|
|
background: #eef1f5;
|
|||
|
|
border-radius: 16rpx;
|
|||
|
|
|
|||
|
|
padding: 32rpx;
|
|||
|
|
margin-bottom: 24rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.inner-part {
|
|||
|
|
width: 100%;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 为表单元素添加一些间距 */
|
|||
|
|
.self-form {
|
|||
|
|
width: 100%;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 调整按钮区域样式 */
|
|||
|
|
.button-area {
|
|||
|
|
margin-top: 24rpx;
|
|||
|
|
}
|
|||
|
|
.button-area {
|
|||
|
|
padding: 24rpx 32rpx 68rpx;
|
|||
|
|
width: calc(100% + 64rpx);
|
|||
|
|
margin-left: -32rpx;
|
|||
|
|
background: #fff;
|
|||
|
|
display: flex;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
margin-top: 40rpx;
|
|||
|
|
border-radius: 16px 16px 0px 0px;
|
|||
|
|
|
|||
|
|
.btn {
|
|||
|
|
line-height: 72rpx;
|
|||
|
|
width: 176rpx;
|
|||
|
|
margin-right: 16rpx;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
border: 1px solid #B8C5D4;
|
|||
|
|
color: #282828;
|
|||
|
|
text-align: center;
|
|||
|
|
border-radius: 8rpx;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.reset {
|
|||
|
|
background: #DCE2E9;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.save {
|
|||
|
|
background: linear-gradient(103deg, #1D64CF 0%, #1590D4 99%);
|
|||
|
|
color: #fff;
|
|||
|
|
border: 0;
|
|||
|
|
flex-grow: 1;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.noValue {
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
color: #333;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.disabledLine {
|
|||
|
|
background: rgb(245, 247, 250);
|
|||
|
|
cursor: not-allowed;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
.picker-view {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
width: 100%;
|
|||
|
|
padding: 28rpx 36rpx;
|
|||
|
|
background: #ffffff;
|
|||
|
|
border: 2rpx solid #e5e5e5;
|
|||
|
|
border-radius: 12rpx;
|
|||
|
|
min-height: 88rpx;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.picker-view:active {
|
|||
|
|
background: #f8f9fa;
|
|||
|
|
border-color: #007aff;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.picker-view text {
|
|||
|
|
color: #333333;
|
|||
|
|
font-size: 28rpx;
|
|||
|
|
flex: 1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.picker-view .u-icon {
|
|||
|
|
margin-left: 16rpx;
|
|||
|
|
color: #999999;
|
|||
|
|
}
|
|||
|
|
::v-deep .u-textarea{
|
|||
|
|
background-color: red !important;
|
|||
|
|
border-radius: 12rpx;
|
|||
|
|
border: 2rpx solid red;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
</style>
|