Opc.vue 5.3 KB

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