|
|
|
@ -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=" 下载授权" 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=" 优先级" style={formItemSty}>
|
|
|
|
|
<Select style={{ width: 260 }} onChange={(e) => { }} options={[
|
|
|
|
|
<Select style={{ width: 260 }} placeholder="请选择优先级" onChange={(e) => { }} options={[
|
|
|
|
|
{ label: '普通', value: '普通' },
|
|
|
|
|
{ label: '特急', value: '特急' },
|
|
|
|
|
{ label: '紧急', value: '紧急' }
|
|
|
|
|