diff --git a/pc4mobx/hrmSalary/pages/salaryFile/saralyFileViewSlide.js b/pc4mobx/hrmSalary/pages/salaryFile/saralyFileViewSlide.js index 32a53167..0837dfa9 100644 --- a/pc4mobx/hrmSalary/pages/salaryFile/saralyFileViewSlide.js +++ b/pc4mobx/hrmSalary/pages/salaryFile/saralyFileViewSlide.js @@ -47,6 +47,15 @@ const baseInfolist = [ value: "taxAgent" } ] + }, + { + id: 3, + items: [ + { + label: "人员分类", + value: "ryfl" + } + ] } ]; @@ -115,7 +124,8 @@ export default class SalaryFileViewSlide extends React.Component { const { label, value } = it; return {label} - {baseInfo && baseInfo["employee"][value]} + {baseInfo && baseInfo["employee"][value]} ; }) } diff --git a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/archives/baseForm.js b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/archives/baseForm.js index daaf7f03..44c6256c 100644 --- a/pc4mobx/hrmSalary/pages/socialSecurityBenefits/archives/baseForm.js +++ b/pc4mobx/hrmSalary/pages/socialSecurityBenefits/archives/baseForm.js @@ -13,7 +13,7 @@ export default class BaseForm extends React.Component { render() { const { archivesStore: { baseFormData }, record } = this.props; - const { username, department, position, telephone, hiredate, dimissionDate } = baseFormData; + const { username, department, position, telephone, hiredate, dimissionDate, ryfl } = baseFormData; const { paymentOrganizationName } = record; const baseItems = [ { com: Input("姓名", username) }, @@ -21,6 +21,7 @@ export default class BaseForm extends React.Component { { com: Input("岗位", position) }, { com: Input("手机号", telephone) }, { com: Input("入职日期", hiredate) }, + { com: Input("人员分类", ryfl) } // { com: Input("合同到期日期", dimissionDate) } ]; const taxagentItems = [