fix
parent
5d6af1f5ef
commit
683496c5af
|
|
@ -18,7 +18,7 @@ export const VERIFY_STATUS_MAP = {
|
||||||
|
|
||||||
/** 审核状态 */
|
/** 审核状态 */
|
||||||
export const REVIEW_STATUS_MAP = {
|
export const REVIEW_STATUS_MAP = {
|
||||||
|
1: { label: "已审核", color: "success" },
|
||||||
2: { label: "审核中", color: "processing" },
|
2: { label: "审核中", color: "processing" },
|
||||||
3: { label: "打回", color: "error" },
|
3: { label: "打回", color: "error" },
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import { AntdTableFuncControl } from "@cqsjjb/jjb-common-decorator/antd";
|
||||||
import { NS_QUAL_FILING } from "~/enumerate/namespace";
|
import { NS_QUAL_FILING } from "~/enumerate/namespace";
|
||||||
import { FILING_FORM_MODE } from "~/enumerate/qualFilingOptions";
|
import { FILING_FORM_MODE } from "~/enumerate/qualFilingOptions";
|
||||||
import FilingListTable from "../../FilingListTable";
|
import FilingListTable from "../../FilingListTable";
|
||||||
import { goFilingForm } from "../../filingPaths";
|
|
||||||
|
|
||||||
const { router } = tools;
|
const { router } = tools;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -160,8 +160,7 @@ export default function FilingListTable({
|
||||||
<ControlWrapper.Select
|
<ControlWrapper.Select
|
||||||
label="备案状态"
|
label="备案状态"
|
||||||
placeholder="全部"
|
placeholder="全部"
|
||||||
allowClear={false}
|
|
||||||
showSearch={false}
|
|
||||||
style={{ width: "100%" }}
|
style={{ width: "100%" }}
|
||||||
>
|
>
|
||||||
{statusOptions.map((opt) => (
|
{statusOptions.map((opt) => (
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,8 @@ const FilingTabs = ({
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="请选择"
|
placeholder="请选择"
|
||||||
value={compliance[record.id]}
|
value={compliance[record.id]}
|
||||||
|
allowClear
|
||||||
|
defaultValue={'pass'}
|
||||||
onChange={(v) => onComplianceChange?.(record.id, v)}
|
onChange={(v) => onComplianceChange?.(record.id, v)}
|
||||||
>
|
>
|
||||||
<Select.Option value="pass">符合</Select.Option>
|
<Select.Option value="pass">符合</Select.Option>
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ const QualReview = (props) => {
|
||||||
},
|
},
|
||||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||||
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
{ title: "证书编号", dataIndex: "qualCertNo", width: 140, ellipsis: true },
|
||||||
{ title: "安全评价业务范围", dataIndex: "businessScope", width: 180, ellipsis: true },
|
{ title: "安全评价业务范围", dataIndex: "businessScope", width: 180, ellipsis: true },
|
||||||
{
|
{
|
||||||
title: "专家核验",
|
title: "专家核验",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue