408249787 2 سال پیش
والد
کامیت
ca494f8171
2فایلهای تغییر یافته به همراه27 افزوده شده و 11 حذف شده
  1. 12 1
      src/views/opc/Opc.vue
  2. 15 10
      src/views/remote/opc/modules/BaseForm.vue

+ 12 - 1
src/views/opc/Opc.vue

@@ -1,5 +1,5 @@
 <template>
-  <div class="main">
+  <div class="main" @click.ctrl="handleClickAdd">
     <img :src="imgUrl" width="1920px" alt="">
     <div class="icon" style="right:20px">
       <a-button type="primary" icon="appstore" size="large" @click="visibleRight=true" />
@@ -170,6 +170,17 @@ export default {
       const model = this.$refs.baseForm
       model.base(val)
     },
+    handleClickAdd (e) {
+      console.log(e)
+      const model = this.$refs.baseForm
+      model.base({
+        line: this.positionId
+      }
+      , {
+        xposition: e.x,
+        yposition: e.y
+      })
+    },
     handleOk () {
       this.getOpcInfo()
     }

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

@@ -166,7 +166,7 @@
             :wrapperCol="BaseTool.Constant.wrapperCol"
           >
             <a-input
-              v-decorator="['xPosition', {initialValue:50, rules: [{required: true, message: 'x轴位置不能为空'}]}]"/>
+              v-decorator="['xposition', {initialValue:50, rules: [{required: true, message: 'x轴位置不能为空'}]}]"/>
           </a-form-item>
         </row-item>
         <row-item>
@@ -177,7 +177,7 @@
             :wrapperCol="BaseTool.Constant.wrapperCol"
           >
             <a-input
-              v-decorator="['yPosition', {initialValue:50, rules: [{required: true, message: 'y轴位置不能为空'}]}]"/>
+              v-decorator="['yposition', {initialValue:50, rules: [{required: true, message: 'y轴位置不能为空'}]}]"/>
           </a-form-item>
         </row-item>
         <row-item>
@@ -305,7 +305,8 @@ export default {
       yesNoMap: {},
       form: this.$form.createForm(this),
       visible: false,
-      isExisting: false
+      isExisting: false,
+      position: {}
       // 下拉框map
     }
   },
@@ -319,17 +320,23 @@ export default {
     })
   },
   methods: {
-    base (record) {
+    base (record, position) {
       this.visible = true
       const { form: { setFieldsValue } } = this
-
+      console.log(position)
+      this.position = position
       // 如果是空标识添加
       if (this.BaseTool.Object.isBlank(record.id)) {
         this.modalTitle = '添加'
         this.$nextTick(() => {
           setFieldsValue(Object.assign(pick(record, [
             'line'
-          ])))
+          ]),
+          pick(position, [
+            'xposition',
+            'yposition'
+          ])
+          ))
         })
         return
       }
@@ -348,8 +355,8 @@ export default {
           'ratio',
           'low',
           'high',
-          'xPosition',
-          'yPosition',
+          'xposition',
+          'yposition',
           'width',
           'height',
           'unit',
@@ -442,8 +449,6 @@ export default {
             'ratio',
             'low',
             'high',
-            'xPosition',
-            'yPosition',
             'width',
             'height',
             'unit',