examine_main.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <div>
  3. <select-one @check="typeCheck" :renderData="typeArr" infosKey="EquipmentType" name="原始点位描述中的设备类型关键字"></select-one>
  4. <select-one @check="paramCheck" :renderData="identifyArr" infosKey="ownMess" name="原始点位描述中设备参数关键字"></select-one>
  5. <div class="handson-view saga-border">
  6. <div v-if="hotData.length" class="h100">
  7. <div class="title-view">
  8. <el-input v-model="inputValue" placeholder="批量填充空白的值/单位说明" style="width:200px;"></el-input>
  9. <span class="w10"></span>
  10. <el-button @click="fullValue">批量填充值/单位说明</el-button>
  11. </div>
  12. <div class="handson-main">
  13. <handsontable-component ref="handsontable"></handsontable-component>
  14. </div>
  15. <div class="center">
  16. <el-button @click="saveData">保存修改</el-button>
  17. </div>
  18. </div>
  19. <div v-else class="center">
  20. <i class="iconwushuju iconfont"></i>
  21. 暂无数据
  22. </div>
  23. </div>
  24. </div>
  25. </template>
  26. <script>
  27. import {
  28. mapGetters,
  29. mapActions
  30. } from "vuex";
  31. import {
  32. queryAllEqTypeList,
  33. queryAllEqParamList,
  34. queryPoint,
  35. updatePoint
  36. } from "@/fetch/point_http"
  37. import selectOne from "@/components/config_point/select_one"
  38. import handsontableComponent from "@/components/common/handsontable"
  39. export default {
  40. components: {
  41. selectOne,
  42. handsontableComponent
  43. },
  44. computed: {
  45. ...mapGetters("project", [
  46. "projectId",
  47. "datasourceId",
  48. "protocolType"
  49. ])
  50. },
  51. data() {
  52. return {
  53. typeArr: [],
  54. identifyArr: [],
  55. EquipmentType: "",
  56. EquipmentParameter: "",
  57. inputValue: "",
  58. header: ['原始点位描述', '值/单位说明', '*识别的设备类型关键字', '*识别的设备参数关键字'],
  59. type: [{
  60. data: 'Description',
  61. readOnly: true
  62. },
  63. {
  64. data: 'ValueDescription'
  65. },
  66. {
  67. data: 'KeyEquipmentType'
  68. },
  69. {
  70. data: 'KeyEquipmentParameter'
  71. }
  72. ],
  73. hot: "",
  74. hotData: []
  75. }
  76. },
  77. created() {
  78. this.getTypes()
  79. },
  80. mounted() {},
  81. methods: {
  82. //保存数据
  83. saveData(){
  84. let param = this.hot.getSourceData().map(item => {
  85. return {
  86. ValueDescription: item.ValueDescription || null,
  87. KeyEquipmentType: item.KeyEquipmentType || null,
  88. KeyEquipmentParameter: item.KeyEquipmentParameter || null,
  89. Id: item.Id,
  90. DatasourceId: item.DatasourceId
  91. }
  92. })
  93. console.log(param)
  94. updatePoint({
  95. data: {Content: param},
  96. type: this.protocolType
  97. },res => {
  98. console.log(res)
  99. this.typeCheck()
  100. })
  101. },
  102. //填充值被点击
  103. fullValue(){
  104. if(!this.inputValue){
  105. return false
  106. }
  107. this.hotData.map(item => {
  108. //如果没有值
  109. if(!item.ValueDescription){
  110. item.ValueDescription = this.inputValue
  111. }
  112. })
  113. },
  114. //设备类型被点击
  115. typeCheck(item) {
  116. this.EquipmentType = item.EquipmentType == "空" ? "" : item.EquipmentType
  117. this.getParam()
  118. },
  119. //设备参数被点击
  120. paramCheck(item) {
  121. console.log(item, "设备参数")
  122. this.inputValue = ""
  123. if (!!item) {
  124. this.EquipmentParameter = (item.EquipmentParameter == "空" || !item.EquipmentParameter) ? null : item.EquipmentParameter
  125. this.queryPoint()
  126. } else {
  127. this.hotData = []
  128. return false
  129. }
  130. },
  131. //获取点位列表
  132. queryPoint() {
  133. console.log(this.EquipmentType, this.EquipmentParameter, "EquipmentParameter")
  134. let param = {
  135. data: {
  136. Filters: {
  137. DataSourceId: this.datasourceId,
  138. ProjectId: this.projectId,
  139. KeyEquipmentParameter: this.EquipmentParameter,
  140. KeyEquipmentType: this.EquipmentType,
  141. Used: true
  142. }
  143. },
  144. type: this.protocolType
  145. },
  146. width, settings
  147. console.log(param.data)
  148. queryPoint(param, res => {
  149. this.hotData = res.Content
  150. settings = {
  151. data: this.hotData,
  152. colHeaders: this.header,
  153. columns: this.type,
  154. rowHeights: 30,
  155. maxRows: res.Content.length
  156. }
  157. this.$nextTick(() => {
  158. this.hot = this.$refs.handsontable.init(settings)
  159. })
  160. console.log(this.hot)
  161. })
  162. },
  163. //获取原始点位描述中设备参数关键字
  164. getParam() {
  165. queryAllEqParamList({
  166. type: this.protocolType,
  167. data: {
  168. DataSourceId: this.datasourceId,
  169. ProjectId: this.projectId,
  170. KeyEquipmentType: this.EquipmentType
  171. }
  172. }, res => {
  173. this.identifyArr = res.Content.map(item => {
  174. if (!!item.EquipmentParameter) {
  175. item.ownMess = item.EquipmentParameter + "(涉及原始点位:" + item.PointCount + ")"
  176. } else {
  177. item.ownMess = "空" + "(涉及原始点位:" + item.PointCount + ")"
  178. }
  179. return item
  180. })
  181. console.log(this.identifyArr, "res")
  182. })
  183. },
  184. //获取原始点位描述中的设备类型关键字
  185. getTypes() {
  186. queryAllEqTypeList({
  187. type: this.protocolType,
  188. data: {
  189. DataSourceId: this.datasourceId,
  190. ProjectId: this.projectId
  191. }
  192. }, res => {
  193. // res.Content.unshift({EquipmentType: "空"})
  194. this.typeArr = res.Content
  195. console.log(this.typeArr)
  196. })
  197. },
  198. }
  199. }
  200. </script>
  201. <style lang="scss" scoped>
  202. .handson-view {
  203. height: 340px;
  204. width: 480px;
  205. float: right;
  206. overflow-y: auto;
  207. }
  208. .title-view {
  209. height: 50px;
  210. line-height: 50px;
  211. padding-left: 10px;
  212. }
  213. .w10 {
  214. width: 10px;
  215. display: inline-block;
  216. }
  217. .handson-main {
  218. height: calc(100% - 90px);
  219. width: 100%;
  220. }
  221. </style>