|
@@ -235,6 +235,9 @@ class ModalImage extends React.Component {
|
235
|
235
|
<Form.Item label="使用面积" help="单位 ㎡">
|
236
|
236
|
{getFieldDecorator('insideArea')(<Input type="number" precision = '2' min='0.00' step='0.01'/>)}
|
237
|
237
|
</Form.Item>
|
|
238
|
+ <Form.Item label="权重" help="数值越大越靠前">
|
|
239
|
+ {getFieldDecorator('orderNo')(<Input type="number" />)}
|
|
240
|
+ </Form.Item>
|
238
|
241
|
<Form.Item style={{ width: '400px', margin: 'auto', display: 'flex', justifyContent: 'space-between' }}>
|
239
|
242
|
<Button type="primary" htmlType="submit">保存</Button>
|
240
|
243
|
|