查看详情 准入部门与评审专家

This commit is contained in:
孙景学
2025-07-16 13:53:43 +08:00
parent d8fe473348
commit 47e0380be5
13 changed files with 80 additions and 59 deletions

View File

@ -0,0 +1,21 @@
import React, { useEffect, useState } from 'react';
import { Select } from 'antd';
interface options {
label: string;
value: string;
}
const AdmissionTypeSelect = () => {
const [options, setOptions] = useState<options[]>([]);
useEffect(() => {
setOptions([
{ label: '线上准入', value: 'online' },
{ label: '线下准入', value: 'offline' },
{ label: '零星采购/应急采购/个人供应商', value: 'scattered' },
])
}, []);
return <Select style={{ width: 150 }} placeholder="请选择准入方式" options={options} allowClear />;
};
export default AdmissionTypeSelect;