dev_1.0.1
tangjie 2026-07-01 13:44:23 +08:00
parent 6cc9b9d47f
commit a3b3c3e35f
2 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,7 @@ module.exports = {
}, },
}, },
// 应用唯一标识符 // 应用唯一标识符
appIdentifier: "safety", appIdentifier: "safety-eval",
// 应用上下文注入全局变量 // 应用上下文注入全局变量
contextInject: { contextInject: {
// 应用Key // 应用Key

View File

@ -1,5 +1,6 @@
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import { Button, Form, Select, Space, Table, Tag } from "antd"; import { Button, Form, Select, Table, Tag } from "antd";
import TableAction from "@cqsjjb/jjb-react-admin-component/TableAction";
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout"; import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
import SearchForm from "@cqsjjb/jjb-react-admin-component/SearchForm"; import SearchForm from "@cqsjjb/jjb-react-admin-component/SearchForm";
import ControlWrapper from "@cqsjjb/jjb-react-admin-component/ControlWrapper"; import ControlWrapper from "@cqsjjb/jjb-react-admin-component/ControlWrapper";
@ -98,7 +99,7 @@ const QualReview = (props) => {
width: 140, width: 140,
fixed: "right", fixed: "right",
render: (_, record) => ( render: (_, record) => (
<Space> <TableAction>
<Button type="link" size="small" onClick={() => props.history.push(`FilingDetail?id=${record.id}`)}> <Button type="link" size="small" onClick={() => props.history.push(`FilingDetail?id=${record.id}`)}>
查看 查看
</Button> </Button>
@ -107,7 +108,7 @@ const QualReview = (props) => {
审核 审核
</Button> </Button>
)} )}
</Space> </TableAction>
), ),
}, },
]; ];