给select添加输入提示

master_basic
鲁誉程 11 months ago
parent f4359683b6
commit 98ff95cacc

@ -128,16 +128,20 @@ export default function Page() {
</Form.Item>
{/* 密钥种类字段未知 未对接字段 */}
{/* <Form.Item name="keyType" label="" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
{ label: '1管理密销', value: 1 },
{ label: '2用户密钥', value: 2 },
{ label: '3用户密钥', value: 3 }
]} />
<Select
placeholder="请选择密钥种类"
style={{ width: 260 }}
onChange={(e) => { }}
options={[
{ label: '1管理密销', value: 1 },
{ label: '2用户密钥', value: 2 },
{ label: '3用户密钥', value: 3 }
]} />
</Form.Item> */}
<Form.Item name="productName" label="产品名称" style={formItemSty} rules={[
{ required: true, message: '请选择产品名称' }
]}>
<Select style={{ width: 260 }} placeholder={'请选择'} onChange={(e) => { }} options={selectData.productName} />
<Select style={{ width: 260 }} placeholder={'请选择产品名称'} onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="productNum" label="产品编号" style={formItemSty} rules={[
{ required: true, message: '请选择产品编号' }
@ -147,7 +151,7 @@ export default function Page() {
<Form.Item name="askType" label="申请类型" style={formItemSty} rules={[
{ required: true, message: '请选择申请类型' }
]}>
<Select style={{ width: 260 }} placeholder={'请选择'} onChange={(e) => { }} options={selectData.publisherType} />
<Select style={{ width: 260 }} placeholder={'请选择申请类型'} onChange={(e) => { }} options={selectData.publisherType} />
</Form.Item>
<div className='flex_aiC'>
<Form.Item name="applyNum" label="申请数量" style={{ marginBottom: 30 }} rules={[

@ -33,14 +33,14 @@ export default function Page() {
<div className='pd20' style={{ paddingBottom: 30 }}>
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="carrierType" label="载体类型" style={formItemSty} rules={[{ required: true, message: '请选择载体类型' }]}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={[
{ label: '软盘', value: 1 },
{ label: '移动盘', value: 2 },
{ label: '光盘', value: 3 },
]} />
</Form.Item>
<Form.Item name="carrierModel" label="载体型号" style={formItemSty} rules={[{ required: true, message: '请选择载体型号' }]}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择载体型号" onChange={(e) => { }} options={[
{ label: '三寸', value: 1 }
]} />
</Form.Item>

@ -38,7 +38,7 @@ export default function Page() {
<div className='flex_aiC mb20' >
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260 }} placeholder="请选择发往单位" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<Table
@ -59,7 +59,7 @@ export default function Page() {
<div className='mb20 flex_aiC' >
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder="请选择发往单位" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<ButtonComp text={'查询'} onClick={() => { }} />
</div>

@ -182,10 +182,10 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="productName" label="产品名称" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.productName} />
<Select style={{ width: 260 }} placeholder="请选择产品名称" onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="carrierType" label="载体类型" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierType} />
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={selectData.carrierType} />
</Form.Item>
{/* <Form.Item name="aaa" label="" style={formItemSty}>
<Input style={{ width: 260 }} />
@ -195,24 +195,24 @@ export default function Page() {
</Form.Item>
<div className='flex_aiC'>
<Form.Item name="carrierNumber" label="载体型号" style={{ marginBottom: 30 }}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierNumber} />
<Select style={{ width: 260 }} placeholder="请选择载体型号" onChange={(e) => { }} options={selectData.carrierNumber} />
</Form.Item>
<ButtonComp style={{ marginBottom: 30 }} text={'查询'} onClick={() => form.submit()} />
</div>
{/* <Form.Item name="aaa" label="&nbsp;&nbsp;&nbsp;&nbsp;" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择下载授权" onChange={(e) => { }} options={[
{ label: '已授权', value: '已授权' },
{ label: '未授权', value: '未授权' }
]} />
</Form.Item>
<Form.Item name="systemName" label="目的系统" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[]} />
<Select style={{ width: 260 }} placeholder="请选择目的系统" onChange={(e) => { }} options={[]} />
</Form.Item>
<Form.Item name="quantity" label="配发数量" style={formItemSty}>
<Input style={{ width: 260 }} type='number' min={0} />
</Form.Item>
<Form.Item name="aaa" label="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;优先级" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择优先级" onChange={(e) => { }} options={[
{ label: '普通', value: '普通' },
{ label: '特急', value: '特急' },
{ label: '紧急', value: '紧急' }

@ -153,19 +153,19 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="productName" label="产品名称" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.productName} />
<Select style={{ width: 260 }} placeholder="请选择产品名称" onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="carrierType" label="载体类型" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierType} />
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={selectData.carrierType} />
</Form.Item>
<Form.Item name="carrierNumber" label="载体型号" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierNumber} />
<Select style={{ width: 260 }} placeholder="请选择载体型号" onChange={(e) => { }} options={selectData.carrierNumber} />
</Form.Item>
<Form.Item name="publisherType" label="发布方式" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.publisherType} />
<Select style={{ width: 260 }} placeholder="请选择发布方式" onChange={(e) => { }} options={selectData.publisherType} />
</Form.Item>
{/* <Form.Item name="aaa" label="" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[]} />
<Select style={{ width: 260 }} placeholder="请选择目的系统" onChange={(e) => { }} options={[]} />
</Form.Item> */}
</Form>

@ -163,7 +163,7 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
{/* <Form.Item name="keyType" label="" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择密钥种类" onChange={(e) => { }} options={[
{ label: '全部', value: '' },
{ label: '1管理密销', value: 1 },
{ label: '2用户密钥', value: 2 },
@ -171,16 +171,16 @@ export default function Page() {
]} />
</Form.Item> */}
<Form.Item name="productName" label="产品名称" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.productName} />
<Select style={{ width: 260 }} placeholder="请选择产品名称" onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="carrierType" label="载体类型" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierType} />
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={selectData.carrierType} />
</Form.Item>
<Form.Item name="carrierNumber" label="载体型号" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierNumber} />
<Select style={{ width: 260 }} placeholder="请选择载体型号" onChange={(e) => { }} options={selectData.carrierNumber} />
</Form.Item>
{/* <Form.Item name="orderDirection" label="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择来源" onChange={(e) => { }} options={[
{ label: '全部', value: '' },
{ label: '来自产品1', value: 1 },
{ label: '来自产品2', value: 2 },

@ -51,10 +51,10 @@ export default function Page() {
<Input style={{ width: 260 }} />
</Form.Item>
<Form.Item name="aaa" label="载体类型" style={formItemSty} rules={[{ required: true, message: '请选择载体类型' }]}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={typeList} />
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={typeList} />
</Form.Item>
<Form.Item name="aaa" label="载体型号" style={formItemSty} rules={[{ required: true, message: '请选择载体型号' }]}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[{ label: '三寸', value: 1 }]} />
<Select style={{ width: 260 }} placeholder="请选择载体型号" onChange={(e) => { }} options={[{ label: '三寸', value: 1 }]} />
</Form.Item>
<Form.Item name="filePath" label="文件路径" style={{ width: '80%', marginBottom: 20 }} rules={[{ required: true, message: '请选择文件路径' }]}>
<div style={{ display: 'flex' }}>
@ -65,7 +65,7 @@ export default function Page() {
</div>
</Form.Item>
<Form.Item name="aaa" label="载体位置" style={formItemSty} rules={[{ required: true, message: '请选择载体位置' }]}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
<Select style={{ width: 260 }} placeholder="请选择载体位置" onChange={(e) => { }} options={[
{ label: '1', value: 1 },
{ label: '2', value: 2 }
]} />

@ -183,17 +183,17 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="productName" label="产品名称" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.productName} />
<Select style={{ width: 260 }} placeholder="请选择产品名称" onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="productNum" label="产品编号" style={formItemSty}>
<Input style={{ width: 260 }} placeholder={'请输入'} />
<Input style={{ width: 260 }} placeholder={'请选择产品编号'} />
</Form.Item>
<Form.Item name="carrierType" label="载体类型" style={formItemSty}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierType} />
<Select style={{ width: 260 }} placeholder={'请选择载体类型'} onChange={(e) => { }} options={selectData.carrierType} />
</Form.Item>
<div className='flex_aiC'>
<Form.Item name="carrierNumber" label="载体型号" style={{ marginBottom: 30 }}>
<Select style={{ width: 260 }} onChange={(e) => { }} options={selectData.carrierNumber} />
<Select style={{ width: 260 }} placeholder={'请选择载体型号'} onChange={(e) => { }} options={selectData.carrierNumber} />
</Form.Item>
<ButtonComp style={{ marginBottom: 30 }} text={'查询'} onClick={() => form.submit()} />
</div>

@ -74,16 +74,16 @@ export default function Page() {
<div className='flex_aiC mb20 pt10'>
<div className='mr16'></div>
<Select style={{ width: 120, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 120, marginRight: 20 }} placeholder={'请选择检索项'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<Select style={{ width: 120, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 120, marginRight: 20 }} placeholder={'请选择检索项'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<Select style={{ width: 120, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 120, marginRight: 20 }} placeholder={'请选择设备型号'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<Select style={{ width: 120, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 120, marginRight: 20 }} placeholder={'请选择管理代理'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<ButtonComp text={'查找'} onClick={() => { }} />
</div>

@ -50,10 +50,10 @@ export default function Page() {
<div className='flex_aiC mt20 mb20'>
<div className='mr16'></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder={'请选择密钥类型'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder={'请选择所属网络'} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<DatePicker style={{ width: 260 }} />

@ -30,14 +30,14 @@ export default function Page() {
<div className='flex_aiC mb20' >
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260 }} placeholder="请选择发往单位" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='mb20' style={{ height: 1, background: '#EDEDED' }}></div>
<div className='mb20 flex_aiC' >
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder="请选择单号" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<ButtonComp text={'查询'} onClick={() => { }} />
</div>

@ -42,10 +42,10 @@ export default function Page() {
<div className='flex_aiC mt20 mb20'>
<div className='mr16'></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder="请选择密钥类型" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<Select style={{ width: 260, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginRight: 20 }} placeholder="请选择所属网络" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'></div>
<DatePicker style={{ width: 260, marginRight: 20 }} />
@ -56,7 +56,7 @@ export default function Page() {
<DatePicker style={{ width: 260, marginRight: 20 }} />
<div className='mr16'></div>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260 }} placeholder="请选择应用系统" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='mb10'></div>

@ -27,7 +27,7 @@ export default function Page() {
<div></div>
<div className='flex_aiC mt30 mb30'>
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择所属网络" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='flex_jB'>

@ -130,7 +130,7 @@ export default function Page() {
]}/>
</Form.Item>
<Form.Item style={{ width: 60 }} name="version" label="版本">
<Select style={{ width: 80 }} />
<Select style={{ width: 80 }} placeholder="请选择"/>
</Form.Item>
</div>
<div className='flex_aiC'>

@ -58,20 +58,20 @@ export default function Page() {
{/* 中 */}
<div className='flex_aiC_jB' style={{ width: '30%' }}>
<div style={{ width: '45%' }}>
<div className='mb10'></div>
<div className='mb10'></div>
<Input style={mr30} />
<div className='mb10 mt20'></div>
<div className='mb10 mt20'></div>
<Input style={mr30} />
<div className='mb10 mt20'></div>
<div className='mb10 mt20'>IP</div>
<Input style={mr30} />
</div>
<div style={{ width: '45%' }}>
<div className='mb10'></div>
<Select style={{ width: '100%' }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mb10 mt20'></div>
<Select style={{ width: '100%' }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mb10 mt20'></div>
<Select style={{ width: '100%' }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mb10'></div>
<Select style={{ width: '100%' }} placeholder="请选择设备型号" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mb10 mt20'></div>
<Select style={{ width: '100%' }} placeholder="请选择所属网络" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mb10 mt20'></div>
<Select style={{ width: '100%' }} placeholder="请选择接入标志" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
</div>

@ -68,7 +68,7 @@ export default function Page() {
<div className='flex_aiC mt30 mb30'>
<div className='mr16'></div>
<Select style={{ width: 260, margin: '0 20px 0 15px' }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, margin: '0 20px 0 15px' }} placeholder="请选择所属网络" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div className='mr16'>IP</div>
<Input style={{ width: 260, marginRight: 20 }} />
<div className='mr16'>IP</div>
@ -81,12 +81,12 @@ export default function Page() {
<div className='mr16'>IP</div>
<Input style={{ width: 260, marginRight: 20 }} />
<div className='mr16'></div>
<Select style={{ width: 260 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260 }} placeholder="请选择默认通联关系" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='flex_aiC mt20 mb20'>
<div className='mr16'></div>
<Select style={{ width: 260, marginLeft: 27 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 260, marginLeft: 27 }} placeholder="请选择网闸号" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='flex_jE mt20 mb20'>

@ -94,7 +94,7 @@ export default function Page() {
<div className='mb20'></div>
<div className='mb20 mt20 flex_aiC'>
<div className='mr16'></div>
<Select style={{ width: 260 }} value={paramsId} onChange={(e) => {
<Select style={{ width: 260 }} placeholder="请选择参数集合" value={paramsId} onChange={(e) => {
setParamsId(e)
}} options={paramsList} />
</div>

@ -68,13 +68,13 @@ export default function Page() {
<div className='flex_aiC mt30 mb30'>
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择目的系统" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择配发方式" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200 }} placeholder="请选择载体类型" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<Table

@ -67,13 +67,13 @@ export default function Page() {
<div className='flex_aiC mt30 mb30'>
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择目的系统" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择配发方式" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200 }} placeholder="请选择载体类型" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
<div className='mb30' style={{ height: 1, background: '#EDEDED' }}></div>
@ -82,10 +82,10 @@ export default function Page() {
<div></div>
<div className='flex_aiC'>
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200, marginRight: 20 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200, marginRight: 20 }} placeholder="请选择设备型号" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<div style={{ marginRight: 12 }}></div>
<Select style={{ width: 200 }} onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
<Select style={{ width: 200 }} placeholder="请选择参数中文名称" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>
</div>
<Table

@ -141,7 +141,7 @@ export default function Page() {
<Input style={{ width: 200 }} />
</Form.Item>
<Form.Item name="argsStyle" label="参数格式" style={formItemSty}>
<Select style={{ width: 200 }} onChange={(e) => { }} options={[
<Select style={{ width: 200 }} placeholder="请选择参数格式" onChange={(e) => { }} options={[
{ label: '全部', value: '' },
{ label: '一体化格式参数', value: '一体化格式参数' },
{ label: '统型完善格式参数', value: '统型完善格式参数' },
@ -149,7 +149,7 @@ export default function Page() {
]} />
</Form.Item>
<Form.Item name="argsType" label="参数类型" style={formItemSty}>
<Select style={{ width: 200 }} onChange={(e) => { }} options={[
<Select style={{ width: 200 }} placeholder="请选择参数类型" onChange={(e) => { }} options={[
{ label: '全部', value: '' },
{ label: '初始参数导入', value: '初始参数导入' },
{ label: '非初始参数导入', value: '非初始参数导入' }

Loading…
Cancel
Save