1
This commit is contained in:
@@ -1099,10 +1099,10 @@ const init = (id: string | null, typeParam: number, groupId?: string) => {
|
||||
areaHomeAreaList.value = []
|
||||
|
||||
// 批量获取数据字典(新增和编辑都需要) 文化程度 学费 代办费 户口性质 学校归属地
|
||||
getDictsByTypes(['id_type','finance_student_source', 'agency_fee', 'tuition_fee','house_hold_properties','recruit_school_form']).then((res: any) => {
|
||||
getDictsByTypes(['id_type','finance_student_source', 'recruit_agency_fee', 'tuition_fee','house_hold_properties','recruit_school_form']).then((res: any) => {
|
||||
idCardTypeList.value = res.data.id_type || []
|
||||
eduList.value = res.data.finance_student_source || []
|
||||
agencyFeeList.value = res.data.agency_fee || []
|
||||
agencyFeeList.value = res.data.recruit_agency_fee || []
|
||||
tuitionFeeList.value = res.data.tuition_fee || []
|
||||
residenceTypeList.value = res.data.house_hold_properties || []
|
||||
schoolFromList.value = res.data.recruit_school_form || []
|
||||
|
||||
@@ -103,7 +103,7 @@ const init = () => {
|
||||
canSubmit.value = true
|
||||
circleShow.value = true
|
||||
nextTick(() => {
|
||||
getDicts("dorm_jw").then((data: any) => {
|
||||
getDicts("recruit_dorm_jw").then((data: any) => {
|
||||
const arr = data.data
|
||||
arr.forEach((e: any) => {
|
||||
if (e.label == 'bj') {
|
||||
|
||||
@@ -311,7 +311,7 @@ const init = (id: string | null) => {
|
||||
dataFormRef.value?.resetFields()
|
||||
if (dataForm.id) {
|
||||
// 获取数据字典代办费
|
||||
getDicts('agency_fee').then((res: any) => {
|
||||
getDicts('recruit_agency_fee').then((res: any) => {
|
||||
agencyFeeList.value = res.data
|
||||
getObj(dataForm.id).then((response: any) => {
|
||||
Object.assign(dataForm, response.data)
|
||||
|
||||
@@ -56,7 +56,7 @@ const init = (row: any) => {
|
||||
form.homeLng = row.homeLng || row.homeLongitude || 0
|
||||
form.homeLat = row.homeLat || row.homeLatitude || 0
|
||||
nextTick(() => {
|
||||
getDicts("dorm_jw").then((data: any) => {
|
||||
getDicts("recruit_dorm_jw").then((data: any) => {
|
||||
const arr = data.data
|
||||
arr.forEach((e: any) => {
|
||||
if (e.label == 'bj') {
|
||||
|
||||
Reference in New Issue
Block a user