updatePointZone.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <div id="updatePoint">
  3. <div class="condition">
  4. <div class="header">
  5. <el-button style="float:left;" size="small" type="default" icon="el-icon-back" @click="goBack"></el-button>
  6. <el-button size="small" style="float:right" @click="updateZ">更新</el-button>
  7. </div>
  8. <el-scrollbar style="height:calc(100% - 43px)">
  9. <div class="item">
  10. <p>将位置标签图片批量补充到业务空间:</p>
  11. <div v-for="item in zoneList" :key="item.objid" class="zone-item">
  12. <el-tooltip class="item" effect="light" :content="item.RoomLocalName || item.RoomName" placement="top">
  13. <p>{{item.RoomLocalName || item.RoomName}}</p>
  14. </el-tooltip>
  15. <el-button type="info" icon="el-icon-delete" circle style="float:right;" size="mini" @click="deleteZone(item.RoomID)"></el-button>
  16. </div>
  17. <div class="zone-item" style="border:none;">
  18. <el-cascader :props="zoneCascader" :show-all-levels="false" v-model="zoneCa" @change="changeCascader" filterable style="float:left;">
  19. </el-cascader>
  20. <el-button type="primary" icon="el-icon-plus" circle style="float:right;" size="mini" @click="addZone"></el-button>
  21. </div>
  22. </div>
  23. <div class="item">
  24. <p>位置标签图片信息:</p>
  25. <locationPointMsg :pointObj="$route.params.item" ref="pointMsg"></locationPointMsg>
  26. </div>
  27. </el-scrollbar>
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. import locationPointMsg from '@/views/data_admin/buildGraphy/locationPointMsg'
  33. import { queryDictionaryHead, zoneQueryByPoint, queryZone } from '@/api/scan/request';
  34. import { mapGetters } from 'vuex'
  35. export default {
  36. data() {
  37. let that = this;
  38. return {
  39. zoneList: [],//业务空间列表
  40. pointItem: {},//点位标签对象
  41. zoneTypeList: [],//业务空间类型
  42. zoneCascader: {//业务空间忌廉器
  43. lazy: true,
  44. lazyLoad(node, resolve) {
  45. const { level } = node;
  46. that.getCascaderNode(level, node, resolve);
  47. }
  48. },
  49. newZoneObj: {},//当前新建业务空间
  50. zoneCa: []
  51. }
  52. },
  53. computed: {
  54. ...mapGetters("layout", ["projectId"])
  55. },
  56. components: {
  57. locationPointMsg
  58. },
  59. created() {
  60. this.pointItem = this.$route.params.item
  61. this.getSpaceList();
  62. },
  63. methods: {
  64. //创建
  65. updateZ() {
  66. console.log(this.zoneList);
  67. if (this.$refs.pointMsg.choImg.length && this.zoneList.length) {
  68. let imgs = {};
  69. this.$refs.pointMsg.choImg.map((item, key) => {
  70. imgs[`additionalProp${key + 1}`] = item;
  71. })
  72. this.zoneList.map(item => {
  73. item.Pic = imgs;
  74. })
  75. let param = {
  76. data: {
  77. content: this.zoneList
  78. }
  79. }
  80. }
  81. else if (!this.$refs.pointMsg.choImg.length) {
  82. this.$message("请至少选择一张图片");
  83. }
  84. else {
  85. this.$message("请至少添加一个业务空间");
  86. }
  87. },
  88. //获取空间列表
  89. getSpaceList() {
  90. let pa = {
  91. X: this.pointItem.X,
  92. Y: this.pointItem.Y,
  93. data: { Filters: `buildingId = '${this.pointItem.BuildId}' and floorId = '${this.pointItem.FloorId}'` }
  94. }
  95. zoneQueryByPoint(pa, res => {
  96. this.zoneList = res.Content;
  97. });
  98. },
  99. //级联node
  100. getCascaderNode(level, node, resolve) {
  101. let id = (level + 1) * 10;
  102. //建筑
  103. if (level == 0) {
  104. let nodes = this.$route.params.floorData.map(item => ({
  105. value: item.BuildID,
  106. label: item.BuildLocalName || item.BuildName,
  107. leaf: level >= 3
  108. }))
  109. resolve(nodes)
  110. }
  111. //楼层
  112. else if (level == 1) {
  113. let floors = this.$route.params.floorData.filter(item => { return item.BuildID == node.value })
  114. let nodes = floors[0].Floor.map(item => ({
  115. value: item.FloorID,
  116. label: item.FloorLocalName || item.FloorName,
  117. leaf: level >= 3
  118. }))
  119. resolve(nodes)
  120. }
  121. //空间类型
  122. else if (level == 2) {
  123. if (this.zoneTypeList && this.zoneTypeList.length) {
  124. resolve(this.zoneTypeList)
  125. }
  126. else {
  127. let pa = {
  128. Filters: `parentId='Space'`
  129. }
  130. queryDictionaryHead(pa, res => {
  131. this.zoneTypeList = res.Content.filter((item => { return item.Name != '元空间' })).map(item => ({
  132. value: item.Code,
  133. label: item.Name,
  134. leaf: level >= 3
  135. }))
  136. resolve(this.zoneTypeList)
  137. });
  138. }
  139. }
  140. //业务空间
  141. else {
  142. let pa = {
  143. zone: node.value,
  144. data: {
  145. "Filters": `buildingId='${node.parent.parent.value}';floorId='${node.parent.value}'`,
  146. "Orders": "createTime desc, RoomID asc",
  147. "PageNumber": 1,
  148. "PageSize": 999
  149. }
  150. }
  151. queryZone(pa, res => {
  152. let nodes = res.Content.map(item => ({
  153. value: item,
  154. label: item.RoomLocalName || item.RoomName,
  155. leaf: level >= 3
  156. }))
  157. resolve(nodes)
  158. })
  159. }
  160. },
  161. //删除业务空间
  162. deleteZone(zoneid) {
  163. this.zoneList = this.zoneList.filter(item => { return item.RoomID != zoneid });
  164. },
  165. //添加业务空间
  166. addZone() {
  167. if (this.newZoneObj.RoomID && this.zoneList.findIndex((item) => (item.RoomID == this.newZoneObj.RoomID)) == -1) {
  168. this.zoneList.push(this.newZoneObj)
  169. console.log(this.zoneList)
  170. }
  171. else if (!this.newZoneObj.RoomID) {
  172. this.$message("请选择业务空间后添加")
  173. }
  174. else {
  175. this.$message("已有业务空间,请重新选择");
  176. }
  177. this.zoneCa = [];
  178. this.newZoneObj = {}
  179. },
  180. //选择业务空间
  181. changeCascader(val) {
  182. this.newZoneObj = val[3]
  183. },
  184. //返回
  185. goBack() {
  186. this.$router.push({
  187. name: "buildGraphy",
  188. params: { nowBuildFloor: this.$route.params.nowBuildFloor }
  189. })
  190. }
  191. },
  192. watch: {
  193. projectId: {
  194. handler(val) {
  195. this.goBack();
  196. }
  197. }
  198. }
  199. }
  200. </script>
  201. <style lang="less" scoped>
  202. .condition {
  203. position: relative;
  204. padding: 10px 10px;
  205. display: flex;
  206. height: calc(100% - 22px);
  207. flex-direction: column;
  208. border: 1px solid #dfe6ec;
  209. background: #fff;
  210. .header {
  211. padding-bottom: 10px;
  212. border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  213. span {
  214. line-height: 33px;
  215. margin-left: 15px;
  216. }
  217. /deep/ .buildFloor {
  218. line-height: 32px;
  219. }
  220. }
  221. }
  222. /deep/ .el-scrollbar__wrap {
  223. overflow-x: hidden;
  224. }
  225. .item {
  226. padding: 10px 10px;
  227. label {
  228. display: inline-block;
  229. padding: 5px 10px;
  230. width: 130px;
  231. }
  232. }
  233. .zone-item {
  234. display: inline-block;
  235. position: relative;
  236. width: 245px;
  237. padding: 5px 10px;
  238. margin: 0 5px 5px 0;
  239. }
  240. .zone-item p {
  241. width: 200px;
  242. float: left;
  243. height: 32px;
  244. overflow: hidden;
  245. border: 1px solid rgb(220, 223, 230);
  246. padding-left: 15px;
  247. padding: 0 0 0 15px;
  248. border-radius: 5px;
  249. }
  250. </style>