3_identify.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <template>
  2. <div class="identify-steps3">
  3. <div class="collapse-view">
  4. <el-collapse v-model="activeName" @change="handleChange" accordion>
  5. <el-collapse-item v-for="(item,index) in renderData" :key="index" :name="index+1">
  6. <template slot="title">
  7. <span style="padding-left:10px;box-sizing:border-box;">
  8. {{item.Group}}
  9. </span>
  10. </template>
  11. <div class="collapse-item">
  12. <div style="display: flex;justify-content: space-between; height: 40px; line-height: 40px;padding:0 5px;box-sizing:border-box;">
  13. <p>
  14. <el-input v-model="fillData" placeholder="批量填充空白的设备标识" style="width: 180px; margin-right: 10px;"></el-input>
  15. <el-button @click="fillClick">填充</el-button>
  16. </p>
  17. <p style="display: flex">
  18. <span style="margin-right: 10px; color: #909399;" >AI建议的设备标识</span>
  19. <span class='ai-eq' :title="item.EquipmentMark" @click="aiHandle(item.EquipmentMark)">{{item.EquipmentMark || '--'}}</span>
  20. </p>
  21. </div>
  22. <div style="flex: 1">
  23. <handsontable-component ref="handsontable"></handsontable-component>
  24. </div>
  25. </div>
  26. </el-collapse-item>
  27. </el-collapse>
  28. </div>
  29. <div class="center">
  30. <el-button @click="save">保存</el-button>
  31. </div>
  32. </div>
  33. </template>
  34. <script>
  35. import handsontableComponent from "@/components/common/handsontable"
  36. import {
  37. mapGetters,
  38. mapActions
  39. } from "vuex";
  40. import {
  41. updatePoint
  42. } from "@/fetch/point_http"
  43. export default {
  44. name: "nullIdentify",
  45. props: {
  46. renderData: {
  47. type: Array,
  48. default: function() {
  49. return []
  50. }
  51. }
  52. },
  53. data() {
  54. return {
  55. activeName: "1",
  56. hotArr: [],
  57. fillData: "",//填充的数据
  58. }
  59. },
  60. computed: {
  61. ...mapGetters("project", [
  62. "projectId",
  63. "datasourceId",
  64. "protocolType"
  65. ])
  66. },
  67. methods: {
  68. aiHandle(value) {
  69. if(value == '--') {
  70. return false;
  71. } else {
  72. this.fillData = value;
  73. }
  74. },
  75. save() {
  76. console.log(this.renderData,'renderData')
  77. // let data = this.hotArr[this.activeName - 1].getSourceData()
  78. let data = []
  79. this.renderData.map(item => {
  80. if(!!item.PointList){
  81. item.PointList.map(child => {
  82. data.push(child)
  83. })
  84. }
  85. })
  86. console.log(data)
  87. data = data.map(item => {
  88. return {
  89. EquipmentMark: item.own || null,
  90. Id: item.Id,
  91. }
  92. })
  93. updatePoint({
  94. data: {
  95. Content: data
  96. },
  97. type: this.protocolType
  98. }, res => {
  99. this.$emit("saved")
  100. this.$message.success("保存成功")
  101. })
  102. },
  103. fillClick(){
  104. // let data = this.hotArr[this.activeName - 1].getSourceData()
  105. // data.own = this.fillData
  106. // data.map(item => {
  107. // item.own = this.fillData
  108. // })
  109. this.renderData[this.activeName - 1].PointList.map(item => {
  110. item.own = item.own || this.fillData
  111. })
  112. console.log(this.renderData[this.activeName - 1].PointList)
  113. this.handleChange(true)
  114. // console.log(data,'data')
  115. },
  116. handleChange(val) {
  117. if (!val) {
  118. return false
  119. }
  120. if (this.renderData.length < this.activeName) {
  121. return false
  122. }
  123. this.fillData = ""
  124. let headers = {
  125. "modbus-tcp": [{
  126. InfoPointName: "*slave_id",
  127. InfoPointCode: "SlaveId",
  128. InputMode: "B1",
  129. Visible: true,
  130. FirstTag: ""
  131. },
  132. {
  133. InfoPointName: "*registers_address ",
  134. InfoPointCode: "RegistersAddress",
  135. InputMode: "B1",
  136. Visible: true,
  137. FirstTag: ""
  138. },
  139. {
  140. InfoPointName: "*registers_quality",
  141. InfoPointCode: "RegistersQuality",
  142. InputMode: "B1",
  143. Visible: true,
  144. FirstTag: ""
  145. },
  146. {
  147. InfoPointName: "*convert_type",
  148. InfoPointCode: "ConvertType",
  149. InputMode: "select",
  150. DataSource: [{
  151. Code: "1",
  152. Name: "位"
  153. },
  154. {
  155. Code: "2",
  156. Name: "单字"
  157. }, {
  158. Code: "3",
  159. Name: "双字"
  160. }, {
  161. Code: "4",
  162. Name: "四字"
  163. }
  164. ],
  165. Visible: true,
  166. FirstTag: ""
  167. },
  168. {
  169. InfoPointName: "*翻转规则",
  170. InfoPointCode: "RevertRule",
  171. InputMode: "B1",
  172. Visible: true,
  173. FirstTag: ""
  174. }
  175. ],
  176. "bacnet-ip": [{
  177. InfoPointName: "*device_id",
  178. InfoPointCode: "DeviceId",
  179. InputMode: "B1",
  180. Visible: true,
  181. FirstTag: ""
  182. },
  183. {
  184. InfoPointName: "*instance_number",
  185. InfoPointCode: "InstanceNumber",
  186. InputMode: "B1",
  187. Visible: true,
  188. FirstTag: ""
  189. },
  190. {
  191. InfoPointName: "*data_type",
  192. InfoPointCode: "DataType",
  193. DataSource: [{
  194. Code: "analogInput",
  195. Name: "analogInput"
  196. },
  197. {
  198. Code: "analogOutput",
  199. Name: "analogOutput"
  200. },
  201. {
  202. Code: "analogValue",
  203. Name: "analogValue"
  204. },
  205. {
  206. Code: "binaryInput",
  207. Name: "binaryInput"
  208. },
  209. {
  210. Code: "binaryOutput",
  211. Name: "binaryOutput"
  212. },
  213. {
  214. Code: "binaryValue",
  215. Name: "binaryValue"
  216. },
  217. {
  218. Code: "multiStateInput",
  219. Name: "multiStateInput"
  220. },
  221. {
  222. Code: "multiStateOutput",
  223. Name: "multiStateOutput"
  224. },
  225. {
  226. Code: "multiStateValue",
  227. Name: "multiStateValue"
  228. }
  229. ],
  230. InputMode: "select",
  231. Visible: true,
  232. FirstTag: ""
  233. }
  234. ],
  235. "opc": [{
  236. InfoPointName: "*item",
  237. InfoPointCode: "Item",
  238. InputMode: "B1",
  239. Visible: true,
  240. FirstTag: ""
  241. }],
  242. "knx": [{
  243. InfoPointName: "*group_address",
  244. InfoPointCode: "GroupAddress",
  245. InputMode: "B1",
  246. Visible: true,
  247. FirstTag: ""
  248. }],
  249. "mqtt": [{
  250. InfoPointName: "*topic",
  251. InfoPointCode: "Topic",
  252. InputMode: "B1",
  253. Visible: true,
  254. FirstTag: ""
  255. }],
  256. "amqp": [{
  257. InfoPointName: "*exchange",
  258. InfoPointCode: "Exchange",
  259. InputMode: "B1",
  260. Visible: true,
  261. FirstTag: ""
  262. },
  263. {
  264. InfoPointName: "*type",
  265. InfoPointCode: "Type",
  266. InputMode: "B1",
  267. Visible: true,
  268. FirstTag: ""
  269. },
  270. {
  271. InfoPointName: "*routing_key ",
  272. InfoPointCode: "RoutingKey",
  273. InputMode: "B1",
  274. Visible: true,
  275. FirstTag: ""
  276. }
  277. ]
  278. }
  279. let allData = this.renderData[this.activeName - 1].PointList,
  280. data = {
  281. data: allData,
  282. colHeaders: [],
  283. columns: [],
  284. maxRows: allData.length,
  285. }
  286. headers[this.protocolType].map(item => {
  287. data.columns.push({
  288. data: item.InfoPointCode,
  289. readOnly: true,
  290. })
  291. data.colHeaders.push(item.InfoPointName)
  292. })
  293. data.columns.splice(0, 0, {
  294. data: 'Description',
  295. readOnly: true
  296. })
  297. data.columns.splice(0, 0, {
  298. data: 'own'
  299. })
  300. data.colHeaders.splice(0, 0,'原始点位描述')
  301. data.colHeaders.splice(0, 0,'设备标识')
  302. data.columns.push({
  303. data: 'LocationFlag',
  304. readOnly: true
  305. })
  306. data.columns.push({
  307. data: 'Remarks',
  308. readOnly: true
  309. })
  310. data.colHeaders.push('位置标签')
  311. data.colHeaders.push('备注')
  312. this.$nextTick(_ => {
  313. this.hotArr[this.activeName - 1] = this.$refs.handsontable[this.activeName - 1].init(data)
  314. })
  315. }
  316. },
  317. watch: {
  318. renderData: {
  319. deep: true,
  320. handler: function() {
  321. this.handleChange(this.activeName)
  322. }
  323. }
  324. },
  325. components: {
  326. handsontableComponent
  327. }
  328. }
  329. </script>
  330. <style lang="scss">
  331. .identify-steps3 {
  332. height: 100%;
  333. display: flex;
  334. flex-direction: column;
  335. .collapse-view{
  336. flex: 1;
  337. overflow-y: auto;
  338. }
  339. .center{
  340. height: 35px;
  341. line-height: 35px;
  342. }
  343. .el-collapse-item__header.is-active {
  344. border-bottom-color: #ccc;
  345. }
  346. .collapse-item {
  347. height: 230px;
  348. display: flex;
  349. flex-direction: column;
  350. .ai-eq {
  351. cursor: pointer;
  352. width: 60px;
  353. overflow: hidden;
  354. text-overflow: ellipsis;
  355. white-space: nowrap;
  356. }
  357. }
  358. }
  359. </style>