Przeglądaj źródła

opc:增加是否重要+车间配置

hfxc226 2 lat temu
rodzic
commit
5ac2aec731

+ 3 - 0
src/router/generator-platform-routers.js

@@ -366,6 +366,9 @@ const constantRouterComponents = {
   'RemoteOpc': () => import('@/views/remote/opc/RemoteOpc'), // 模拟+数字量+创建+未创建(全部的)
   'RemoteOpcNotCreated': () => import('@/views/remote/opc/RemoteOpcNotCreated'), // 服务端未创建对应的点位
   'RemoteOpcLog': () => import('@/views/remote/opc-log/RemoteOpcLog'), // 记录
+  'OpcPosition': () => import('@/views/remote/opc/OpcPosition'), // opc车间
+  'OpcPositionNot': () => import('@/views/remote/opc/OpcPositionNot'), // opc车间未配置
+  'OpcPositionForProducer': () => import('@/views/remote/opc/OpcPositionForProducer'), // opc车间生产入口
   // 初始化导入
   'ImportExcel': () => import('@/views/excel/ImportExcel'),
 

+ 17 - 0
src/views/remote/opc/OpcPosition.vue

@@ -0,0 +1,17 @@
+<template>
+  <SbPosition :opc-flag="1"/>
+</template>
+
+<script>
+import SbPosition from '@/views/sb/position/SbPosition'
+export default {
+  name: 'OpcPositionNot',
+  components: {
+    SbPosition
+  }
+}
+</script>
+
+<style scoped>
+
+</style>

+ 44 - 0
src/views/remote/opc/OpcPositionForProducer.vue

@@ -0,0 +1,44 @@
+<template>
+  <a-card :bordered="false" v-show="visible" class="card" :title="modalTitle">
+    <h1 style="margin:20px auto; text-align: center"> DCS展示车间 </h1>
+    <a-card v-for="position in treeData" :key="position.key" :title="position.title">
+      <a-card-grid v-for="child in position.children" :key="child.key" style="cursor: pointer;width:25%;text-align:center" @click="showScreen(child)">
+        {{ child.title }}
+      </a-card-grid>
+    </a-card>
+  </a-card>
+</template>
+
+<script>
+
+import { getSbPositionTree } from '@/api/sb/position'
+
+export default {
+  name: 'OpcPosition',
+  components: {
+  },
+  data () {
+    return {
+      confirmLoading: false,
+      modalTitle: null,
+      treeData: [],
+      visible: true
+    }
+  },
+  props: {
+  },
+  created () {
+    getSbPositionTree({ opcFlag: 1 }).then(res => {
+      this.treeData = res.data
+    })
+  },
+  methods: {
+    showScreen (position) {
+      const a = document.createElement('a')
+      a.href = '/quality/quality-screen.html?name=' + position.key
+      a.target = '_blank'
+      a.click()
+    }
+  }
+}
+</script>

+ 17 - 0
src/views/remote/opc/OpcPositionNot.vue

@@ -0,0 +1,17 @@
+<template>
+  <SbPosition :opc-flag="0"/>
+</template>
+
+<script>
+import SbPosition from '@/views/sb/position/SbPosition'
+export default {
+  name: 'OpcPositionNot',
+  components: {
+    SbPosition
+  }
+}
+</script>
+
+<style scoped>
+
+</style>

+ 17 - 0
src/views/remote/opc/modules/BaseForm.vue

@@ -126,6 +126,22 @@
             </a-select>
           </a-form-item>
         </row-item>
+        <row-item>
+          <a-form-item
+            label="是否重要点位"
+            :labelCol="BaseTool.Constant.labelCol"
+            :wrapperCol="BaseTool.Constant.wrapperCol"
+          >
+            <a-select v-decorator="['portFlag', {initialValue:0, rules: [{required: true, message: '是否重要点位不能为空'}]}]" placeholder="请选择">
+              <a-select-option
+                v-for="(label,value) in yesNoMap"
+                :key="value"
+                :label="label"
+                :value="parseInt(value)">{{ label }}
+              </a-select-option>
+            </a-select>
+          </a-form-item>
+        </row-item>
         <row-item>
 
           <a-form-item
@@ -326,6 +342,7 @@ export default {
           'height',
           'unit',
           'avFlag',
+          'portFlag',
           'createdFlag',
           'positionFlag',
           'remark'

+ 2 - 0
src/views/remote/opc/modules/Detail.vue

@@ -14,6 +14,7 @@
       <detail-list-item term="点位">{{ model.positionNum }}</detail-list-item>
       <detail-list-item term="类型">{{ BaseTool.Object.getField(map,model.type) }}</detail-list-item>
       <detail-list-item term="是否模拟量">{{ BaseTool.Object.getField(yesNoMap,model.avFlag) }}</detail-list-item>
+      <detail-list-item term="是否重要点位">{{ BaseTool.Object.getField(yesNoMap,model.portFlag) }}</detail-list-item>
       <detail-list-item term="opc服务器上是否已经创建">{{ BaseTool.Object.getField(yesNoMap,model.createdFlag) }}</detail-list-item>
       <detail-list-item term="opc页面是否已经配置">{{ BaseTool.Object.getField(yesNoMap,model.positionFlag) }}</detail-list-item>
       <detail-list-item term="描述">{{ model.description }}</detail-list-item>
@@ -73,6 +74,7 @@ export default {
         'remark': null,
         'positionFlag': null,
         'avFlag': null,
+        'portFlag': null,
         'createdFlag': null,
         'createdUserId': null,
         'updateUserId': null,

+ 14 - 0
src/views/sb/position/SbPosition.vue

@@ -119,11 +119,23 @@ export default {
     BaseForm,
     Detail
   },
+  props: {
+    opcFlag: {
+      type: Number,
+      default: null
+    },
+    lightFlag: {
+      type: Number,
+      default: null
+    }
+  },
   data () {
     return {
       // 查询参数
       yesNoMap: {},
       queryParam: {
+        opcFlag: this.opcFlag,
+        lightFlag: this.lightFlag
       },
       positionTypeMap: {},
       delFlagMap: {},
@@ -288,6 +300,8 @@ export default {
     },
     resetSearchForm () {
       this.queryParam = {
+        opcFlag: this.opcFlag,
+        lightFlag: this.lightFlag
       }
       this.$refs.table.refresh(true)
     },