艾志工业-档案基础信息添加行业分类的字段
This commit is contained in:
parent
a22f3ade1f
commit
5d9154b36d
|
|
@ -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 <React.Fragment>
|
||||
<th className="descriptions-label">{label}</th>
|
||||
<td className="descriptions-value">{baseInfo && baseInfo["employee"][value]}</td>
|
||||
<td className="descriptions-value"
|
||||
colSpan={items.length === 1 ? 5 : 1}>{baseInfo && baseInfo["employee"][value]}</td>
|
||||
</React.Fragment>;
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Reference in New Issue