paper
parent
a9a4f90cb9
commit
f258d6676a
|
|
@ -11,7 +11,7 @@ import {
|
||||||
Table,
|
Table,
|
||||||
message,
|
message,
|
||||||
} from "antd";
|
} from "antd";
|
||||||
import { ArrowLeftOutlined, PlusOutlined } from "@ant-design/icons";
|
import { PlusOutlined } from "@ant-design/icons";
|
||||||
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
|
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
|
||||||
import TableAction from "@cqsjjb/jjb-react-admin-component/TableAction";
|
import TableAction from "@cqsjjb/jjb-react-admin-component/TableAction";
|
||||||
import ControlWrapper from "@cqsjjb/jjb-react-admin-component/ControlWrapper";
|
import ControlWrapper from "@cqsjjb/jjb-react-admin-component/ControlWrapper";
|
||||||
|
|
@ -160,21 +160,13 @@ function PaperQuestionPage(props) {
|
||||||
<PageLayout
|
<PageLayout
|
||||||
title={`试卷试题管理${paperName ? ` - ${paperName}` : ""}`}
|
title={`试卷试题管理${paperName ? ` - ${paperName}` : ""}`}
|
||||||
extra={
|
extra={
|
||||||
<>
|
<Button
|
||||||
<Button
|
type="primary"
|
||||||
icon={<ArrowLeftOutlined />}
|
icon={<PlusOutlined />}
|
||||||
onClick={() => props.history.push("../List")}
|
onClick={() => setAddOpen(true)}
|
||||||
>
|
>
|
||||||
返回
|
新增试题
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
|
||||||
type="primary"
|
|
||||||
icon={<PlusOutlined />}
|
|
||||||
onClick={() => setAddOpen(true)}
|
|
||||||
>
|
|
||||||
新增试题
|
|
||||||
</Button>
|
|
||||||
</>
|
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<SearchForm
|
<SearchForm
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue