Browse Source

fix(compiler): fixed

shylock 1 năm trước cách đây
mục cha
commit
4e1fbfb612
1 tập tin đã thay đổi với 11 bổ sung11 xóa
  1. 11 11
      src/pages/Infrared/remote/edit.tsx

+ 11 - 11
src/pages/Infrared/remote/edit.tsx

@@ -209,17 +209,6 @@ const Edit: React.FC<userEditPros> = (props) => {
               <InputNumber placeholder="请输入控制编码" style={{ width: '100%' }} />
             </Form.Item>
           </Col>
-          <Col span={24}>
-            <Form.Item
-              {...formItemLayout}
-              name="remote_map"
-              label="编码对应文件名称"
-              rules={[{ required: true, message: '请输入编码对应文件名称' }]}
-              initialValue={detailData?.remote_map || ''}
-            >
-              <Input placeholder="请输入编码对应文件名称" readOnly />
-            </Form.Item>
-          </Col>
           <Col span={24}>
             <Form.Item
               {...formItemLayout}
@@ -234,6 +223,17 @@ const Edit: React.FC<userEditPros> = (props) => {
               </Upload>
             </Form.Item>
           </Col>
+          <Col span={24}>
+            <Form.Item
+              {...formItemLayout}
+              name="remote_map"
+              label="编码对应文件名称"
+              rules={[{ required: true, message: '请输入编码对应文件名称' }]}
+              initialValue={detailData?.remote_map || ''}
+            >
+              <Input placeholder="请输入编码对应文件名称" readOnly />
+            </Form.Item>
+          </Col>
         </Row>
       </Form>
     </Modal>