on-site confirm

dev_1.2
luotaiqian 2026-07-28 13:43:22 +08:00
parent 7aa52f77fe
commit 6a549f5b71
1 changed files with 16 additions and 2 deletions

View File

@ -11,6 +11,7 @@ import {
DatePicker,
Flex,
Tag,
Radio,
} from "antd";
import dayjs from "dayjs";
import { tools } from "@cqsjjb/jjb-common-lib";
@ -298,14 +299,15 @@ const EvalProjectCreate = (props) => {
/>
</Form.Item>
</Col>
</Row>
<Row gutter={24}>
<Col span={12}>
<Form.Item
name="industryCode"
label="所属行业"
rules={[{ required: true, message: "请选择所属行业" }]}
>
<Select placeholder="请选择" allowClear>
<Select placeholder="请选择" allowClear>
{QUALIFICATION_INDUSTRY_OPTIONS.map((opt) => (
<Select.Option key={opt.value} value={opt.value}>
{opt.label}
@ -314,6 +316,18 @@ const EvalProjectCreate = (props) => {
</Select>
</Form.Item>
</Col>
<Col span={12}>
<Form.Item
name="is_statutory"
label="是否法定项目"
rules={[{ required: true, message: "请选择是否法定项目" }]}
>
<Radio.Group>
<Radio value={true}></Radio>
<Radio value={false}></Radio>
</Radio.Group>
</Form.Item>
</Col>
</Row>
</Card>