Browse Source

完善opc

hfxc226 2 years ago
parent
commit
ce5527d55a
1 changed files with 15 additions and 15 deletions
  1. 15 15
      src/views/remote/opc/modules/BaseForm.vue

+ 15 - 15
src/views/remote/opc/modules/BaseForm.vue

@@ -241,6 +241,21 @@
               v-decorator="['imgYPosition', {initialValue:100, rules: [{required: true, message: '图片y轴位置不能为空'}]}]"/>
           </a-form-item>
         </row-item>
+        <row-item>
+
+          <a-form-item
+            label="量程上限"
+            :labelCol="BaseTool.Constant.labelCol"
+            :wrapperCol="BaseTool.Constant.wrapperCol"
+          >
+            <a-input-number
+              style="width: 100%"
+              :min="0"
+              :formatter="BaseTool.Amount.formatter"
+              :parser="BaseTool.Amount.parser"
+              v-decorator="['high', {initialValue:100,rules: [{required: false, message: '量程上限不能为空'}]}]"/>
+          </a-form-item>
+        </row-item>
         <row-item>
 
           <a-form-item
@@ -313,21 +328,6 @@
             </a-tag>
           </a-form-item>
         </row-item>
-        <row-item>
-
-          <a-form-item
-            label="量程上限"
-            :labelCol="BaseTool.Constant.labelCol"
-            :wrapperCol="BaseTool.Constant.wrapperCol"
-          >
-            <a-input-number
-              style="width: 100%"
-              :min="0"
-              :formatter="BaseTool.Amount.formatter"
-              :parser="BaseTool.Amount.parser"
-              v-decorator="['high', {initialValue:100,rules: [{required: false, message: '量程上限不能为空'}]}]"/>
-          </a-form-item>
-        </row-item>
         <row-item>
 
           <a-form-item