|
@@ -254,7 +254,7 @@ const _sfc_main = {
|
|
},
|
|
},
|
|
showEthnicField() {
|
|
showEthnicField() {
|
|
var _a;
|
|
var _a;
|
|
- return Object.keys(this.safeProfileFieldsConfig).length === 0 || ((_a = this.safeProfileFieldsConfig.ethnic) == null ? void 0 : _a.visible) !== false;
|
|
|
|
|
|
+ return Object.keys(this.safeProfileFieldsConfig).length === 0 || ((_a = this.safeProfileFieldsConfig.ethnicity) == null ? void 0 : _a.visible) !== false;
|
|
},
|
|
},
|
|
showHeightField() {
|
|
showHeightField() {
|
|
var _a;
|
|
var _a;
|
|
@@ -287,8 +287,8 @@ const _sfc_main = {
|
|
},
|
|
},
|
|
// 教育经历字段显示控制
|
|
// 教育经历字段显示控制
|
|
showEducationTimeField() {
|
|
showEducationTimeField() {
|
|
- var _a;
|
|
|
|
- return Object.keys(this.safeEducationFieldsConfig).length === 0 || ((_a = this.safeEducationFieldsConfig.start_time) == null ? void 0 : _a.visible) !== false;
|
|
|
|
|
|
+ var _a, _b;
|
|
|
|
+ return Object.keys(this.safeEducationFieldsConfig).length === 0 || ((_a = this.safeEducationFieldsConfig.start_date) == null ? void 0 : _a.visible) !== false && ((_b = this.safeEducationFieldsConfig.end_date) == null ? void 0 : _b.visible) !== false;
|
|
},
|
|
},
|
|
showEducationSchoolField() {
|
|
showEducationSchoolField() {
|
|
var _a;
|
|
var _a;
|
|
@@ -304,8 +304,8 @@ const _sfc_main = {
|
|
},
|
|
},
|
|
// 工作经历字段显示控制
|
|
// 工作经历字段显示控制
|
|
showWorkTimeField() {
|
|
showWorkTimeField() {
|
|
- var _a;
|
|
|
|
- return Object.keys(this.safeWorkFieldsConfig).length === 0 || ((_a = this.safeWorkFieldsConfig.start_time) == null ? void 0 : _a.visible) !== false;
|
|
|
|
|
|
+ var _a, _b;
|
|
|
|
+ return Object.keys(this.safeWorkFieldsConfig).length === 0 || ((_a = this.safeWorkFieldsConfig.start_date) == null ? void 0 : _a.visible) !== false && ((_b = this.safeWorkFieldsConfig.end_date) == null ? void 0 : _b.visible) !== false;
|
|
},
|
|
},
|
|
showWorkCompanyField() {
|
|
showWorkCompanyField() {
|
|
var _a;
|
|
var _a;
|
|
@@ -335,9 +335,44 @@ const _sfc_main = {
|
|
},
|
|
},
|
|
shouldShowSkillsStep() {
|
|
shouldShowSkillsStep() {
|
|
return this.showRequireTrainingInfoField || this.showRequireProfessionalSkillsField;
|
|
return this.showRequireTrainingInfoField || this.showRequireProfessionalSkillsField;
|
|
|
|
+ },
|
|
|
|
+ // 判断是否显示教育经历步骤
|
|
|
|
+ shouldShowEducationStep() {
|
|
|
|
+ if (Object.keys(this.safeEducationFieldsConfig).length === 0) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ const fields = ["start_date", "end_date", "school_name", "major", "degree"];
|
|
|
|
+ return fields.some((field) => {
|
|
|
|
+ var _a;
|
|
|
|
+ return ((_a = this.safeEducationFieldsConfig[field]) == null ? void 0 : _a.visible) !== false;
|
|
|
|
+ });
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ // 输入时限制小数位数
|
|
|
|
+ handleInput(event, field, maxDecimals) {
|
|
|
|
+ let value = event.detail.value;
|
|
|
|
+ value = value.replace(/[^\d.-]/g, "").replace(/(\..*)\./g, "$1").replace(/(-\d*)-/g, "$1").replace(new RegExp(`^(-?\\d*\\.\\d{${maxDecimals}}).*$`), "$1");
|
|
|
|
+ if (value.startsWith(".")) {
|
|
|
|
+ value = "0" + value;
|
|
|
|
+ }
|
|
|
|
+ this.formData[field] = value;
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ event.target.value = value;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 失焦时补全小数位
|
|
|
|
+ handleBlur(field, precision = 2) {
|
|
|
|
+ const val = this.formData[field];
|
|
|
|
+ if (val === "" || val === void 0 || val === null)
|
|
|
|
+ return;
|
|
|
|
+ const num = parseFloat(val);
|
|
|
|
+ if (!isNaN(num)) {
|
|
|
|
+ this.formData[field] = num.toFixed(precision);
|
|
|
|
+ } else {
|
|
|
|
+ this.formData[field] = "";
|
|
|
|
+ }
|
|
|
|
+ },
|
|
// 添加承诺书相关方法
|
|
// 添加承诺书相关方法
|
|
togglePromiseChecked() {
|
|
togglePromiseChecked() {
|
|
this.promiseChecked = !this.promiseChecked;
|
|
this.promiseChecked = !this.promiseChecked;
|
|
@@ -1028,7 +1063,26 @@ const _sfc_main = {
|
|
prevStep() {
|
|
prevStep() {
|
|
const prevIndex = this.currentStepIndex - 1;
|
|
const prevIndex = this.currentStepIndex - 1;
|
|
if (prevIndex >= 0) {
|
|
if (prevIndex >= 0) {
|
|
- this.currentStep = this.steps[prevIndex].id;
|
|
|
|
|
|
+ if (this.steps[prevIndex].id === 6 && !this.shouldShowSkillsStep) {
|
|
|
|
+ const skipIndex = prevIndex - 1;
|
|
|
|
+ if (skipIndex >= 0) {
|
|
|
|
+ if (this.steps[skipIndex].id === 5 && !this.shouldShowEducationStep) {
|
|
|
|
+ const skipIndex2 = skipIndex - 1;
|
|
|
|
+ if (skipIndex2 >= 0) {
|
|
|
|
+ this.currentStep = this.steps[skipIndex2].id;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ this.currentStep = this.steps[skipIndex].id;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else if (this.steps[prevIndex].id === 5 && !this.shouldShowEducationStep) {
|
|
|
|
+ const skipIndex = prevIndex - 1;
|
|
|
|
+ if (skipIndex >= 0) {
|
|
|
|
+ this.currentStep = this.steps[skipIndex].id;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ this.currentStep = this.steps[prevIndex].id;
|
|
|
|
+ }
|
|
common_vendor.index.pageScrollTo({
|
|
common_vendor.index.pageScrollTo({
|
|
scrollTop: 0,
|
|
scrollTop: 0,
|
|
duration: 300
|
|
duration: 300
|
|
@@ -1045,7 +1099,19 @@ const _sfc_main = {
|
|
}
|
|
}
|
|
const nextIndex = this.currentStepIndex + 1;
|
|
const nextIndex = this.currentStepIndex + 1;
|
|
if (nextIndex < this.steps.length) {
|
|
if (nextIndex < this.steps.length) {
|
|
- if (this.steps[nextIndex].id === 6 && !this.shouldShowSkillsStep) {
|
|
|
|
|
|
+ if (this.steps[nextIndex].id === 5 && !this.shouldShowEducationStep) {
|
|
|
|
+ const skipIndex = nextIndex + 1;
|
|
|
|
+ if (skipIndex < this.steps.length) {
|
|
|
|
+ if (this.steps[skipIndex].id === 6 && !this.shouldShowSkillsStep) {
|
|
|
|
+ const skipIndex2 = skipIndex + 1;
|
|
|
|
+ if (skipIndex2 < this.steps.length) {
|
|
|
|
+ this.currentStep = this.steps[skipIndex2].id;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ this.currentStep = this.steps[skipIndex].id;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else if (this.steps[nextIndex].id === 6 && !this.shouldShowSkillsStep) {
|
|
const skipIndex = nextIndex + 1;
|
|
const skipIndex = nextIndex + 1;
|
|
if (skipIndex < this.steps.length) {
|
|
if (skipIndex < this.steps.length) {
|
|
this.currentStep = this.steps[skipIndex].id;
|
|
this.currentStep = this.steps[skipIndex].id;
|
|
@@ -1673,40 +1739,42 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
Y: $options.showHeightField
|
|
Y: $options.showHeightField
|
|
}, $options.showHeightField ? {
|
|
}, $options.showHeightField ? {
|
|
- Z: $data.formData.height,
|
|
|
|
- aa: common_vendor.o(($event) => $data.formData.height = $event.detail.value)
|
|
|
|
|
|
+ Z: common_vendor.o([($event) => $data.formData.height = $event.detail.value, ($event) => $options.handleInput($event, "height", 2)]),
|
|
|
|
+ aa: common_vendor.o(($event) => $options.handleBlur("height")),
|
|
|
|
+ ab: $data.formData.height
|
|
} : {}, {
|
|
} : {}, {
|
|
- ab: $options.showWeightField
|
|
|
|
|
|
+ ac: $options.showWeightField
|
|
}, $options.showWeightField ? {
|
|
}, $options.showWeightField ? {
|
|
- ac: $data.formData.weight,
|
|
|
|
- ad: common_vendor.o(($event) => $data.formData.weight = $event.detail.value)
|
|
|
|
|
|
+ ad: common_vendor.o([($event) => $data.formData.weight = $event.detail.value, ($event) => $options.handleInput($event, "weight", 2)]),
|
|
|
|
+ ae: common_vendor.o(($event) => $options.handleBlur("weight")),
|
|
|
|
+ af: $data.formData.weight
|
|
} : {}, {
|
|
} : {}, {
|
|
- ae: $data.formErrors.currentAddress ? 1 : "",
|
|
|
|
- af: $data.formData.currentAddress,
|
|
|
|
- ag: common_vendor.o(($event) => $data.formData.currentAddress = $event.detail.value),
|
|
|
|
- ah: $data.formErrors.currentAddress
|
|
|
|
|
|
+ ag: $data.formErrors.currentAddress ? 1 : "",
|
|
|
|
+ ah: $data.formData.currentAddress,
|
|
|
|
+ ai: common_vendor.o(($event) => $data.formData.currentAddress = $event.detail.value),
|
|
|
|
+ aj: $data.formErrors.currentAddress
|
|
}, $data.formErrors.currentAddress ? {
|
|
}, $data.formErrors.currentAddress ? {
|
|
- ai: common_vendor.t($data.formErrors.currentAddress)
|
|
|
|
|
|
+ ak: common_vendor.t($data.formErrors.currentAddress)
|
|
} : {}, {
|
|
} : {}, {
|
|
- aj: $data.formData.residence,
|
|
|
|
- ak: common_vendor.o(($event) => $data.formData.residence = $event.detail.value),
|
|
|
|
- al: common_vendor.t($data.marriageOptions[$data.marriageIndex] || "请选择婚育状况"),
|
|
|
|
- am: common_vendor.o((...args) => $options.bindMarriageChange && $options.bindMarriageChange(...args)),
|
|
|
|
- an: $data.marriageIndex,
|
|
|
|
- ao: $data.marriageOptions,
|
|
|
|
- ap: common_vendor.o((...args) => $options.validateExpectedSalary && $options.validateExpectedSalary(...args)),
|
|
|
|
- aq: $data.formErrors.expectedSalary ? 1 : "",
|
|
|
|
- ar: $data.formData.expectedSalary,
|
|
|
|
- as: common_vendor.o(($event) => $data.formData.expectedSalary = $event.detail.value),
|
|
|
|
- at: $data.formErrors.expectedSalary
|
|
|
|
|
|
+ al: $data.formData.residence,
|
|
|
|
+ am: common_vendor.o(($event) => $data.formData.residence = $event.detail.value),
|
|
|
|
+ an: common_vendor.t($data.marriageOptions[$data.marriageIndex] || "请选择婚育状况"),
|
|
|
|
+ ao: common_vendor.o((...args) => $options.bindMarriageChange && $options.bindMarriageChange(...args)),
|
|
|
|
+ ap: $data.marriageIndex,
|
|
|
|
+ aq: $data.marriageOptions,
|
|
|
|
+ ar: common_vendor.o((...args) => $options.validateExpectedSalary && $options.validateExpectedSalary(...args)),
|
|
|
|
+ as: $data.formErrors.expectedSalary ? 1 : "",
|
|
|
|
+ at: $data.formData.expectedSalary,
|
|
|
|
+ av: common_vendor.o(($event) => $data.formData.expectedSalary = $event.detail.value),
|
|
|
|
+ aw: $data.formErrors.expectedSalary
|
|
}, $data.formErrors.expectedSalary ? {
|
|
}, $data.formErrors.expectedSalary ? {
|
|
- av: common_vendor.t($data.formErrors.expectedSalary)
|
|
|
|
|
|
+ ax: common_vendor.t($data.formErrors.expectedSalary)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- aw: $data.currentStep === 3
|
|
|
|
|
|
+ ay: $data.currentStep === 3
|
|
}, $data.currentStep === 3 ? common_vendor.e({
|
|
}, $data.currentStep === 3 ? common_vendor.e({
|
|
- ax: $data.familyMembers.length > 0
|
|
|
|
|
|
+ az: $data.familyMembers.length > 0
|
|
}, $data.familyMembers.length > 0 ? {
|
|
}, $data.familyMembers.length > 0 ? {
|
|
- ay: common_vendor.f($data.familyMembers, (member, index, i0) => {
|
|
|
|
|
|
+ aA: common_vendor.f($data.familyMembers, (member, index, i0) => {
|
|
return common_vendor.e({
|
|
return common_vendor.e({
|
|
a: common_vendor.t(index + 1),
|
|
a: common_vendor.t(index + 1),
|
|
b: common_vendor.o(($event) => $options.editFamilyMember(index), index),
|
|
b: common_vendor.o(($event) => $options.editFamilyMember(index), index),
|
|
@@ -1726,65 +1794,65 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
j: index
|
|
j: index
|
|
});
|
|
});
|
|
}),
|
|
}),
|
|
- az: $options.showFamilyRelationField,
|
|
|
|
- aA: $options.showFamilyNameField,
|
|
|
|
- aB: $options.showFamilyWorkplaceField,
|
|
|
|
- aC: $options.showFamilyPositionField,
|
|
|
|
- aD: $options.showFamilyPhoneField
|
|
|
|
|
|
+ aB: $options.showFamilyRelationField,
|
|
|
|
+ aC: $options.showFamilyNameField,
|
|
|
|
+ aD: $options.showFamilyWorkplaceField,
|
|
|
|
+ aE: $options.showFamilyPositionField,
|
|
|
|
+ aF: $options.showFamilyPhoneField
|
|
} : {}, {
|
|
} : {}, {
|
|
- aE: common_vendor.t($data.isEditing ? "编辑家庭成员" : "添加家庭成员"),
|
|
|
|
- aF: $data.isEditing
|
|
|
|
|
|
+ aG: common_vendor.t($data.isEditing ? "编辑家庭成员" : "添加家庭成员"),
|
|
|
|
+ aH: $data.isEditing
|
|
}, $data.isEditing ? {
|
|
}, $data.isEditing ? {
|
|
- aG: common_vendor.o((...args) => $options.cancelEdit && $options.cancelEdit(...args))
|
|
|
|
|
|
+ aI: common_vendor.o((...args) => $options.cancelEdit && $options.cancelEdit(...args))
|
|
} : {}, {
|
|
} : {}, {
|
|
- aH: $options.showFamilyRelationField
|
|
|
|
|
|
+ aJ: $options.showFamilyRelationField
|
|
}, $options.showFamilyRelationField ? common_vendor.e({
|
|
}, $options.showFamilyRelationField ? common_vendor.e({
|
|
- aI: $data.familyMemberErrors.relation ? 1 : "",
|
|
|
|
- aJ: $data.familyMemberForm.relation,
|
|
|
|
- aK: common_vendor.o(($event) => $data.familyMemberForm.relation = $event.detail.value),
|
|
|
|
- aL: $data.familyMemberErrors.relation
|
|
|
|
|
|
+ aK: $data.familyMemberErrors.relation ? 1 : "",
|
|
|
|
+ aL: $data.familyMemberForm.relation,
|
|
|
|
+ aM: common_vendor.o(($event) => $data.familyMemberForm.relation = $event.detail.value),
|
|
|
|
+ aN: $data.familyMemberErrors.relation
|
|
}, $data.familyMemberErrors.relation ? {
|
|
}, $data.familyMemberErrors.relation ? {
|
|
- aM: common_vendor.t($data.familyMemberErrors.relation)
|
|
|
|
|
|
+ aO: common_vendor.t($data.familyMemberErrors.relation)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- aN: $options.showFamilyNameField
|
|
|
|
|
|
+ aP: $options.showFamilyNameField
|
|
}, $options.showFamilyNameField ? common_vendor.e({
|
|
}, $options.showFamilyNameField ? common_vendor.e({
|
|
- aO: $data.familyMemberErrors.name ? 1 : "",
|
|
|
|
- aP: $data.familyMemberForm.name,
|
|
|
|
- aQ: common_vendor.o(($event) => $data.familyMemberForm.name = $event.detail.value),
|
|
|
|
- aR: $data.familyMemberErrors.name
|
|
|
|
|
|
+ aQ: $data.familyMemberErrors.name ? 1 : "",
|
|
|
|
+ aR: $data.familyMemberForm.name,
|
|
|
|
+ aS: common_vendor.o(($event) => $data.familyMemberForm.name = $event.detail.value),
|
|
|
|
+ aT: $data.familyMemberErrors.name
|
|
}, $data.familyMemberErrors.name ? {
|
|
}, $data.familyMemberErrors.name ? {
|
|
- aS: common_vendor.t($data.familyMemberErrors.name)
|
|
|
|
|
|
+ aU: common_vendor.t($data.familyMemberErrors.name)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- aT: $options.showFamilyWorkplaceField
|
|
|
|
|
|
+ aV: $options.showFamilyWorkplaceField
|
|
}, $options.showFamilyWorkplaceField ? {
|
|
}, $options.showFamilyWorkplaceField ? {
|
|
- aU: $data.familyMemberForm.workplaceOrAddress,
|
|
|
|
- aV: common_vendor.o(($event) => $data.familyMemberForm.workplaceOrAddress = $event.detail.value)
|
|
|
|
|
|
+ aW: $data.familyMemberForm.workplaceOrAddress,
|
|
|
|
+ aX: common_vendor.o(($event) => $data.familyMemberForm.workplaceOrAddress = $event.detail.value)
|
|
} : {}, {
|
|
} : {}, {
|
|
- aW: $options.showFamilyPositionField
|
|
|
|
|
|
+ aY: $options.showFamilyPositionField
|
|
}, $options.showFamilyPositionField ? {
|
|
}, $options.showFamilyPositionField ? {
|
|
- aX: $data.familyMemberForm.position,
|
|
|
|
- aY: common_vendor.o(($event) => $data.familyMemberForm.position = $event.detail.value)
|
|
|
|
|
|
+ aZ: $data.familyMemberForm.position,
|
|
|
|
+ ba: common_vendor.o(($event) => $data.familyMemberForm.position = $event.detail.value)
|
|
} : {}, {
|
|
} : {}, {
|
|
- aZ: $options.showFamilyPhoneField
|
|
|
|
|
|
+ bb: $options.showFamilyPhoneField
|
|
}, $options.showFamilyPhoneField ? common_vendor.e({
|
|
}, $options.showFamilyPhoneField ? common_vendor.e({
|
|
- ba: common_vendor.o([($event) => $data.familyMemberForm.phone = $event.detail.value, (...args) => $options.validatePhone && $options.validatePhone(...args)]),
|
|
|
|
- bb: $data.familyMemberErrors.phone ? 1 : "",
|
|
|
|
- bc: $data.familyMemberForm.phone,
|
|
|
|
- bd: $data.familyMemberErrors.phone
|
|
|
|
|
|
+ bc: common_vendor.o([($event) => $data.familyMemberForm.phone = $event.detail.value, (...args) => $options.validatePhone && $options.validatePhone(...args)]),
|
|
|
|
+ bd: $data.familyMemberErrors.phone ? 1 : "",
|
|
|
|
+ be: $data.familyMemberForm.phone,
|
|
|
|
+ bf: $data.familyMemberErrors.phone
|
|
}, $data.familyMemberErrors.phone ? {
|
|
}, $data.familyMemberErrors.phone ? {
|
|
- be: common_vendor.t($data.familyMemberErrors.phone)
|
|
|
|
|
|
+ bg: common_vendor.t($data.familyMemberErrors.phone)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- bf: $data.familyMemberForm.isEmergencyContact,
|
|
|
|
- bg: common_vendor.o((...args) => $options.handleEmergencyContactChange && $options.handleEmergencyContactChange(...args)),
|
|
|
|
- bh: common_vendor.t($data.isEditing ? "✓" : "+"),
|
|
|
|
- bi: common_vendor.o((...args) => $options.saveFamilyMember && $options.saveFamilyMember(...args)),
|
|
|
|
- bj: common_vendor.t($data.isEditing ? "保存修改" : "添加成员")
|
|
|
|
|
|
+ bh: $data.familyMemberForm.isEmergencyContact,
|
|
|
|
+ bi: common_vendor.o((...args) => $options.handleEmergencyContactChange && $options.handleEmergencyContactChange(...args)),
|
|
|
|
+ bj: common_vendor.t($data.isEditing ? "✓" : "+"),
|
|
|
|
+ bk: common_vendor.o((...args) => $options.saveFamilyMember && $options.saveFamilyMember(...args)),
|
|
|
|
+ bl: common_vendor.t($data.isEditing ? "保存修改" : "添加成员")
|
|
}) : {}, {
|
|
}) : {}, {
|
|
- bk: $data.currentStep === 5
|
|
|
|
|
|
+ bm: $data.currentStep === 5
|
|
}, $data.currentStep === 5 ? common_vendor.e({
|
|
}, $data.currentStep === 5 ? common_vendor.e({
|
|
- bl: $data.educationList.length > 0
|
|
|
|
|
|
+ bn: $data.educationList.length > 0
|
|
}, $data.educationList.length > 0 ? {
|
|
}, $data.educationList.length > 0 ? {
|
|
- bm: common_vendor.f($data.educationList, (edu, index, i0) => {
|
|
|
|
|
|
+ bo: common_vendor.f($data.educationList, (edu, index, i0) => {
|
|
return common_vendor.e({
|
|
return common_vendor.e({
|
|
a: common_vendor.t(index === 0 ? "第一学历" : "最高学历"),
|
|
a: common_vendor.t(index === 0 ? "第一学历" : "最高学历"),
|
|
b: common_vendor.o(($event) => $options.editEducation(index), index),
|
|
b: common_vendor.o(($event) => $options.editEducation(index), index),
|
|
@@ -1802,98 +1870,98 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
i: index
|
|
i: index
|
|
});
|
|
});
|
|
}),
|
|
}),
|
|
- bn: $options.showEducationTimeField,
|
|
|
|
- bo: $options.showEducationSchoolField,
|
|
|
|
- bp: $options.showEducationMajorField,
|
|
|
|
- bq: $options.showEducationDegreeField
|
|
|
|
|
|
+ bp: $options.showEducationTimeField,
|
|
|
|
+ bq: $options.showEducationSchoolField,
|
|
|
|
+ br: $options.showEducationMajorField,
|
|
|
|
+ bs: $options.showEducationDegreeField
|
|
} : {}, {
|
|
} : {}, {
|
|
- br: $data.educationList.length < 2 || $data.isEditingEducation
|
|
|
|
|
|
+ bt: $data.educationList.length < 2 || $data.isEditingEducation
|
|
}, $data.educationList.length < 2 || $data.isEditingEducation ? common_vendor.e({
|
|
}, $data.educationList.length < 2 || $data.isEditingEducation ? common_vendor.e({
|
|
- bs: common_vendor.t($data.isEditingEducation ? "编辑教育经历" : $data.educationList.length === 0 ? "添加第一学历" : "添加最高学历"),
|
|
|
|
- bt: $data.isEditingEducation
|
|
|
|
|
|
+ bv: common_vendor.t($data.isEditingEducation ? "编辑教育经历" : $data.educationList.length === 0 ? "添加第一学历" : "添加最高学历"),
|
|
|
|
+ bw: $data.isEditingEducation
|
|
}, $data.isEditingEducation ? {
|
|
}, $data.isEditingEducation ? {
|
|
- bv: common_vendor.o((...args) => $options.cancelEditEducation && $options.cancelEditEducation(...args))
|
|
|
|
|
|
+ bx: common_vendor.o((...args) => $options.cancelEditEducation && $options.cancelEditEducation(...args))
|
|
} : {}, {
|
|
} : {}, {
|
|
- bw: $options.showEducationTimeField
|
|
|
|
|
|
+ by: $options.showEducationTimeField
|
|
}, $options.showEducationTimeField ? common_vendor.e({
|
|
}, $options.showEducationTimeField ? common_vendor.e({
|
|
- bx: common_vendor.t($data.educationForm.startTime || "开始时间"),
|
|
|
|
- by: $data.educationForm.startTime,
|
|
|
|
- bz: common_vendor.o((...args) => $options.bindStartTimeChange && $options.bindStartTimeChange(...args)),
|
|
|
|
- bA: $data.educationErrors.startTime ? 1 : "",
|
|
|
|
- bB: common_vendor.t($data.educationForm.endTime || "结束时间"),
|
|
|
|
- bC: $data.educationForm.endTime,
|
|
|
|
- bD: common_vendor.o((...args) => $options.bindEndTimeChange && $options.bindEndTimeChange(...args)),
|
|
|
|
- bE: $data.educationErrors.endTime ? 1 : "",
|
|
|
|
- bF: $data.educationErrors.startTime
|
|
|
|
|
|
+ bz: common_vendor.t($data.educationForm.startTime || "开始时间"),
|
|
|
|
+ bA: $data.educationForm.startTime,
|
|
|
|
+ bB: common_vendor.o((...args) => $options.bindStartTimeChange && $options.bindStartTimeChange(...args)),
|
|
|
|
+ bC: $data.educationErrors.startTime ? 1 : "",
|
|
|
|
+ bD: common_vendor.t($data.educationForm.endTime || "结束时间"),
|
|
|
|
+ bE: $data.educationForm.endTime,
|
|
|
|
+ bF: common_vendor.o((...args) => $options.bindEndTimeChange && $options.bindEndTimeChange(...args)),
|
|
|
|
+ bG: $data.educationErrors.endTime ? 1 : "",
|
|
|
|
+ bH: $data.educationErrors.startTime
|
|
}, $data.educationErrors.startTime ? {
|
|
}, $data.educationErrors.startTime ? {
|
|
- bG: common_vendor.t($data.educationErrors.startTime)
|
|
|
|
|
|
+ bI: common_vendor.t($data.educationErrors.startTime)
|
|
} : {}, {
|
|
} : {}, {
|
|
- bH: $data.educationErrors.endTime
|
|
|
|
|
|
+ bJ: $data.educationErrors.endTime
|
|
}, $data.educationErrors.endTime ? {
|
|
}, $data.educationErrors.endTime ? {
|
|
- bI: common_vendor.t($data.educationErrors.endTime)
|
|
|
|
|
|
+ bK: common_vendor.t($data.educationErrors.endTime)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- bJ: $options.showEducationSchoolField
|
|
|
|
|
|
+ bL: $options.showEducationSchoolField
|
|
}, $options.showEducationSchoolField ? common_vendor.e({
|
|
}, $options.showEducationSchoolField ? common_vendor.e({
|
|
- bK: $data.educationErrors.schoolName ? 1 : "",
|
|
|
|
- bL: $data.educationForm.schoolName,
|
|
|
|
- bM: common_vendor.o(($event) => $data.educationForm.schoolName = $event.detail.value),
|
|
|
|
- bN: $data.educationErrors.schoolName
|
|
|
|
|
|
+ bM: $data.educationErrors.schoolName ? 1 : "",
|
|
|
|
+ bN: $data.educationForm.schoolName,
|
|
|
|
+ bO: common_vendor.o(($event) => $data.educationForm.schoolName = $event.detail.value),
|
|
|
|
+ bP: $data.educationErrors.schoolName
|
|
}, $data.educationErrors.schoolName ? {
|
|
}, $data.educationErrors.schoolName ? {
|
|
- bO: common_vendor.t($data.educationErrors.schoolName)
|
|
|
|
|
|
+ bQ: common_vendor.t($data.educationErrors.schoolName)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- bP: $options.showEducationMajorField
|
|
|
|
|
|
+ bR: $options.showEducationMajorField
|
|
}, $options.showEducationMajorField ? common_vendor.e({
|
|
}, $options.showEducationMajorField ? common_vendor.e({
|
|
- bQ: $data.educationErrors.major ? 1 : "",
|
|
|
|
- bR: $data.educationForm.major,
|
|
|
|
- bS: common_vendor.o(($event) => $data.educationForm.major = $event.detail.value),
|
|
|
|
- bT: $data.educationErrors.major
|
|
|
|
|
|
+ bS: $data.educationErrors.major ? 1 : "",
|
|
|
|
+ bT: $data.educationForm.major,
|
|
|
|
+ bU: common_vendor.o(($event) => $data.educationForm.major = $event.detail.value),
|
|
|
|
+ bV: $data.educationErrors.major
|
|
}, $data.educationErrors.major ? {
|
|
}, $data.educationErrors.major ? {
|
|
- bU: common_vendor.t($data.educationErrors.major)
|
|
|
|
|
|
+ bW: common_vendor.t($data.educationErrors.major)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- bV: $options.showEducationDegreeField
|
|
|
|
|
|
+ bX: $options.showEducationDegreeField
|
|
}, $options.showEducationDegreeField ? common_vendor.e({
|
|
}, $options.showEducationDegreeField ? common_vendor.e({
|
|
- bW: common_vendor.t($data.degreeOptions[$data.degreeIndex] || "请选择学历"),
|
|
|
|
- bX: common_vendor.o((...args) => $options.bindDegreeChange && $options.bindDegreeChange(...args)),
|
|
|
|
- bY: $data.degreeIndex,
|
|
|
|
- bZ: $data.degreeOptions,
|
|
|
|
- ca: $data.educationErrors.degree ? 1 : "",
|
|
|
|
- cb: $data.educationErrors.degree
|
|
|
|
|
|
+ bY: common_vendor.t($data.degreeOptions[$data.degreeIndex] || "请选择学历"),
|
|
|
|
+ bZ: common_vendor.o((...args) => $options.bindDegreeChange && $options.bindDegreeChange(...args)),
|
|
|
|
+ ca: $data.degreeIndex,
|
|
|
|
+ cb: $data.degreeOptions,
|
|
|
|
+ cc: $data.educationErrors.degree ? 1 : "",
|
|
|
|
+ cd: $data.educationErrors.degree
|
|
}, $data.educationErrors.degree ? {
|
|
}, $data.educationErrors.degree ? {
|
|
- cc: common_vendor.t($data.educationErrors.degree)
|
|
|
|
|
|
+ ce: common_vendor.t($data.educationErrors.degree)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- cd: common_vendor.t($data.isEditingEducation ? "✓" : "+"),
|
|
|
|
- ce: common_vendor.o((...args) => $options.saveEducation && $options.saveEducation(...args)),
|
|
|
|
- cf: common_vendor.t($data.isEditingEducation ? "保存修改" : "添加学历")
|
|
|
|
|
|
+ cf: common_vendor.t($data.isEditingEducation ? "✓" : "+"),
|
|
|
|
+ cg: common_vendor.o((...args) => $options.saveEducation && $options.saveEducation(...args)),
|
|
|
|
+ ch: common_vendor.t($data.isEditingEducation ? "保存修改" : "添加学历")
|
|
}) : {}) : {}, {
|
|
}) : {}) : {}, {
|
|
- cg: $data.currentStep === 6 && ($options.showRequireTrainingInfoField || $options.showRequireProfessionalSkillsField)
|
|
|
|
|
|
+ ci: $data.currentStep === 6 && ($options.showRequireTrainingInfoField || $options.showRequireProfessionalSkillsField)
|
|
}, $data.currentStep === 6 && ($options.showRequireTrainingInfoField || $options.showRequireProfessionalSkillsField) ? common_vendor.e({
|
|
}, $data.currentStep === 6 && ($options.showRequireTrainingInfoField || $options.showRequireProfessionalSkillsField) ? common_vendor.e({
|
|
- ch: $options.showRequireTrainingInfoField
|
|
|
|
|
|
+ cj: $options.showRequireTrainingInfoField
|
|
}, $options.showRequireTrainingInfoField ? {} : {}, {
|
|
}, $options.showRequireTrainingInfoField ? {} : {}, {
|
|
- ci: $options.showRequireTrainingInfoField
|
|
|
|
|
|
+ ck: $options.showRequireTrainingInfoField
|
|
}, $options.showRequireTrainingInfoField ? common_vendor.e({
|
|
}, $options.showRequireTrainingInfoField ? common_vendor.e({
|
|
- cj: $data.formErrors.skills ? 1 : "",
|
|
|
|
- ck: $data.formData.skills,
|
|
|
|
- cl: common_vendor.o(($event) => $data.formData.skills = $event.detail.value),
|
|
|
|
- cm: $data.formErrors.skills
|
|
|
|
|
|
+ cl: $data.formErrors.skills ? 1 : "",
|
|
|
|
+ cm: $data.formData.skills,
|
|
|
|
+ cn: common_vendor.o(($event) => $data.formData.skills = $event.detail.value),
|
|
|
|
+ co: $data.formErrors.skills
|
|
}, $data.formErrors.skills ? {
|
|
}, $data.formErrors.skills ? {
|
|
- cn: common_vendor.t($data.formErrors.skills)
|
|
|
|
|
|
+ cp: common_vendor.t($data.formErrors.skills)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- co: $options.showRequireProfessionalSkillsField
|
|
|
|
|
|
+ cq: $options.showRequireProfessionalSkillsField
|
|
}, $options.showRequireProfessionalSkillsField ? {} : {}, {
|
|
}, $options.showRequireProfessionalSkillsField ? {} : {}, {
|
|
- cp: $options.showRequireProfessionalSkillsField
|
|
|
|
|
|
+ cr: $options.showRequireProfessionalSkillsField
|
|
}, $options.showRequireProfessionalSkillsField ? common_vendor.e({
|
|
}, $options.showRequireProfessionalSkillsField ? common_vendor.e({
|
|
- cq: $data.formErrors.training ? 1 : "",
|
|
|
|
- cr: $data.formData.training,
|
|
|
|
- cs: common_vendor.o(($event) => $data.formData.training = $event.detail.value),
|
|
|
|
- ct: $data.formErrors.training
|
|
|
|
|
|
+ cs: $data.formErrors.training ? 1 : "",
|
|
|
|
+ ct: $data.formData.training,
|
|
|
|
+ cv: common_vendor.o(($event) => $data.formData.training = $event.detail.value),
|
|
|
|
+ cw: $data.formErrors.training
|
|
}, $data.formErrors.training ? {
|
|
}, $data.formErrors.training ? {
|
|
- cv: common_vendor.t($data.formErrors.training)
|
|
|
|
|
|
+ cx: common_vendor.t($data.formErrors.training)
|
|
} : {}) : {}) : {}, {
|
|
} : {}) : {}) : {}, {
|
|
- cw: $data.currentStep === 8
|
|
|
|
|
|
+ cy: $data.currentStep === 8
|
|
}, $data.currentStep === 8 ? common_vendor.e({
|
|
}, $data.currentStep === 8 ? common_vendor.e({
|
|
- cx: $data.workList.length > 0
|
|
|
|
|
|
+ cz: $data.workList.length > 0
|
|
}, $data.workList.length > 0 ? {
|
|
}, $data.workList.length > 0 ? {
|
|
- cy: common_vendor.f($data.workList, (work, index, i0) => {
|
|
|
|
|
|
+ cA: common_vendor.f($data.workList, (work, index, i0) => {
|
|
return common_vendor.e({
|
|
return common_vendor.e({
|
|
a: common_vendor.t(index + 1),
|
|
a: common_vendor.t(index + 1),
|
|
b: common_vendor.o(($event) => $options.editWork(index), index),
|
|
b: common_vendor.o(($event) => $options.editWork(index), index),
|
|
@@ -1916,108 +1984,108 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
m: index
|
|
m: index
|
|
});
|
|
});
|
|
}),
|
|
}),
|
|
- cz: $options.showWorkTimeField,
|
|
|
|
- cA: $options.showWorkCompanyField,
|
|
|
|
- cB: $options.showWorkDepartmentField,
|
|
|
|
- cC: $options.showWorkEmployeeCountField,
|
|
|
|
- cD: $options.showWorkPositionField
|
|
|
|
|
|
+ cB: $options.showWorkTimeField,
|
|
|
|
+ cC: $options.showWorkCompanyField,
|
|
|
|
+ cD: $options.showWorkDepartmentField,
|
|
|
|
+ cE: $options.showWorkEmployeeCountField,
|
|
|
|
+ cF: $options.showWorkPositionField
|
|
} : {}, {
|
|
} : {}, {
|
|
- cE: $data.workList.length < 2 || $data.isEditingWork
|
|
|
|
|
|
+ cG: $data.workList.length < 2 || $data.isEditingWork
|
|
}, $data.workList.length < 2 || $data.isEditingWork ? common_vendor.e({
|
|
}, $data.workList.length < 2 || $data.isEditingWork ? common_vendor.e({
|
|
- cF: common_vendor.t($data.isEditingWork ? "编辑工作经历" : "添加工作经历"),
|
|
|
|
- cG: $data.isEditingWork
|
|
|
|
|
|
+ cH: common_vendor.t($data.isEditingWork ? "编辑工作经历" : "添加工作经历"),
|
|
|
|
+ cI: $data.isEditingWork
|
|
}, $data.isEditingWork ? {
|
|
}, $data.isEditingWork ? {
|
|
- cH: common_vendor.o((...args) => $options.cancelEditWork && $options.cancelEditWork(...args))
|
|
|
|
|
|
+ cJ: common_vendor.o((...args) => $options.cancelEditWork && $options.cancelEditWork(...args))
|
|
} : {}, {
|
|
} : {}, {
|
|
- cI: $options.showWorkTimeField
|
|
|
|
|
|
+ cK: $options.showWorkTimeField
|
|
}, $options.showWorkTimeField ? common_vendor.e({
|
|
}, $options.showWorkTimeField ? common_vendor.e({
|
|
- cJ: common_vendor.t($data.workForm.startTime || "开始时间"),
|
|
|
|
- cK: $data.workForm.startTime,
|
|
|
|
- cL: common_vendor.o((...args) => $options.bindWorkStartTimeChange && $options.bindWorkStartTimeChange(...args)),
|
|
|
|
- cM: $data.workErrors.startTime ? 1 : "",
|
|
|
|
- cN: common_vendor.t($data.workForm.endTime || "结束时间"),
|
|
|
|
- cO: $data.workForm.endTime,
|
|
|
|
- cP: common_vendor.o((...args) => $options.bindWorkEndTimeChange && $options.bindWorkEndTimeChange(...args)),
|
|
|
|
- cQ: $data.workErrors.endTime ? 1 : "",
|
|
|
|
- cR: $data.workErrors.startTime
|
|
|
|
|
|
+ cL: common_vendor.t($data.workForm.startTime || "开始时间"),
|
|
|
|
+ cM: $data.workForm.startTime,
|
|
|
|
+ cN: common_vendor.o((...args) => $options.bindWorkStartTimeChange && $options.bindWorkStartTimeChange(...args)),
|
|
|
|
+ cO: $data.workErrors.startTime ? 1 : "",
|
|
|
|
+ cP: common_vendor.t($data.workForm.endTime || "结束时间"),
|
|
|
|
+ cQ: $data.workForm.endTime,
|
|
|
|
+ cR: common_vendor.o((...args) => $options.bindWorkEndTimeChange && $options.bindWorkEndTimeChange(...args)),
|
|
|
|
+ cS: $data.workErrors.endTime ? 1 : "",
|
|
|
|
+ cT: $data.workErrors.startTime
|
|
}, $data.workErrors.startTime ? {
|
|
}, $data.workErrors.startTime ? {
|
|
- cS: common_vendor.t($data.workErrors.startTime)
|
|
|
|
|
|
+ cU: common_vendor.t($data.workErrors.startTime)
|
|
} : {}, {
|
|
} : {}, {
|
|
- cT: $data.workErrors.endTime
|
|
|
|
|
|
+ cV: $data.workErrors.endTime
|
|
}, $data.workErrors.endTime ? {
|
|
}, $data.workErrors.endTime ? {
|
|
- cU: common_vendor.t($data.workErrors.endTime)
|
|
|
|
|
|
+ cW: common_vendor.t($data.workErrors.endTime)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- cV: $options.showWorkCompanyField
|
|
|
|
|
|
+ cX: $options.showWorkCompanyField
|
|
}, $options.showWorkCompanyField ? common_vendor.e({
|
|
}, $options.showWorkCompanyField ? common_vendor.e({
|
|
- cW: $data.workErrors.companyName ? 1 : "",
|
|
|
|
- cX: $data.workForm.companyName,
|
|
|
|
- cY: common_vendor.o(($event) => $data.workForm.companyName = $event.detail.value),
|
|
|
|
- cZ: $data.workErrors.companyName
|
|
|
|
|
|
+ cY: $data.workErrors.companyName ? 1 : "",
|
|
|
|
+ cZ: $data.workForm.companyName,
|
|
|
|
+ da: common_vendor.o(($event) => $data.workForm.companyName = $event.detail.value),
|
|
|
|
+ db: $data.workErrors.companyName
|
|
}, $data.workErrors.companyName ? {
|
|
}, $data.workErrors.companyName ? {
|
|
- da: common_vendor.t($data.workErrors.companyName)
|
|
|
|
|
|
+ dc: common_vendor.t($data.workErrors.companyName)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- db: $options.showWorkEmployeeCountField
|
|
|
|
|
|
+ dd: $options.showWorkEmployeeCountField
|
|
}, $options.showWorkEmployeeCountField ? common_vendor.e({
|
|
}, $options.showWorkEmployeeCountField ? common_vendor.e({
|
|
- dc: $data.workErrors.employeeCount ? 1 : "",
|
|
|
|
- dd: common_vendor.o((...args) => $options.validateEmployeeCount && $options.validateEmployeeCount(...args)),
|
|
|
|
- de: $data.workForm.employeeCount,
|
|
|
|
- df: common_vendor.o(($event) => $data.workForm.employeeCount = $event.detail.value),
|
|
|
|
- dg: $data.workErrors.employeeCount
|
|
|
|
|
|
+ de: $data.workErrors.employeeCount ? 1 : "",
|
|
|
|
+ df: common_vendor.o((...args) => $options.validateEmployeeCount && $options.validateEmployeeCount(...args)),
|
|
|
|
+ dg: $data.workForm.employeeCount,
|
|
|
|
+ dh: common_vendor.o(($event) => $data.workForm.employeeCount = $event.detail.value),
|
|
|
|
+ di: $data.workErrors.employeeCount
|
|
}, $data.workErrors.employeeCount ? {
|
|
}, $data.workErrors.employeeCount ? {
|
|
- dh: common_vendor.t($data.workErrors.employeeCount)
|
|
|
|
|
|
+ dj: common_vendor.t($data.workErrors.employeeCount)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- di: $options.showWorkDepartmentField
|
|
|
|
|
|
+ dk: $options.showWorkDepartmentField
|
|
}, $options.showWorkDepartmentField ? common_vendor.e({
|
|
}, $options.showWorkDepartmentField ? common_vendor.e({
|
|
- dj: $data.workErrors.department ? 1 : "",
|
|
|
|
- dk: $data.workForm.department,
|
|
|
|
- dl: common_vendor.o(($event) => $data.workForm.department = $event.detail.value),
|
|
|
|
- dm: $data.workErrors.department
|
|
|
|
|
|
+ dl: $data.workErrors.department ? 1 : "",
|
|
|
|
+ dm: $data.workForm.department,
|
|
|
|
+ dn: common_vendor.o(($event) => $data.workForm.department = $event.detail.value),
|
|
|
|
+ dp: $data.workErrors.department
|
|
}, $data.workErrors.department ? {
|
|
}, $data.workErrors.department ? {
|
|
- dn: common_vendor.t($data.workErrors.department)
|
|
|
|
|
|
+ dq: common_vendor.t($data.workErrors.department)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- dp: $options.showWorkPositionField
|
|
|
|
|
|
+ dr: $options.showWorkPositionField
|
|
}, $options.showWorkPositionField ? common_vendor.e({
|
|
}, $options.showWorkPositionField ? common_vendor.e({
|
|
- dq: $data.workErrors.position ? 1 : "",
|
|
|
|
- dr: $data.workForm.position,
|
|
|
|
- ds: common_vendor.o(($event) => $data.workForm.position = $event.detail.value),
|
|
|
|
- dt: $data.workErrors.position
|
|
|
|
|
|
+ ds: $data.workErrors.position ? 1 : "",
|
|
|
|
+ dt: $data.workForm.position,
|
|
|
|
+ dv: common_vendor.o(($event) => $data.workForm.position = $event.detail.value),
|
|
|
|
+ dw: $data.workErrors.position
|
|
}, $data.workErrors.position ? {
|
|
}, $data.workErrors.position ? {
|
|
- dv: common_vendor.t($data.workErrors.position)
|
|
|
|
|
|
+ dx: common_vendor.t($data.workErrors.position)
|
|
} : {}) : {}, {
|
|
} : {}) : {}, {
|
|
- dw: $data.workErrors.monthlySalary ? 1 : "",
|
|
|
|
- dx: common_vendor.o([($event) => $data.workForm.monthlySalary = $event.detail.value, (...args) => $options.validateMonthlySalary && $options.validateMonthlySalary(...args)]),
|
|
|
|
- dy: $data.workForm.monthlySalary,
|
|
|
|
- dz: $data.workErrors.monthlySalary
|
|
|
|
|
|
+ dy: $data.workErrors.monthlySalary ? 1 : "",
|
|
|
|
+ dz: common_vendor.o([($event) => $data.workForm.monthlySalary = $event.detail.value, (...args) => $options.validateMonthlySalary && $options.validateMonthlySalary(...args)]),
|
|
|
|
+ dA: $data.workForm.monthlySalary,
|
|
|
|
+ dB: $data.workErrors.monthlySalary
|
|
}, $data.workErrors.monthlySalary ? {
|
|
}, $data.workErrors.monthlySalary ? {
|
|
- dA: common_vendor.t($data.workErrors.monthlySalary)
|
|
|
|
|
|
+ dC: common_vendor.t($data.workErrors.monthlySalary)
|
|
} : {}, {
|
|
} : {}, {
|
|
- dB: $data.workForm.supervisor,
|
|
|
|
- dC: common_vendor.o(($event) => $data.workForm.supervisor = $event.detail.value),
|
|
|
|
- dD: $data.workErrors.supervisor
|
|
|
|
|
|
+ dD: $data.workForm.supervisor,
|
|
|
|
+ dE: common_vendor.o(($event) => $data.workForm.supervisor = $event.detail.value),
|
|
|
|
+ dF: $data.workErrors.supervisor
|
|
}, $data.workErrors.supervisor ? {
|
|
}, $data.workErrors.supervisor ? {
|
|
- dE: common_vendor.t($data.workErrors.supervisor)
|
|
|
|
|
|
+ dG: common_vendor.t($data.workErrors.supervisor)
|
|
} : {}, {
|
|
} : {}, {
|
|
- dF: common_vendor.o([($event) => $data.workForm.supervisorPhone = $event.detail.value, (...args) => $options.validatePhone && $options.validatePhone(...args)]),
|
|
|
|
- dG: $data.workForm.supervisorPhone,
|
|
|
|
- dH: $data.workErrors.supervisorPhone
|
|
|
|
|
|
+ dH: common_vendor.o([($event) => $data.workForm.supervisorPhone = $event.detail.value, (...args) => $options.validatePhone && $options.validatePhone(...args)]),
|
|
|
|
+ dI: $data.workForm.supervisorPhone,
|
|
|
|
+ dJ: $data.workErrors.supervisorPhone
|
|
}, $data.workErrors.supervisorPhone ? {
|
|
}, $data.workErrors.supervisorPhone ? {
|
|
- dI: common_vendor.t($data.workErrors.supervisorPhone)
|
|
|
|
|
|
+ dK: common_vendor.t($data.workErrors.supervisorPhone)
|
|
} : {}, {
|
|
} : {}, {
|
|
- dJ: common_vendor.t($data.isEditingWork ? "✓" : "+"),
|
|
|
|
- dK: common_vendor.o((...args) => $options.saveWork && $options.saveWork(...args)),
|
|
|
|
- dL: common_vendor.t($data.isEditingWork ? "保存修改" : "添加工作经历")
|
|
|
|
|
|
+ dL: common_vendor.t($data.isEditingWork ? "✓" : "+"),
|
|
|
|
+ dM: common_vendor.o((...args) => $options.saveWork && $options.saveWork(...args)),
|
|
|
|
+ dN: common_vendor.t($data.isEditingWork ? "保存修改" : "添加工作经历")
|
|
}) : {}) : {}, {
|
|
}) : {}) : {}, {
|
|
- dM: $options.showPrevButton
|
|
|
|
|
|
+ dO: $options.showPrevButton
|
|
}, $options.showPrevButton ? {
|
|
}, $options.showPrevButton ? {
|
|
- dN: common_vendor.o((...args) => $options.prevStep && $options.prevStep(...args))
|
|
|
|
|
|
+ dP: common_vendor.o((...args) => $options.prevStep && $options.prevStep(...args))
|
|
} : {}, {
|
|
} : {}, {
|
|
- dO: $options.showNextButton
|
|
|
|
|
|
+ dQ: $options.showNextButton
|
|
}, $options.showNextButton ? {
|
|
}, $options.showNextButton ? {
|
|
- dP: common_vendor.o((...args) => $options.nextStep && $options.nextStep(...args))
|
|
|
|
|
|
+ dR: common_vendor.o((...args) => $options.nextStep && $options.nextStep(...args))
|
|
} : {}, {
|
|
} : {}, {
|
|
- dQ: $options.showSubmitButton
|
|
|
|
|
|
+ dS: $options.showSubmitButton
|
|
}, $options.showSubmitButton ? {
|
|
}, $options.showSubmitButton ? {
|
|
- dR: common_vendor.o((...args) => $options.submitForm && $options.submitForm(...args))
|
|
|
|
|
|
+ dT: common_vendor.o((...args) => $options.submitForm && $options.submitForm(...args))
|
|
} : {});
|
|
} : {});
|
|
}
|
|
}
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|