408249787 vor 2 Jahren
Ursprung
Commit
8cc7c60e3a
1 geänderte Dateien mit 46 neuen und 2 gelöschten Zeilen
  1. 46 2
      src/views/remote/opc/modules/BaseForm.vue

+ 46 - 2
src/views/remote/opc/modules/BaseForm.vue

@@ -56,8 +56,10 @@
             label="点位"
             :labelCol="BaseTool.Constant.labelCol"
             :wrapperCol="BaseTool.Constant.wrapperCol"
+            :help="isExisting?'该点位已存在':''"
           >
             <a-input
+              @blur="checkPoint"
               v-decorator="['description', {rules: [{required: true, message: '描述不能为空'}]}]"/>
           </a-form-item>
         </row-item>
@@ -286,7 +288,7 @@
 
 <script>
 import pick from 'lodash.pick'
-import { addRemoteOpc, updateRemoteOpc } from '@/api/remote/opc'
+import { addRemoteOpc, updateRemoteOpc, fetchRemoteOpcByPositionNum } from '@/api/remote/opc'
 import SbInfoSelectModal from '@/views/sb/info/modules/SbInfoSelectModal'
 import { getSbPositionTree } from '@/api/sb/position'
 export default {
@@ -302,7 +304,8 @@ export default {
       treeData: [],
       yesNoMap: {},
       form: this.$form.createForm(this),
-      visible: false
+      visible: false,
+      isExisting: false
       // 下拉框map
     }
   },
@@ -410,6 +413,47 @@ export default {
       } else {
         this.$emit('ok')
       }
+    },
+    checkPoint (e) {
+      const { form: { setFieldsValue } } = this
+      fetchRemoteOpcByPositionNum({
+        positionNum: e.target.value
+      }).then(res => {
+        if (res.data === null) {
+          this.isExisting = false
+          this.modalTitle = '添加'
+          // this.form.resetFields()
+          return
+        }
+        this.modalTitle = '编辑'
+        // 日期处理
+        this.isExisting = true
+        this.$nextTick(() => {
+          setFieldsValue(Object.assign(pick(res.data, [
+            'id',
+            'sbId',
+            'sbName',
+            'positionNum',
+            'type',
+            'line',
+            'description',
+            'result',
+            'ratio',
+            'low',
+            'high',
+            'xPosition',
+            'yPosition',
+            'width',
+            'height',
+            'unit',
+            'avFlag',
+            'portFlag',
+            'createdFlag',
+            'positionFlag',
+            'remark'
+          ])))
+        })
+      })
     }
   }
 }