OpcInfo.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <template>
  2. <div class="main">
  3. <img :src="imgUrl" width="1920px" alt="">
  4. <div class="icon" style="right:20px">
  5. <a-button type="primary" icon="appstore" size="large" @click="visibleRight=true" />
  6. </div>
  7. <div v-if="dotList !=null && dotList.length>0">
  8. <div v-for="item in dotList" :key="item.id">
  9. <VueDragResize
  10. v-show="item.positionFlag"
  11. :isActive="item.isActive"
  12. :w="item.width"
  13. :h="item.height"
  14. :minh="20"
  15. :x="item.xposition"
  16. :y="item.yposition"
  17. :isDraggable="item.isActive"
  18. :isResizable="item.isActive"
  19. :stickSize="5"
  20. >
  21. <a-tooltip>
  22. <template slot="title">
  23. {{ item.description }}
  24. </template>
  25. <div class="info" @click="handleInfo(item)" @click.right.prevent="handleView(item)">
  26. <span :style="{'color':item.warnFirstColor}" v-if="(+item.result)<=item.warnFirst&&item.warnFirst!==null">{{ item.result }}</span>
  27. <span :style="{'color':item.warnSecondColor}" v-else-if="item.warnFirst<(+item.result)&&(+item.result)<item.warnSecond">{{ item.result }}</span>
  28. <span :style="{'color':item.warnThirdColor}" v-else-if="item.warnThird<(+item.result)&&(+item.result)<item.warnFour">{{ item.result }}</span>
  29. <span :style="{'color':item.warnFourColor}" v-else-if="(+item.result)>=item.warnFour&&item.warnFirst!==null">{{ item.result }}</span>
  30. <span v-else>{{ item.result }}</span>
  31. </div>
  32. </a-tooltip>
  33. </VueDragResize>
  34. <VueDragResize
  35. v-if="item.type===2"
  36. :isActive="item.isActive"
  37. :w="40"
  38. :h="40"
  39. :minh="20"
  40. :x="item.imgXPosition"
  41. :y="item.imgYPosition"
  42. :isDraggable="item.isActive"
  43. :isResizable="item.isActive"
  44. :stickSize="5"
  45. >
  46. <a-tooltip>
  47. <template slot="title">
  48. {{ item.description }}
  49. </template>
  50. <img src="@/assets/stop.png" alt="" width="40px" height="40px">
  51. </a-tooltip>
  52. </VueDragResize>
  53. </div>
  54. </div>
  55. <a-drawer
  56. title="点位列表"
  57. placement="right"
  58. :closable="false"
  59. :width="350"
  60. :visible="visibleRight"
  61. @close="onCloseRight"
  62. >
  63. <div>
  64. <a-tree-select
  65. style="width: 60%;margin-right:10px;"
  66. :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
  67. :treeData="treeData"
  68. :treeNodeFilterProp="'title'"
  69. :showSearch="true"
  70. v-model="positionId"
  71. placeholder="请选择"
  72. @change="handleChange"
  73. >
  74. </a-tree-select>
  75. </div>
  76. <br>
  77. <!-- <a-table
  78. :columns="columns"
  79. :data-source="dotList"
  80. :pagination="{ pageSize: 100 }"
  81. :scroll="{ y: 650 }"
  82. >
  83. <span slot="action" slot-scope="text, record,index">
  84. <a @click="disposition(record,index)">配置</a>
  85. <a-button style="color:#ccc" v-show="record.positionFlag" type="link" icon="eye-invisible" @click="handleShow(index,0)" />
  86. <a-button v-show="!record.positionFlag" type="link" icon="eye" @click="handleShow(index,1)" />
  87. </span>
  88. </a-table> -->
  89. </a-drawer>
  90. <BaseChartInfo ref="baseChartInfo" @ok="handleOk"/>
  91. <detail ref="detailModal" @ok="handleOk" />
  92. </div>
  93. </template>
  94. <script>
  95. import VueDragResize from 'vue-drag-resize'
  96. import { getSbPositionTree, fetchSbPosition } from '@/api/sb/position'
  97. import { queryRemoteOpc, updateRemoteOpc,
  98. fetchRemoteOpc
  99. } from '@/api/remote/opc'
  100. import Detail from '@/views/remote/opc/modules/Detail.vue'
  101. import BaseChartInfo from './modules/BaseChartInfo.vue'
  102. export default {
  103. name: 'Opc',
  104. components: {
  105. VueDragResize,
  106. BaseChartInfo,
  107. Detail
  108. },
  109. data () {
  110. return {
  111. visibleRight: false,
  112. positionId: '',
  113. treeData: [],
  114. optDot: null,
  115. imgUrl: '',
  116. dotList: [],
  117. timer: null,
  118. columns: [
  119. {
  120. title: '位号',
  121. dataIndex: 'positionNum',
  122. key: 'positionNum'
  123. },
  124. {
  125. title: '操作',
  126. key: 'action',
  127. scopedSlots: { customRender: 'action' }
  128. }
  129. ]
  130. }
  131. },
  132. created () {
  133. this.positionId = this.$route.query.line
  134. this.getImg()
  135. getSbPositionTree({ opcFlag: 1 }).then(res => {
  136. this.treeData = res.data
  137. })
  138. this.timer = setInterval(() => {
  139. console.log(this.positionId)
  140. this.getOpcInfo()
  141. }, 5000)
  142. },
  143. destroyed () {
  144. clearInterval(this.timer)
  145. },
  146. methods: {
  147. resize (newRect) {
  148. console.log(newRect)
  149. const params = {
  150. ...this.dotList[this.optDot],
  151. height: newRect.height,
  152. width: newRect.width,
  153. xposition: newRect.left,
  154. yposition: newRect.top
  155. }
  156. updateRemoteOpc(params).then(res => {
  157. console.log(res)
  158. this.dotList[this.optDot].isActive = false
  159. })
  160. },
  161. onCloseRight () {
  162. this.visibleRight = false
  163. },
  164. disposition (val, i) {
  165. val.isActive = true
  166. val.positionFlag = 1
  167. this.optDot = i
  168. this.visibleRight = false
  169. },
  170. handleShow (val, key) {
  171. this.dotList[val].positionFlag = key
  172. },
  173. getOpcInfo () {
  174. queryRemoteOpc({ line: this.positionId })
  175. .then((res) => {
  176. this.dotList = res.data
  177. this.dotList.forEach(item => {
  178. item.isActive = false
  179. })
  180. })
  181. },
  182. getImg () {
  183. fetchSbPosition({ id: this.positionId }).then(res => {
  184. this.imgUrl = res.data.opcImg
  185. })
  186. },
  187. handleChange () {
  188. this.getOpcInfo()
  189. this.getImg()
  190. },
  191. handleInfo (remoteOpc) {
  192. const model = this.$refs.baseChartInfo
  193. model.base(remoteOpc)
  194. },
  195. handleView (record) {
  196. fetchRemoteOpc({ id: record.id }).then(res => {
  197. const modal = this.$refs.detailModal
  198. modal.base(res.data)
  199. })
  200. },
  201. handleOk () {
  202. }
  203. }
  204. }
  205. </script>
  206. <style lang="less" scoped>
  207. .main{
  208. position: relative;
  209. }
  210. .info{
  211. font-size: 12px;
  212. font-weight: bold;
  213. color: blue;
  214. padding:0 10px;
  215. // transform: scale(0.5);
  216. }
  217. .icon{
  218. font-size: 30px;
  219. color: #fff;
  220. position: absolute;
  221. top:20px;
  222. }
  223. </style>