fix
parent
4b0678087e
commit
57e87dcce5
|
|
@ -121,7 +121,7 @@ export default function StaffViewModal({
|
|||
onCancel={onCancel}
|
||||
>
|
||||
<Descriptions bordered column={2} labelStyle={{ width: 120 }}>
|
||||
<Descriptions.Item label="姓名">{info.titleName}</Descriptions.Item>
|
||||
<Descriptions.Item label="姓名">{info.userName}</Descriptions.Item>
|
||||
<Descriptions.Item label="性别">
|
||||
{GENDER_MAP[info.genderCode]}
|
||||
</Descriptions.Item>
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ function FilingApplicationListPage(props) {
|
|||
okText: "是",
|
||||
cancelText: "否",
|
||||
onOk: async () => {
|
||||
const res = await props.qualFilingDelete({ id: record.id });
|
||||
const res = await props.qualFilingDelete({ data: record.id });
|
||||
if (res?.success !== false) {
|
||||
message.success("删除成功");
|
||||
getData();
|
||||
|
|
|
|||
|
|
@ -193,7 +193,7 @@ function FilingFormPage(props) {
|
|||
return {
|
||||
...item,
|
||||
personName: item.userName || item.personName,
|
||||
sourcePersonnelId: item.id,
|
||||
sourcePersonnelId: item.sourcePersonnelId || item.id,
|
||||
};
|
||||
});
|
||||
delete params.personnelList;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/** 资质申请前置条件核验(提交前展示,对齐原型) */
|
||||
|
||||
/** 人员相关三项暂不校验(机构库数据不足),恢复时改为 false */
|
||||
const SKIP_PERSONNEL_VERIFY = true;
|
||||
const SKIP_PERSONNEL_VERIFY = false;
|
||||
|
||||
const KEY_POSITIONS = ["负责人", "技术负责人", "质量负责人"];
|
||||
|
||||
|
|
|
|||
|
|
@ -172,8 +172,8 @@ const FilingTabs = ({
|
|||
<Table size="small" bordered rowKey="id" pagination={false} dataSource={detail?.equipmentList || []}
|
||||
columns={[
|
||||
{ title: "序号", width: 60, render: (_, __, i) => i + 1 },
|
||||
{ title: "装备名称", dataIndex: "deviceName", width: 140 },
|
||||
{ title: "规格型号", dataIndex: "deviceModel", width: 120 },
|
||||
{ title: "装备名称", dataIndex: "deviceName", width: 140, ellipsis: true },
|
||||
{ title: "规格型号", dataIndex: "deviceModel", width: 120, ellipsis: true },
|
||||
{ title: "生产厂家", dataIndex: "manufacturer", width: 140 },
|
||||
{ title: "计量检定情况", width: 120,
|
||||
render: (_, record) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue