给input添加输入提示

master_basic
鲁誉程 1 year ago
parent 98ff95cacc
commit e083baa1ac

@ -71,7 +71,7 @@ const CoreSystemEntrance: FC<PageProps> = ({ }) => {
<div>
<div style={{ display: 'flex', alignItems: 'center' }}>
<div style={{ width: 120, marginRight: 16 }}>PIN</div>
<Input value={pin} onChange={(e) => setPin(e.target.value)} onPressEnter={() => submit()} />
<Input placeholder="请输入PIN码" value={pin} onChange={(e) => setPin(e.target.value)} onPressEnter={() => submit()} />
</div>
<div className='mt20'>{key}PIN</div>
</div>

@ -31,11 +31,11 @@ export default function Page() {
name="ipAddress"
label="本地GLQ后端IP"
rules={[
{ required: true, message: '请输入 IP 地址' },
{ required: true, message: '请输入本地GLQ后端IP' },
{ validator: validateIPAddress },
]}
>
<Input style={{ width: '560px' }} />
<Input placeholder="请输入本地GLQ后端IP" style={{ width: '560px' }} />
</Form.Item>
</Form>
<div className={styles.btn_warp}>

@ -109,7 +109,7 @@ export default function Page() {
{ required: true, message: '请输入设备标识' },
]}
>
<Input style={{ width: '560px' }} />
<Input placeholder="请输入设备标识" style={{ width: '560px' }} />
</Form.Item>
</Form>
<div className={styles.btn_warp}>

@ -53,7 +53,7 @@ export default function Page() {
{ validator: validateIPAddress }
]}
>
<Input style={{ width: '560px' }} />
<Input placeholder="请输入IP地址" style={{ width: '560px' }} />
</Form.Item>
<Form.Item
name="mask"
@ -62,7 +62,7 @@ export default function Page() {
{ required: true, message: '请输入子网掩码' }
]}
>
<Input style={{ width: '560px' }} />
<Input placeholder="请输入子网掩码" style={{ width: '560px' }} />
</Form.Item>
<Form.Item
name="defaultGateway"
@ -71,7 +71,7 @@ export default function Page() {
{ required: true, message: '请输入默认网关' },
]}
>
<Input style={{ width: '560px' }} />
<Input placeholder="请输入默认网关" style={{ width: '560px' }} />
</Form.Item>
</Form>
<div className={styles.btn_warp}>

@ -84,7 +84,7 @@ export default function Page() {
{ required: true, message: '请输入普密对外服务器IP' },
{ validator: validateIPAddress }
]} >
<Input style={{ width: '280px' }} />
<Input placeholder="请输入普密对外服务器IP" style={{ width: '280px' }} />
</Form.Item>
<ButtonComp style={{ marginRight: 20 }} text={'获取普密信息'} onClick={() => form.submit()} />
</Form>

@ -72,19 +72,19 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mb20'>
<Form.Item name="serviceName" label="服务名称" rules={[{ required: true, message: '请输入服务名称' }]} >
<Input style={{ width: '200px' }} />
<Input placeholder="请输入服务名称" style={{ width: '200px' }} />
</Form.Item>
<Form.Item name="serviceIP" label="服务IP" rules={[
{ required: true, message: '请输入服务IP' },
{ validator: validateIPAddress}
]} >
<Input style={{ width: '200px' }} />
<Input placeholder="请输入服务IP" style={{ width: '200px' }} />
</Form.Item>
<Form.Item name="servicePort" label="服务端口" rules={[
{ required: true, message: '请输入服务端口' },
{ validator: validatePort }
]} >
<Input style={{ width: '200px' }} />
<Input placeholder="请输入服务端口" style={{ width: '200px' }} />
</Form.Item>
<ButtonComp text={'提交'} onClick={() => form.submit()} />
</Form>

@ -98,7 +98,7 @@ export default function Page() {
{ required: true, message: '请输入单位名称' },
]}
>
<Input style={{ width: '630px' }} />
<Input placeholder="请输入单位名称" style={{ width: '630px' }} />
</Form.Item>
<Form.Item
name="deviceName"
@ -107,7 +107,7 @@ export default function Page() {
{ required: true, message: '请输入设备名称' },
]}
>
<Input style={{ width: '630px' }} />
<Input placeholder="请输入设备名称" style={{ width: '630px' }} />
</Form.Item>
<div style={{ display: 'flex' }}>
<Form.Item
@ -118,7 +118,7 @@ export default function Page() {
{ validator: validateIPAddress }
]}
>
<Input style={{ width: '250px', marginRight: 20 }} />
<Input placeholder="请输入设备IP" style={{ width: '250px', marginRight: 20 }} />
</Form.Item>
<Form.Item
name="deviceId"
@ -127,7 +127,7 @@ export default function Page() {
{ required: true, message: '请输入设备ID' },
]}
>
<Input style={{ width: '250px' }} />
<Input placeholder="请输入设备ID" style={{ width: '250px' }} />
</Form.Item>
</div>
<div style={{ display: 'flex' }}>

@ -86,7 +86,7 @@ export default function Page() {
// { required: true, message: '请输入初装密钥' },
// ]}
>
<Input style={{ width: '560px' }} disabled={true} />
<Input placeholder="请输入初装密钥" style={{ width: '560px' }} disabled={true} />
</Form.Item>
<Form.Item
name="algorithmParam"
@ -95,7 +95,7 @@ export default function Page() {
// { required: true, message: '请输入算法参数' },
// ]}
>
<Input style={{ width: '560px' }} disabled={true} />
<Input placeholder="请输入算法参数" style={{ width: '560px' }} disabled={true} />
</Form.Item>
<Form.Item
name="paramCode"
@ -104,7 +104,7 @@ export default function Page() {
// { required: true, message: '请输入参数自检码' },
// ]}
>
<Input style={{ width: '560px' }} disabled={true} />
<Input placeholder="请输入参数自检码" style={{ width: '560px' }} disabled={true} />
</Form.Item>
</Form>
<div className={styles.btn_warp}>

@ -57,15 +57,15 @@ const DeviceInstall: FC<PageProps> = ({ }) => {
<div className={styles.title2}></div>
<div className={styles.flex}>
<div></div>
<Input value={fileInfo.secret} disabled={true} />
<Input placeholder="请输入初装密钥" value={fileInfo.secret} disabled={true} />
</div>
<div className={styles.flex}>
<div></div>
<Input value={fileInfo.algorithm} disabled={true} />
<Input placeholder="请输入算法参数" value={fileInfo.algorithm} disabled={true} />
</div>
<div className={styles.flex}>
<div></div>
<Input value={fileInfo.selfInspectionCode} disabled={true} />
<Input placeholder="请输入参数自检码" value={fileInfo.selfInspectionCode} disabled={true} />
</div>
<div className='flex_jE' style={{ margin: '30px 0' }}>

@ -144,9 +144,9 @@ export default function Page() {
<Select style={{ width: 260 }} placeholder={'请选择产品名称'} onChange={(e) => { }} options={selectData.productName} />
</Form.Item>
<Form.Item name="productNum" label="产品编号" style={formItemSty} rules={[
{ required: true, message: '请选择产品编号' }
{ required: true, message: '请输入产品编号' }
]}>
<Input style={{ width: 260 }} placeholder={'请输入'} />
<Input placeholder="请输入产品编号" style={{ width: 260 }} />
</Form.Item>
<Form.Item name="askType" label="申请类型" style={formItemSty} rules={[
{ required: true, message: '请选择申请类型' }
@ -157,7 +157,7 @@ export default function Page() {
<Form.Item name="applyNum" label="申请数量" style={{ marginBottom: 30 }} rules={[
{ required: true, message: '请输入申请数量' }
]}>
<Input style={{ width: 260 }} placeholder={'请输入'} type='number' min={1} />
<Input placeholder="请输入申请数量" style={{ width: 260 }} type='number' min={1} />
</Form.Item>
<ButtonComp style={{ marginBottom: 30 }} text={'申请密钥体'} onClick={() => form.submit()} />
</div>

@ -46,7 +46,7 @@ export default function Page() {
</Form.Item>
<Form.Item name="filePath" label="文件路径" style={{ width: '80%', marginBottom: 20 }} rules={[{ required: true, message: '请选择文件路径' }]}>
<div style={{ display: 'flex' }}>
<Input style={{ width: 480 }} disabled={true}/>
<Input style={{ width: 480 }} disabled={true}/>
<Upload {...props} showUploadList={false}>
<ButtonComp style={{ marginLeft: 20 }} type={'cancel'} text={'选择'} onClick={() => { }} />
</Upload>
@ -62,18 +62,18 @@ export default function Page() {
<div className='pd20'>
<div className='flex_aiC'>
<div style={{ marginRight: 30 }}></div>
<Input style={{ width: 260 }} disabled={true} />
<Input placeholder="请输入产品名称" style={{ width: 260 }} disabled={true} />
<div className='ml20' style={{ marginRight: 30 }}></div>
<Input style={{ width: 260 }} disabled={true} />
<Input placeholder="请输入产品编号" style={{ width: 260 }} disabled={true} />
</div>
<div className='flex_aiC mt20'>
<div className='mr16' ></div>
<Input style={{ width: 260 }} disabled={true} />
<Input placeholder="请输入发起者标识" style={{ width: 260 }} disabled={true} />
<div className='mr16 ml20' ></div>
<Input style={{ width: 260 }} disabled={true} />
<Input placeholder="请输入接受者标识" style={{ width: 260 }} disabled={true} />
</div>
</div>
</ContentWarp>

@ -80,7 +80,7 @@ export default function Page() {
<div className='mb20 mt20 flex_aiC' >
<div style={{ marginRight: 12 }}></div>
<Input style={{ width: 260, marginRight: 50 }} />
<Input placeholder="请输入发往单位" style={{ width: 260, marginRight: 50 }} />
<div>--</div>
</div>

@ -188,10 +188,10 @@ export default function Page() {
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={selectData.carrierType} />
</Form.Item>
{/* <Form.Item name="aaa" label="" style={formItemSty}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入可下载数量" style={{ width: 260 }} />
</Form.Item> */}
<Form.Item name="productNum" label="产品编号" style={formItemSty}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入产品编号" style={{ width: 260 }} />
</Form.Item>
<div className='flex_aiC'>
<Form.Item name="carrierNumber" label="载体型号" style={{ marginBottom: 30 }}>
@ -209,7 +209,7 @@ export default function Page() {
<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} />
<Input placeholder="请输入配发数量" 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 }} placeholder="请选择优先级" onChange={(e) => { }} options={[

@ -251,7 +251,7 @@ export default function Page() {
<div className='mb20 mt10'>
<div>
<span style={{ marginRight: 4, color: 'red' }}>*</span>
<Input style={{ width: 300, marginLeft: 16 }}
<Input placeholder="请输入产品编号" style={{ width: 300, marginLeft: 16 }}
value={productNumber}
onChange={(e) => setProductNumber(e.target.value)}
/>
@ -264,7 +264,7 @@ export default function Page() {
<div className='mb10'></div>
<div className='flex_aiC'>
<span style={{ marginRight: 4, color: 'red' }}>*</span>
<Input style={{ width: 300, marginLeft: 16 }} value={fileInfo?.name || ''} disabled={true} />
<Input style={{ width: 300, marginLeft: 16 }} value={fileInfo?.name || ''} disabled={true} />
<Upload {...props} showUploadList={false}>
<ButtonComp style={{ marginLeft: 20 }} text={'选择'} onClick={() => { }} />
</Upload>

@ -42,13 +42,13 @@ export default function Page() {
<div className='pd20 pb100'>
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
<Form.Item name="aaa" label="产品名称" style={formItemSty} rules={[{ required: true, message: '请输入产品名称' }]}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入产品名称" style={{ width: 260 }} />
</Form.Item>
<Form.Item name="aaa" label="产品编号" style={formItemSty} rules={[{ required: true, message: '请输入产品编号' }]}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入产品编号" style={{ width: 260 }} />
</Form.Item>
<Form.Item name="aaa" label="载体编号" style={formItemSty} rules={[{ required: true, message: '请选输入载体编号' }]}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入载体编号" style={{ width: 260 }} />
</Form.Item>
<Form.Item name="aaa" label="载体类型" style={formItemSty} rules={[{ required: true, message: '请选择载体类型' }]}>
<Select style={{ width: 260 }} placeholder="请选择载体类型" onChange={(e) => { }} options={typeList} />

@ -186,7 +186,7 @@ export default function Page() {
<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 placeholder="载体类型" style={{ width: 260 }} />
</Form.Item>
<Form.Item name="carrierType" label="载体类型" style={formItemSty}>
<Select style={{ width: 260 }} placeholder={'请选择载体类型'} onChange={(e) => { }} options={selectData.carrierType} />
@ -199,7 +199,7 @@ export default function Page() {
</div>
{/* <div className='flex_aiC'>
<Form.Item name="number" label="申请编号" style={{ marginBottom: 30 }}>
<Input style={{ width: 260 }} placeholder={'请输入'} />
<Input placeholder="请输入申请编号" style={{ width: 260 }} placeholder={'请输入'} />
</Form.Item>
<ButtonComp style={{ marginBottom: 30 }} text={'查询'} onClick={() => form.submit()} />
</div> */}

@ -193,14 +193,14 @@ export default function Page() {
<Form form={form} layout={'inline'} onFinish={onFinish} className='mt20'>
{/* <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.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>
<div className='flex_aiC'>
<Form.Item name="productNum" label="产品编号" style={{ marginBottom: 30 }}>
<Input style={{ width: 260 }} />
<Input placeholder="请输入产品编号" style={{ width: 260 }} />
</Form.Item>
{/* <ButtonComp style={{ marginBottom: 30 }} text={'添加'} onClick={() => form.submit()} /> */}
<ButtonComp style={{ marginBottom: 30 }} text={'查询'} onClick={() => form.submit()} />

@ -58,7 +58,7 @@ export default function Page() {
<div className='mb20 mt20 flex_aiC' >
<div style={{ marginRight: 12 }}></div>
<Input style={{ width: 260, marginRight: 50 }} />
<Input placeholder="请输入配发人" style={{ width: 260, marginRight: 50 }} />
<div>--</div>
</div>

@ -139,40 +139,40 @@ export default function Page() {
<div style={{ width: '50%', minWidth: 450 }}>
<div className='flex_fw'>
<Form.Item name="unitName" label="单位名称" rules={[{ required: true, message: '请输入单位名称' },]}>
<Input />
<Input placeholder="请输入单位名称" />
</Form.Item>
<ButtonComp text={'定位'} style={{ margin: '20px 0 0px 20px' }} onClick={() => { }} />
</div>
<div className='flex_aiC'>
<Form.Item name="sysName" label="系统名称" rules={[{ required: true, message: '请输入系统名称' },]}>
<Input />
<Input placeholder="请输入系统名称" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="deviceEntityId" label="实体标识" rules={[{ required: true, message: '请输入实体标识' },]}>
<Input />
<Input placeholder="请输入实体标识" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="deviceMarkId" label="310标识" rules={[{ required: true, message: '请输入310标识' },]}>
<Input />
<Input placeholder="请输入310标识" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="isolatorExternalIp" label="型隔离器外网IP" rules={[{ required: true, message: '请输入型隔离器外网IP' },]}>
<Input />
<Input placeholder="请输入型隔离器外网IP" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="managerArea" label="管理区域" rules={[{ required: true, message: '请输入管理区域' },]}>
<Input />
<Input placeholder="请输入管理区域" />
</Form.Item>
</div>
{
layer == 2 &&
<div className='flex_aiC'>
<Form.Item name="diskNumber" label="管理盘号" rules={[{ required: true, message: '请输入管理盘号' },]}>
<Input />
<Input placeholder="请输入管理盘号" />
</Form.Item>
<ButtonComp text={'选择'} style={{ margin: '20px 0 0px 20px' }} onClick={() => { }} />
</div>
@ -181,41 +181,41 @@ export default function Page() {
<div style={{ width: '50%', minWidth: 400 }}>
<div className='flex_aiC'>
<Form.Item name="telephone" label="电话号码" rules={[{ required: true, message: '请输入电话号码' },]}>
<Input />
<Input placeholder="请输入电话号码" />
</Form.Item>
</div>
{
layer == 1 && <>
<div className='flex_aiC'>
<Form.Item name="isolatorIntranetIp" label="型隔离器内网IP" rules={[{ required: true, message: '请输入型隔离器内网IP' },]}>
<Input />
<Input placeholder="请输入型隔离器内网IP" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="pwdServerIp" label="密钥编制服务器IP" rules={[{ required: true, message: '请输入密钥编制服务器IP' },]}>
<Input />
<Input placeholder="请输入请输入密钥编制服务器IP" />
</Form.Item>
</div>
</>
}
<div className='flex_aiC'>
<Form.Item name="contactsInfo" label="联系方式" rules={[{ required: true, message: '请输入联系方式' },]}>
<Input />
<Input placeholder="请输入联系方式" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="contacts" label="联系人" rules={[{ required: true, message: '请输入联系人' },]}>
<Input />
<Input placeholder="请输入请输入联系人" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="seatName" label="席位名称" rules={[{ required: true, message: '请输入席位名称' },]}>
<Input />
<Input placeholder="请输入席位名称" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="sysType" label="系统型号" rules={[{ required: true, message: '请输入系统型号' },]}>
<Input />
<Input placeholder="请输入系统型号" />
</Form.Item>
</div>
</div>

@ -108,7 +108,7 @@ export default function Page() {
<div style={{ width: '50%', minWidth: 450 }}>
<div className='flex_fw'>
<Form.Item name="unitName" label="单位名称" rules={[{ required: true, message: '请输入单位名称' }]}>
<Input />
<Input placeholder="请输入单位名称" />
</Form.Item>
<ButtonComp text={'定位'} style={{ margin: '20px 0 0px 20px' }} onClick={() => { }} />
</div>
@ -135,22 +135,22 @@ export default function Page() {
</div>
<div className='flex_aiC'>
<Form.Item name="deviceNumber" label="设备编号" rules={[{ required: true, message: '请输入设备编号' }]}>
<Input />
<Input placeholder="请输入设备编号" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="deviceEntityId" label="实体标识" rules={[{ required: true, message: '请输入实体标识' }]}>
<Input />
<Input placeholder="请输入实体标识" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="deviceMarkId" label="310标识" rules={[{ required: true, message: '请输入310标识' }]}>
<Input />
<Input placeholder="请输入310标识" />
</Form.Item>
</div>
<div className='flex_fw'>
<Form.Item name="diskNumber" label="管理盘号" rules={[{ required: true, message: '请输入管理盘号' }]}>
<Input />
<Input placeholder="请输入管理盘号" />
</Form.Item>
<ButtonComp text={'选择'} style={{ margin: '20px 0 0px 20px' }} onClick={() => { }} />
</div>
@ -170,22 +170,22 @@ export default function Page() {
</div>
<div className='flex_aiC'>
<Form.Item name="contacts" label="联系人" rules={[{ required: true, message: '请输入联系人' }]}>
<Input />
<Input placeholder="请输入联系人" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="contactsInfo" label="联系方式" rules={[{ required: true, message: '请输入联系方式' }]}>
<Input />
<Input placeholder="请输入联系方式" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="ip" label="IP地址" rules={[{ required: true, message: '请输入IP地址' }]}>
<Input />
<Input placeholder="请输入IP地址" />
</Form.Item>
</div>
<div className='flex_aiC'>
<Form.Item name="telephone" label="电话号码" rules={[{ required: true, message: '请输入电话号码' }]}>
<Input />
<Input placeholder="请输入电话号码" />
</Form.Item>
</div>
<div className='flex_aiC'>
@ -201,7 +201,7 @@ export default function Page() {
</div>
<div className='flex_aiC'>
<Form.Item name="seatName" label="席位名称" rules={[{ required: true, message: '请输入席位名称' }]}>
<Input />
<Input placeholder="请输入席位名称" />
</Form.Item>
</div>
</div>

@ -41,16 +41,16 @@ export default function Page() {
<div className='flex_aiC_jB' style={{ marginBottom: 70 }}>
<div style={{ width: '45%' }}>
<div className='mb10'></div>
<Input style={mr30} />
<Input placeholder="请输入单位名称" style={mr30} />
</div>
<div style={{ width: '45%' }}>
<div className='mb10'></div>
<Input style={mr30} />
<Input placeholder="请输入设备名称" style={mr30} />
</div>
</div>
<div>
<div className='mt20 mb10'></div>
<Input style={mr30} />
<Input placeholder="请输入实体标识" style={mr30} />
</div>
<div className='mt10' style={{ color: '#666666' }}></div>
</div>
@ -59,11 +59,11 @@ export default function Page() {
<div className='flex_aiC_jB' style={{ width: '30%' }}>
<div style={{ width: '45%' }}>
<div className='mb10'></div>
<Input style={mr30} />
<Input placeholder="请输入管理盘号" style={mr30} />
<div className='mb10 mt20'></div>
<Input style={mr30} />
<Input placeholder="请输入电话号码" style={mr30} />
<div className='mb10 mt20'>IP</div>
<Input style={mr30} />
<Input placeholder="请输入IP地址" style={mr30} />
</div>
<div style={{ width: '45%' }}>
<div className='mb10'></div>

@ -78,9 +78,9 @@ export default function Page() {
<div className='flex_aiC'>
<div className='mr16'>--</div>
<Input style={{width: 260, marginRight: 120}}/>
<Input placeholder="请输入" style={{width: 260, marginRight: 120}}/>
<div className='mr16'></div>
<Input style={{width: 260}}/>
<Input placeholder="请输入状态" style={{width: 260}}/>
<ButtonComp style={{ marginLeft: 40 }} text={'设置'} onClick={() => { }} />
</div>
</ContentWarp>

@ -70,16 +70,16 @@ export default function Page() {
<div className='mr16'></div>
<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 }} />
<Input placeholder="请输入隔离器外网IP" style={{ width: 260, marginRight: 20 }} />
<div className='mr16'>IP</div>
<Input style={{ width: 260 }} />
<Input placeholder="请输入对外服务器IP" style={{ width: 260 }} />
</div>
<div className='flex_aiC mt20 mb20'>
<div className='mr16'></div>
<Input style={{ width: 260, marginRight: 20 }} />
<Input placeholder="请输入执勤区名称" style={{ width: 260, marginRight: 20 }} />
<div className='mr16'>IP</div>
<Input style={{ width: 260, marginRight: 20 }} />
<Input placeholder="请输入隔离器内网IP" style={{ width: 260, marginRight: 20 }} />
<div className='mr16'></div>
<Select style={{ width: 260 }} placeholder="请选择默认通联关系" onChange={(e) => { }} options={[{ label: '选项1', value: 1 }]} />
</div>

@ -135,10 +135,10 @@ export default function Page() {
<div className='flex_aiC mt30 mb10'>
<Form form={form} layout={'inline'} onFinish={updataList}>
<Form.Item name="deviceType" label="设备型号" style={formItemSty}>
<Input style={{ width: 200 }} />
<Input placeholder="请输入设备型号" style={{ width: 200 }} />
</Form.Item>
<Form.Item name="argsName" label="参数名称" style={formItemSty}>
<Input style={{ width: 200 }} />
<Input placeholder="请输入参数名称" style={{ width: 200 }} />
</Form.Item>
<Form.Item name="argsStyle" label="参数格式" style={formItemSty}>
<Select style={{ width: 200 }} placeholder="请选择参数格式" onChange={(e) => { }} options={[

Loading…
Cancel
Save