FloorFunc.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <div class='floor-function'>
  3. <div class="floor-item" v-for="floor in floorData" :key="floor.FloorId">
  4. <div class="floor-item-title">
  5. <span class="floor-item-text"><i class="iconfont wanda-louceng1"></i> {{floor.FloorName}}</span>
  6. <p class="floor-item-goMap" @click='goToMapView(floor)'>
  7. <span>查看平面图 </span>
  8. <van-icon class='floor-item-arrow' name='arrow' />
  9. </p>
  10. </div>
  11. <div v-if="floor.Statistics && floor.Statistics.length" class="floor-item-table">
  12. <table class="table-box">
  13. <tr>
  14. <th>
  15. <div class="cell">项目</div>
  16. </th>
  17. <th>
  18. <div class="cell">数量</div>
  19. </th>
  20. <th>
  21. <div class="cell">单位</div>
  22. </th>
  23. <th>
  24. <div class="cell">图例</div>
  25. </th>
  26. </tr>
  27. <tr v-for="tr in floor.Statistics" :key="`${floor.FloorId}-${tr.GraphElementId}`" v-show="tr.Num">
  28. <td>
  29. <div class="cell">{{tr.Name||'--'}}</div>
  30. </td>
  31. <td>
  32. <div class="cell">{{tr.Num}}</div>
  33. </td>
  34. <td>
  35. <div class="cell">{{tr.Unit||'--'}}</div>
  36. </td>
  37. <td>
  38. <div class="cell">
  39. <div v-if='tr.Url' class="Url-img">
  40. <img :src="`/serve/topology-wanda/Picture/query/${tr.Url}`" alt>
  41. </div>
  42. <div v-else>{{'--'}}</div>
  43. </div>
  44. </td>
  45. </tr>
  46. <tr v-if="floor.Note">
  47. <td colspan="4">
  48. <div class="cell">
  49. <div class="table-note">
  50. <span>注:</span>
  51. <div class="table-note-content" v-html="floor.Note"></div>
  52. </div>
  53. </div>
  54. </td>
  55. </tr>
  56. </table>
  57. <h2 class="floor-additional-data" v-if="smsxt == '1003' || smsxt == '1004'" @click="queryTable(floor.FloorId)">
  58. <i class="iconfont wanda-otherData"></i>
  59. 查看附加数据
  60. </h2>
  61. </div>
  62. <div v-else-if="floor.Properties && floor.Properties.length" class="floor-item-table">
  63. <table class="table-box">
  64. <tr>
  65. <th colspan="3">
  66. <div class="cell">说明</div>
  67. </th>
  68. <th>
  69. <div class="cell">图例</div>
  70. </th>
  71. </tr>
  72. <tr v-for="(tr, index) in floor.Properties" :key="`${floor.FloorId}-${index}`">
  73. <td colspan="3">
  74. <div class="cell">{{tr.ItemExplain||'--'}}</div>
  75. </td>
  76. <td>
  77. <div class="cell">
  78. <div v-if='tr.FillColor && tr.StrokeColor' class="Url-img"
  79. :style='`background:${tr.FillColor};border:1px solid ${tr.StrokeColor}`'>
  80. </div>
  81. <div v-else>{{'--'}}</div>
  82. </div>
  83. </td>
  84. </tr>
  85. </table>
  86. </div>
  87. </div>
  88. <ImagePreview :key='imgKey' :visible.sync='showImgPreview' :imgList='imgList' />
  89. </div>
  90. </template>
  91. <script>
  92. import Vue from 'vue';
  93. import { Toast } from 'vant';
  94. Vue.use(Toast);
  95. import ImagePreview from '@/components/ImagePreview'
  96. import { appGraphElementQuery, appNodeQuery, queryPic } from '@/api/public'
  97. import { mapGetters } from 'vuex'
  98. export default {
  99. name: 'FloorFunc',
  100. props: {},
  101. data() {
  102. return {
  103. floorData: [],
  104. showImgPreview: false,
  105. imgList: [], //图片列表
  106. imgKey: `img${new Date().getTime()}`,
  107. }
  108. },
  109. computed: {
  110. ...mapGetters(['plazaId', 'floorsArr', 'categoryId', 'smsxt']),
  111. },
  112. components: { ImagePreview },
  113. beforeMount() { },
  114. created() {
  115. this.getGraphElement();
  116. },
  117. methods: {
  118. // 请求图例信息
  119. getGraphElement() {
  120. let params = {
  121. BuildingID: '1',
  122. CategoryID: this.categoryId,
  123. ProjectID: this.plazaId,
  124. Floors: this.floorsArr.map(item => {
  125. return {
  126. FloorId: item.gcname,
  127. FloorName: item.code
  128. }
  129. })
  130. }
  131. if (this.categoryId === "SCPZ") {
  132. appNodeQuery(params).then(res => {
  133. this.floorData = res.Data.map(floor => {
  134. let arr = []
  135. if (floor.Properties && floor.Properties.length) {
  136. arr = floor.Properties.filter(item => {
  137. return item.ItemExplain && item.ItemExplain !== "";
  138. })
  139. floor.Properties = arr;
  140. }
  141. return floor;
  142. });
  143. })
  144. } else {
  145. appGraphElementQuery(params).then(res => {
  146. this.floorData = res.Data;
  147. })
  148. }
  149. },
  150. // 查询附加数据图片
  151. queryTable(floorId) {
  152. let getParams = {
  153. module: '1003',
  154. floor: floorId,
  155. system: this.smsxt,
  156. plazaId: this.plazaId,
  157. }
  158. queryPic({ getParams }).then((res) => {
  159. if (res.data && res.data) {
  160. this.imgList = res.data.map(item => {
  161. return item.url
  162. })
  163. this.showImgPreview = true;
  164. } else {
  165. Toast.fail('暂无附加数据!');
  166. }
  167. })
  168. },
  169. goToMapView(floor) {
  170. if (floor.FloorId && floor.FloorName) {
  171. let floorObj = {
  172. FloorId: floor.FloorId,
  173. FloorName: floor.FloorName
  174. }
  175. this.$router.push({ name: 'MapView', params: { floor: floorObj } })
  176. } else {
  177. Toast.fail('缺少楼层信息!');
  178. }
  179. },
  180. },
  181. watch: {
  182. categoryId: {
  183. handler() {
  184. this.getGraphElement();
  185. }
  186. }
  187. }
  188. }
  189. </script>
  190. <style lang='less' scoped>
  191. .floor-function {
  192. width: 100%;
  193. height: calc(100% - 100px);
  194. background-color: #ffffff;
  195. box-sizing: border-box;
  196. overflow-y: auto;
  197. .floor-item {
  198. margin-bottom: 12px;
  199. .floor-item-title {
  200. padding: 0 10px;
  201. height: 44px;
  202. line-height: 44px;
  203. background: rgba(2, 91, 170, 0.1);
  204. color: #025baa;
  205. .floor-item-text {
  206. font-size: 16px;
  207. font-weight: 600;
  208. display: inline-block;
  209. }
  210. .floor-item-goMap {
  211. font-size: 14px;
  212. float: right;
  213. .floor-item-arrow {
  214. position: relative;
  215. top: 2px;
  216. }
  217. }
  218. }
  219. .floor-item-table {
  220. padding: 12px 16px 0;
  221. .table-box {
  222. width: 100%;
  223. table-layout: fixed;
  224. border-collapse: collapse;
  225. border-spacing: 0;
  226. td,
  227. th {
  228. font-size: 12px;
  229. font-weight: 500;
  230. color: #333333;
  231. padding: 8px 0;
  232. overflow: hidden;
  233. text-overflow: ellipsis;
  234. white-space: nowrap;
  235. min-width: 0;
  236. border: 1px solid #e4e6e7;
  237. box-sizing: border-box;
  238. vertical-align: middle;
  239. position: relative;
  240. text-align: center;
  241. .cell {
  242. box-sizing: border-box;
  243. overflow: hidden;
  244. text-overflow: ellipsis;
  245. white-space: normal;
  246. word-break: break-all;
  247. line-height: 23px;
  248. padding: 0 10px;
  249. }
  250. }
  251. th {
  252. background: #eff0f1;
  253. }
  254. .Url-img {
  255. width: 20px;
  256. height: 22px;
  257. line-height: 20px;
  258. margin: 0 auto;
  259. img {
  260. display: block;
  261. max-width: 100%;
  262. max-height: 100%;
  263. margin: 0 auto;
  264. }
  265. }
  266. .table-note {
  267. font-size: 12px;
  268. font-family: MicrosoftYaHeiSemibold;
  269. color: #666666;
  270. line-height: 16px;
  271. display: flex;
  272. .table-note-content {
  273. text-align: left;
  274. ol {
  275. list-style: decimal;
  276. }
  277. }
  278. }
  279. }
  280. }
  281. .floor-additional-data {
  282. font-size: 14px;
  283. color: #025baa;
  284. margin-top: 10px;
  285. i {
  286. vertical-align: bottom;
  287. }
  288. }
  289. }
  290. }
  291. </style>