From 7d754475f3973a94ce21097fc4958217b3c19558 Mon Sep 17 00:00:00 2001 From: "DESKTOP-CUI7KST\\HXGK" <1501216501@qq.com> Date: Tue, 30 Apr 2024 16:41:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=BA=BA=E5=91=98?= =?UTF-8?q?=E6=A1=A3=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/hr/people/datacont.ts | 249 ++++ src/api/hr/people/index.ts | 160 ++- src/api/hr/people/type.ts | 174 +++ src/types/components.d.ts | 14 +- src/views/hr/archives/archivescont.vue | 953 +++++++------- .../basicinformation/appraisalrecord.vue | 138 ++ .../basicinformation/appraisalrecordadd.vue | 118 ++ .../basicinformation/appraisalrecordedit.vue | 135 ++ .../basicinformation/certificates.vue | 183 +++ .../basicinformation/certificatesadd.vue | 130 ++ .../basicinformation/certificatesedit.vue | 142 +++ .../basicinformation/charactercolor.vue | 155 +++ .../hr/archives/basicinformation/content.vue | 593 +++++---- .../archives/basicinformation/editcontent.vue | 1122 +++++++++-------- .../educationalexperience.vue | 28 +- .../educationalexperienceadd.vue | 25 +- .../educationalexperienceedit.vue | 28 +- .../basicinformation/emergencycontact.vue | 147 +-- .../basicinformation/emergencycontactadd.vue | 72 +- .../basicinformation/emergencycontactedit.vue | 17 +- .../basicinformation/employmentrelations.vue | 126 ++ .../employmentrelationsadd.vue | 129 ++ .../employmentrelationsedit.vue | 140 ++ .../hr/archives/basicinformation/jobtitle.vue | 126 ++ .../archives/basicinformation/jobtitleadd.vue | 116 ++ .../basicinformation/jobtitleedit.vue | 128 ++ .../rewardsandpunishments.vue | 145 +++ .../rewardsandpunishmentsadd.vue | 127 ++ .../rewardsandpunishmentsedit.vue | 146 +++ .../basicinformation/talentinventory.vue | 138 ++ .../basicinformation/talentinventoryadd.vue | 103 ++ .../basicinformation/talentinventoryedit.vue | 118 ++ 32 files changed, 4735 insertions(+), 1390 deletions(-) create mode 100644 src/views/hr/archives/basicinformation/appraisalrecordadd.vue create mode 100644 src/views/hr/archives/basicinformation/appraisalrecordedit.vue create mode 100644 src/views/hr/archives/basicinformation/certificates.vue create mode 100644 src/views/hr/archives/basicinformation/certificatesadd.vue create mode 100644 src/views/hr/archives/basicinformation/certificatesedit.vue create mode 100644 src/views/hr/archives/basicinformation/charactercolor.vue create mode 100644 src/views/hr/archives/basicinformation/employmentrelations.vue create mode 100644 src/views/hr/archives/basicinformation/employmentrelationsadd.vue create mode 100644 src/views/hr/archives/basicinformation/employmentrelationsedit.vue create mode 100644 src/views/hr/archives/basicinformation/jobtitle.vue create mode 100644 src/views/hr/archives/basicinformation/jobtitleadd.vue create mode 100644 src/views/hr/archives/basicinformation/jobtitleedit.vue create mode 100644 src/views/hr/archives/basicinformation/rewardsandpunishments.vue create mode 100644 src/views/hr/archives/basicinformation/rewardsandpunishmentsadd.vue create mode 100644 src/views/hr/archives/basicinformation/rewardsandpunishmentsedit.vue create mode 100644 src/views/hr/archives/basicinformation/talentinventory.vue create mode 100644 src/views/hr/archives/basicinformation/talentinventoryadd.vue create mode 100644 src/views/hr/archives/basicinformation/talentinventoryedit.vue diff --git a/src/api/hr/people/datacont.ts b/src/api/hr/people/datacont.ts index 889d7e838..27b00579c 100644 --- a/src/api/hr/people/datacont.ts +++ b/src/api/hr/people/datacont.ts @@ -1,3 +1,5 @@ +import { id } from "element-plus/es/locale"; + /** * 用工关系(1:临时工 , 2:编外人员 ;3:实习&实习生;4:试用员工;5:待分配;6:待岗;7:临时调入;8:正式员工;9:长期病假;10:停薪留职;11:退休;12:辞职;13:辞退;14:离职)', `company` 入职公司', @@ -548,3 +550,250 @@ export const postChangeType=[ name:"最高学历" } ] + +//户口性质 +export const Householdregistration = [ + { + id:1, + name:'农业户口' + }, + { + id:2, + name:'非农业户口' + } +] +//年份 +export const year = [ + { + id:1, + name:'2020年' + }, + { + id:2, + name:'2021年' + }, + { + id:3, + name:'2022年' + }, + { + id:4, + name:'2023年' + }, +] +//等级 +export const level = [ + { + id:1, + name:'A' + }, + { + id:2, + name:'B' + }, + { + id:3, + name:'C' + }, + { + id:4, + name:'D' + } + , + { + id:5, + name:'E' + } + , + { + id:6, + name:'F' + } +] +//学历类型 +export const educationtype = [ + { + id:1, + name:'全日制统招' + } + , + { + id:2, + name:'成人高考' + } + , + { + id:3, + name:'网络教育' + } + , + { + id:4, + name:'国家开放大学' + } + , + { + id:5, + name:'自学考试' + } + , + { + id:6, + name:'其他' + } +] +//院校类型 +export const schooltype = [ + { + id:1, + name:'双一流院校' + } + , + { + id:2, + name:'"985"工程院校' + } + , + { + id:3, + name:'"211"工程院校' + } + , + { + id:4, + name:'公办本科院校' + } + , + { + id:5, + name:'公办专科院校' + } + , + { + id:6, + name:'民办本科院校' + } + , + { + id:7, + name:'民办专科院校' + } + , + { + id:8, + name:'部队院校' + } + , + { + id:9, + name:'高职院校' + } + , + { + id:10, + name:'公立中学' + } + , + { + id:11, + name:'公立中专' + } + , + { + id:12, + name:'其他' + } + +] +//奖惩级别 +export const rewardlevel = [ + { + id:1, + name:'公司级' + } + , + { + id:2, + name:'部门级' + } + , + { + id:3, + name:'团队级' + } + , + { + id:4, + name:'个人级' + } + , + { + id:5, + name:'县级' + } + , + { + id:6, + name:'市级' + } + , + { + id:7, + name:'省级' + } + , + { + id:8, + name:'国家级' + } + +] +//入职渠道 +export const entrychannel = [ + { + id:1, + name:'社会招聘' + } + , + { + id:2, + name:'校园招聘' + } + , + { + id:3, + name:'内部推荐' + } + , + { + id:4, + name:'其他' + } +] +//职称级别 +export const jobtitlelevel = [ + { + id:1, + name:'员级' + } + , + { + id:2, + name:'助理级' + } + , + { + id:3, + name:'中级' + } + , + { + id:4, + name:'副高级' + } + , + { + id:5, + name:'正高级' + } +] \ No newline at end of file diff --git a/src/api/hr/people/index.ts b/src/api/hr/people/index.ts index 372d30bf9..1ee07e4d2 100644 --- a/src/api/hr/people/index.ts +++ b/src/api/hr/people/index.ts @@ -22,7 +22,19 @@ import { editUserAboutOrg, teamClassQueay, searchPeoleCont, - queryPeopleCont + queryPeopleCont, + RewardsAndPunishmentsContAdd, + RewardsAndPunishmentsContEdit, + AppraisalrecordContAdd, + AppraisalrecordContEdit, + TalentinventoryContEdit, + TalentinventoryContAdd, + EmploymentrelationsContEdit, + EmploymentrelationsContAdd, + JobtitleContAdd, + JobtitleContEdit, + CertificatesContAdd, + CertificatesContEdit, } from './type'; /** * 获取人员档案 @@ -366,3 +378,149 @@ import { data: data }); } + +// 获取奖惩记录 +export function getRewardsAndPunishmentsCont(data?: contId) { + return request({ + + }) +} +//添加奖惩记录 +export function addRewardsAndPunishmentsCont(data?: RewardsAndPunishmentsContAdd) { + return request({ + + }) +} +//编辑奖惩记录 +export function editRewardsAndPunishmentsCont(data?: RewardsAndPunishmentsContEdit) { + return request({ + + }) +} +//编辑奖惩记录状态 +export function editRewardsAndPunishmentsContState(data?: delJjlxr) { + return request({ + + }) +} +//获取考评记录 +export function getAppraisalrecordCont(data?: contId) { + return request({ + + }) +} +//添加考评记录 +export function addAppraisalrecordCont(data?: AppraisalrecordContAdd) { + return request({ + + }) +} +//编辑考评记录 +export function editAppraisalrecordCont(data?: AppraisalrecordContEdit) { + return request({ + + }) +} +//编辑考评记录状态 +export function editAppraisalrecordContState(data?: delJjlxr) { + return request({ + + }) +} + +//获取人才盘点 +export function getTalentinventoryCont(data?: contId) { + return request({ + + }) +} +//添加人才盘点 +export function addTalentinventoryCont(data?: TalentinventoryContAdd) { + return request({ + + }) +} +//编辑人才盘点 +export function editTalentinventoryCont(data?: TalentinventoryContEdit) { + return request({ + + }) +} +//编辑人才盘点状态 +export function editTalentinventoryContState(data?: delJjlxr) { + return request({ + + }) +} +//获取用工关系 +export function getEmploymentrelationsCont(data?: contId) { + return request({ + + }) +} +//添加用工关系 +export function addEmploymentrelationsCont(data?: EmploymentrelationsContAdd) { + return request({ + + }) +} +//编辑用工关系 +export function editEmploymentrelationsCont(data?: EmploymentrelationsContEdit) { + return request({ + + }) +} +//编辑用工关系状态 +export function editEmploymentrelationsContState(data?: delJjlxr) { + return request({ + + }) +} +//获取职称信息 +export function getJobtitleCont(data?: contId) { + return request({ + + }) +} +//添加职称信息 +export function addJobtitleCont(data?: JobtitleContAdd) { + return request({ + + }) +} +//编辑职称信息 +export function editJobtitleCont(data?: JobtitleContEdit) { + return request({ + + }) +} +//编辑职称信息状态 +export function editJobtitleContState(data?: delJjlxr) { + return request({ + + }) +} +//获取证书信息 +export function getCertificatesCont(data?: contId) { + return request({ + + }) +} +//添加证书信息 +export function addCertificatesCont(data?: CertificatesContAdd) { + return request({ + + }) +} +//编辑证书信息 +export function editCertificatesCont(data?: CertificatesContEdit) { + return request({ + + }) +} +//编辑证书信息状态 +export function editCertificatesContState(data?: delJjlxr) { + return request({ + + }) +} \ No newline at end of file diff --git a/src/api/hr/people/type.ts b/src/api/hr/people/type.ts index 60ddc2f03..002386aab 100644 --- a/src/api/hr/people/type.ts +++ b/src/api/hr/people/type.ts @@ -74,6 +74,10 @@ export interface archivesCont{ keystr?:string //"4929995352838144"; teamname?:string //""; personincharge?:number // 2 + //新增 + interests?:string + bloodtype?:string + natureofAccount?:string } /** * 员工列表 @@ -142,6 +146,12 @@ export interface shuangzhigong{ time?:number state?:number key?:number + + workcouple?:string + section?:string + job?:string + level?:string + mobilephone?:string } /** * 家庭成员 @@ -181,6 +191,9 @@ export interface jiaoyujingli{ educationcn?:string admissiontimestr?:string graduationtimestr?:string + educationtype?:string + faculty?:string + schooltype?:string } /** * 集团内部工作 @@ -322,6 +335,9 @@ export interface myinfostruct{ rulename?:string //"", orgreslist?:any //null keystr?:string // + interests?:string + bloodtype?:string + natureofAccount?:string } /** * 多重Id @@ -366,6 +382,9 @@ export interface userManOrFucont{ workwechat?: string constellationing?: number maritalstatus?: number + interests?:string + bloodtype?:string + natureofAccount?:string } /** * 编辑紧急联系人 @@ -374,6 +393,8 @@ export interface emergencyContactInfo extends contId{ name?: string relationship?: string mobilephone?: string + political?: string + company?: string } /** * 添加紧急联系人 @@ -402,6 +423,12 @@ export interface doubleWorkCont extends contId{ department?:string position?:string mobilephone?:string + + workcouple?:string + section?:string + job?:string + level?:string + time?:string } /** * 家庭成员 @@ -438,6 +465,9 @@ export interface educExpInfo{ graduationtime?:string //"2008-06-06", academicdegree?:string //"1", level?:string //"1" + educationtype?:string + faculty?:string + schooltype?:string } /** * 编辑教育经历 @@ -566,3 +596,147 @@ export interface queryPeopleCont{ tema:number // 1, temaname:string // "长白班" } + +//奖惩记录 +export interface jiangchengjilu{ + id:string; + level:string; + type:string; + content:string; + time:string; + company:string; +} +export interface RewardsAndPunishmentsCont{ + id?:string; + level?:string; + type?:string; + content?:string; + time?:string; + company?:string; +} +//添加奖惩记录 +export interface RewardsAndPunishmentsContAdd extends contId{ + list?:RewardsAndPunishmentsCont[] +} + +// 编辑奖惩记录 +export interface RewardsAndPunishmentsContEdit extends RewardsAndPunishmentsCont{ + id?: string +} +// 考评记录 +export interface kaopingjilu{ + id?:string; + level?:string; + year:string; +} +export interface AppraisalrecordCont{ + id?:string; + level?:string; + year?:string; +} +// 添加考评记录 +export interface AppraisalrecordContAdd extends contId{ + list?:AppraisalrecordCont[] +} +// 编辑考评记录 +export interface AppraisalrecordContEdit extends AppraisalrecordCont{ + id?: string +} +// 人才盘点 +export interface rencaipandian{ + id?:string; + career?:string; + expecthelp:string; +} +export interface TalentinventoryCont{ + id?:string; + career?:string; + expecthelp?:string; +} +// 添加人才盘点 +export interface TalentinventoryContAdd extends contId{ + list?:TalentinventoryCont[] +} +// 编辑人才盘点 +export interface TalentinventoryContEdit extends TalentinventoryCont{ + id?: string +} +// 用工关系 +export interface yonggongguanxi{ + id?:string; + entrychannel?:string; + startdate:string; + seniority?:string; + joindate?:string; + cliqueseniority?:string; +} +export interface EmploymentrelationsCont{ + id?:string; + entrychannel?:string; + startdate?:string; + seniority?:number; + joindate?:string; + cliqueseniority?:number; +} +// 添加用工关系 +export interface EmploymentrelationsContAdd extends contId{ + list?:EmploymentrelationsCont[] +} +// 编辑用工关系 +export interface EmploymentrelationsContEdit extends EmploymentrelationsCont{ + id?: string +} +// 职称信息 +export interface zhichengxinxi{ + id?:string; + level?:string; + series?:string; + profession?:string; + serialnumber?:string; + effectivetime?:string; +} +export interface JobtitleCont{ + id?:string; + level?:string; + series?:string; + profession?:string; + serialnumber?:string; + effectivetime?:string; +} +// 添加职称信息 +export interface JobtitleContAdd extends contId{ + list?:JobtitleCont[] +} +// 编辑职称信息 +export interface JobtitleContEdit extends JobtitleCont{ + id?: string +} +//证书信息 +export interface zhengshuxinxi{ + id?:string; + name?:string; + number?:string; + issuingunit?:string; + effectivetime?:string; + deadline?:string; + validity?:string; + iseffective?:string; +} +export interface CertificatesCont{ + id?:string; + name?:string; + number?:string; + issuingunit?:string; + effectivetime?:string; + deadline?:string; + validity?:string; + iseffective?:string; +} +// 添加证书信息 +export interface CertificatesContAdd extends contId{ + list?:CertificatesCont[] +} +// 编辑证书信息 +export interface CertificatesContEdit extends CertificatesCont{ + id?: string +} \ No newline at end of file diff --git a/src/types/components.d.ts b/src/types/components.d.ts index fc5e96e92..d6cf27221 100644 --- a/src/types/components.d.ts +++ b/src/types/components.d.ts @@ -21,6 +21,7 @@ declare module '@vue/runtime-core' { DesignLayoutPage: typeof import('./../components/DesignForm/designLayout/designLayoutPage.vue')['default'] DiyIconfont: typeof import('./../components/DesignForm/public/expand/diy-iconfont.vue')['default'] DragControl: typeof import('./../components/DesignForm/dragControl.vue')['default'] + ElAffix: typeof import('element-plus/es')['ElAffix'] ElAside: typeof import('element-plus/es')['ElAside'] ElAvatar: typeof import('element-plus/es')['ElAvatar'] ElBreadcrumb: typeof import('element-plus/es')['ElBreadcrumb'] @@ -51,8 +52,6 @@ declare module '@vue/runtime-core' { ElFormItem: typeof import('element-plus/es')['ElFormItem'] ElHeader: typeof import('element-plus/es')['ElHeader'] ElIcon: typeof import('element-plus/es')['ElIcon'] - ElIconExpand: typeof import('@element-plus/icons-vue')['Expand'] - ElIconFold: typeof import('@element-plus/icons-vue')['Fold'] ElImage: typeof import('element-plus/es')['ElImage'] ElImageViewer: typeof import('element-plus/es')['ElImageViewer'] ElInput: typeof import('element-plus/es')['ElInput'] @@ -61,7 +60,6 @@ declare module '@vue/runtime-core' { ElMain: typeof import('element-plus/es')['ElMain'] ElMenu: typeof import('element-plus/es')['ElMenu'] ElMenuItem: typeof import('element-plus/es')['ElMenuItem'] - ElMenuItemGroup: typeof import('element-plus/es')['ElMenuItemGroup'] ElOption: typeof import('element-plus/es')['ElOption'] ElPagination: typeof import('element-plus/es')['ElPagination'] ElPopover: typeof import('element-plus/es')['ElPopover'] @@ -72,8 +70,9 @@ declare module '@vue/runtime-core' { ElRow: typeof import('element-plus/es')['ElRow'] ElScrollbar: typeof import('element-plus/es')['ElScrollbar'] ElSelect: typeof import('element-plus/es')['ElSelect'] - ElSelectV2: typeof import('element-plus/es')['ElSelectV2'] ElSlider: typeof import('element-plus/es')['ElSlider'] + ElStep: typeof import('element-plus/es')['ElStep'] + ElSteps: typeof import('element-plus/es')['ElSteps'] ElSubMenu: typeof import('element-plus/es')['ElSubMenu'] ElSwitch: typeof import('element-plus/es')['ElSwitch'] ElTable: typeof import('element-plus/es')['ElTable'] @@ -82,6 +81,8 @@ declare module '@vue/runtime-core' { ElTabs: typeof import('element-plus/es')['ElTabs'] ElTag: typeof import('element-plus/es')['ElTag'] ElText: typeof import('element-plus/es')['ElText'] + ElTimeline: typeof import('element-plus/es')['ElTimeline'] + ElTimelineItem: typeof import('element-plus/es')['ElTimelineItem'] ElTimePicker: typeof import('element-plus/es')['ElTimePicker'] ElTooltip: typeof import('element-plus/es')['ElTooltip'] ElTree: typeof import('element-plus/es')['ElTree'] @@ -107,21 +108,16 @@ declare module '@vue/runtime-core' { HeadToolsNew: typeof import('./../components/DesignForm/public/headToolsNew.vue')['default'] IconSelect: typeof import('./../components/IconSelect/index.vue')['default'] IEpCaretBottom: typeof import('~icons/ep/caret-bottom')['default'] - IEpCaretTop: typeof import('~icons/ep/caret-top')['default'] IEpClose: typeof import('~icons/ep/close')['default'] - IEpCollection: typeof import('~icons/ep/collection')['default'] IEpDelete: typeof import('~icons/ep/delete')['default'] IEpEdit: typeof import('~icons/ep/edit')['default'] IEpMessageBox: typeof import('~icons/ep/message-box')['default'] - IEpMoreFilled: typeof import('~icons/ep/more-filled')['default'] IEpOperation: typeof import('~icons/ep/operation')['default'] IEpPicture: typeof import('~icons/ep/picture')['default'] IEpPlus: typeof import('~icons/ep/plus')['default'] IEpRefresh: typeof import('~icons/ep/refresh')['default'] IEpSearch: typeof import('~icons/ep/search')['default'] IEpSetting: typeof import('~icons/ep/setting')['default'] - IEpStar: typeof import('~icons/ep/star')['default'] - IEpUser: typeof import('~icons/ep/user')['default'] IEpView: typeof import('~icons/ep/view')['default'] LangSelect: typeof import('./../components/LangSelect/index.vue')['default'] LayoutPage: typeof import('./../components/DesignForm/layoutPage/index.vue')['default'] diff --git a/src/views/hr/archives/archivescont.vue b/src/views/hr/archives/archivescont.vue index f73878350..a56b4650b 100644 --- a/src/views/hr/archives/archivescont.vue +++ b/src/views/hr/archives/archivescont.vue @@ -3,475 +3,572 @@ @ 时间: 2023-06-15 13:01:11 @ 备注: 员工档案 --> - - diff --git a/src/views/hr/archives/basicinformation/appraisalrecord.vue b/src/views/hr/archives/basicinformation/appraisalrecord.vue index e69de29bb..190bdd214 100644 --- a/src/views/hr/archives/basicinformation/appraisalrecord.vue +++ b/src/views/hr/archives/basicinformation/appraisalrecord.vue @@ -0,0 +1,138 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/appraisalrecordadd.vue b/src/views/hr/archives/basicinformation/appraisalrecordadd.vue new file mode 100644 index 000000000..001e24ff9 --- /dev/null +++ b/src/views/hr/archives/basicinformation/appraisalrecordadd.vue @@ -0,0 +1,118 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/appraisalrecordedit.vue b/src/views/hr/archives/basicinformation/appraisalrecordedit.vue new file mode 100644 index 000000000..92402cdb8 --- /dev/null +++ b/src/views/hr/archives/basicinformation/appraisalrecordedit.vue @@ -0,0 +1,135 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/certificates.vue b/src/views/hr/archives/basicinformation/certificates.vue new file mode 100644 index 000000000..6cfad4032 --- /dev/null +++ b/src/views/hr/archives/basicinformation/certificates.vue @@ -0,0 +1,183 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/certificatesadd.vue b/src/views/hr/archives/basicinformation/certificatesadd.vue new file mode 100644 index 000000000..413a1f58a --- /dev/null +++ b/src/views/hr/archives/basicinformation/certificatesadd.vue @@ -0,0 +1,130 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/certificatesedit.vue b/src/views/hr/archives/basicinformation/certificatesedit.vue new file mode 100644 index 000000000..f49200d47 --- /dev/null +++ b/src/views/hr/archives/basicinformation/certificatesedit.vue @@ -0,0 +1,142 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/charactercolor.vue b/src/views/hr/archives/basicinformation/charactercolor.vue new file mode 100644 index 000000000..b60c89442 --- /dev/null +++ b/src/views/hr/archives/basicinformation/charactercolor.vue @@ -0,0 +1,155 @@ + + + + diff --git a/src/views/hr/archives/basicinformation/content.vue b/src/views/hr/archives/basicinformation/content.vue index 6d5354f17..43df19819 100644 --- a/src/views/hr/archives/basicinformation/content.vue +++ b/src/views/hr/archives/basicinformation/content.vue @@ -3,295 +3,334 @@ @ 时间: 2023-06-15 15:32:46 @ 备注: 基本信息 --> - - +   + + + diff --git a/src/views/hr/archives/basicinformation/editcontent.vue b/src/views/hr/archives/basicinformation/editcontent.vue index 4b5dd1e03..fac98b34c 100644 --- a/src/views/hr/archives/basicinformation/editcontent.vue +++ b/src/views/hr/archives/basicinformation/editcontent.vue @@ -3,603 +3,605 @@ @ 时间: 2023-06-18 08:41:31 @ 备注: 编辑员工信息 --> - - diff --git a/src/views/hr/archives/basicinformation/educationalexperience.vue b/src/views/hr/archives/basicinformation/educationalexperience.vue index e7a0a5de5..f803699f8 100644 --- a/src/views/hr/archives/basicinformation/educationalexperience.vue +++ b/src/views/hr/archives/basicinformation/educationalexperience.vue @@ -113,15 +113,27 @@ function editXueLiBox(cont:jiaoyujingli){ - {{ item.subject }} + {{ item.educationcn }} - {{ item.educationcn }} + {{ item.educationtype }} + + + + {{ item.faculty }} + + + + {{ item.schooltype }} {{ item.academicdegreecn }} + + + + {{ item.subject }} + +