MoreEquipmentList.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. <template>
  2. <div class='more-equipment'>
  3. <!-- 顶部条 -->
  4. <van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
  5. <template #right>
  6. <i class='iconfont wanda-scan'></i>
  7. </template>
  8. </van-nav-bar>
  9. <!-- 搜索框 -->
  10. <div class='equipment-search-container'>
  11. <van-search class='equipment-search' v-model='keyword' placeholder='请输入编号' @search='onSearch'></van-search>
  12. </div>
  13. <!-- 一个类的设备,如螺旋式冷水机组 -->
  14. <div class='equipment-container' v-if='1'>
  15. <div class='switch-room' v-for='ii in 3' :key='ii'>
  16. <div class='title'>
  17. <span>螺旋式冷水机组</span>
  18. <span>10</span>
  19. </div>
  20. <!-- 单元格 -->
  21. <van-cell is-link v-for='item in mockList' :key='item.classstructureid'>
  22. <!-- 使用 title 插槽来自定义标题 -->
  23. <template #title>
  24. <span class='number'>{{item.classstructureid}}</span>
  25. <span class='name'>{{item.sbjc}}</span>
  26. </template>
  27. <template #right-icon>
  28. <span class='wx' v-if='item._type === "维修"'>维修</span>
  29. <span class='wb'>维保</span>
  30. <van-icon name='arrow' class='arrow-icon' />
  31. </template>
  32. </van-cell>
  33. <!-- 加载更多 -->
  34. <div class='load-more' @click>加载更多</div>
  35. </div>
  36. </div>
  37. <!-- 点击头部筛选,出现的右侧弹窗 -->
  38. <!-- 点击头部筛选,出现的右侧弹窗 -->
  39. <van-popup class='m-popup-container' v-model='showPopup' position='right'>
  40. <div class='m-popup'>
  41. <!-- 系统 -->
  42. <div class='system'>
  43. <h1 class='title'>专业系统</h1>
  44. <div class='system-btn-container'>
  45. <div class='system-btn' v-for='(item,index) in systemList' :key='index'>
  46. <van-button class='m-btn' :class='item.active' @click='changeSystem(item)'>{{item.text}}</van-button>
  47. </div>
  48. </div>
  49. </div>
  50. <div class='divider'></div>
  51. <!-- 设备设施 -->
  52. <div class='sbss'>
  53. <h1 class='title'>设备设施</h1>
  54. <!-- TODO: 1 -->
  55. <div class='system-btn-container'>
  56. <div class='system-btn' v-for='(item,index) in sbssList.slice(0,3)' :key='index'>
  57. <van-button size='small' class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
  58. </div>
  59. <div v-if='!loadMore && sbssList.length>3' class='load-more' @click='loadMore= true'>加载更多</div>
  60. <div v-if='loadMore'>
  61. <div class='system-btn' v-for='(item,index) in sbssList.slice(3)' :key='index'>
  62. <van-button size='small' class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <div class='footer'>
  68. <van-button size='large' color='#025BAA' plain type='info' @click='reset'>重置</van-button>
  69. <van-button size='large' color='#025BAA' type='info' @click='confirm'>确定</van-button>
  70. </div>
  71. </div>
  72. </van-popup>
  73. <!-- 无数据 -->
  74. <van-empty class='m-empty' v-if='finished &&!list.length' description='暂无数据'>
  75. <template #image>
  76. <img class='no-data' src='../../assets/images/search_null.png' alt />
  77. </template>
  78. </van-empty>
  79. </div>
  80. </template>
  81. <script>
  82. /**
  83. * 点击更多设备,进入到的更多设备列表页面
  84. */
  85. import Vue from 'vue'
  86. import { NavBar, Search, List, Cell, Icon, Popup, Button, Empty } from 'vant'
  87. Vue.use(NavBar).use(Search).use(List).use(Cell).use(Icon).use(Popup).use(Button).use(Empty)
  88. import { mapGetters } from 'vuex'
  89. import { queryMoreAsset, queryAssetClass } from '@/api/equipmentList'
  90. import { queryPic } from '@/api/public'
  91. import ImagePreview from '@/components/ImagePreview'
  92. import { sleep } from '@/utils/util'
  93. import { cloneDeep } from 'lodash'
  94. export default {
  95. name: 'LowVoltageCabinet',
  96. props: {},
  97. components: { ImagePreview },
  98. data() {
  99. return {
  100. mock: 2,
  101. title: '更多设备',
  102. keyword: '',
  103. page: 1,
  104. size: 20, //TODO: size1500
  105. list: [],
  106. loading: false,
  107. finished: false,
  108. showPopup: false,
  109. systemList: [
  110. { text: '全部', smsxt: '全部', active: 'active' },
  111. { text: '供电系统', smsxt: '1001', active: '' },
  112. { text: '暖通系统', smsxt: '1002', active: '' },
  113. { text: '消防系统', smsxt: '1003', active: '' },
  114. { text: '弱电系统', smsxt: '1004', active: '' },
  115. { text: '给排水系统', smsxt: '1005', active: '' },
  116. { text: '电梯系统', smsxt: '1006', active: '' },
  117. { text: '燃气系统', smsxt: '1007', active: '' },
  118. { text: '土建系统', smsxt: '1008', active: '' },
  119. ],
  120. system_code: '', //系统code
  121. sbss_code: '', //设备设施code
  122. sbssList: [{ text: '全部', code: '全部', active: 'active' }], //设备设施筛选条件
  123. loadMore: false,
  124. // 弹窗中使用数据
  125. modalData: {
  126. system: '',
  127. sbss: '全部',
  128. },
  129. // 弹窗中使用备份数据
  130. modalDataBak: {
  131. system: '',
  132. sbss: '全部',
  133. },
  134. mockList: [
  135. {
  136. assetid: 1206624,
  137. assetnum: '26466',
  138. assetuid: 1221607,
  139. category_code: 'gde',
  140. classstructureid: '1932',
  141. floorcode: 'B2',
  142. fws: '上海恒锦动力科技有限公司',
  143. importance: 12,
  144. is_detecting: false,
  145. is_exception: false,
  146. manufacturer: '上海恒锦动力科技有限公司',
  147. sb_status: '运行',
  148. sbglgs: '商管',
  149. sbjbm: '1',
  150. sbjc: '发电机',
  151. sbxh: 'MX-1030-4',
  152. seq: -200,
  153. sl: 1,
  154. system_code: '1001',
  155. type_code: 'gd0112',
  156. type_name: '柴油发电机组',
  157. wzjc: '商业楼/B2/地下建筑-发电机房-地下1层车库发电机房',
  158. },
  159. {
  160. assetid: 1206624,
  161. assetnum: '26466',
  162. assetuid: 1221607,
  163. category_code: 'gde',
  164. classstructureid: '1933',
  165. floorcode: 'B2',
  166. fws: '上海恒锦动力科技有限公司',
  167. importance: 12,
  168. is_detecting: false,
  169. is_exception: false,
  170. manufacturer: '上海恒锦动力科技有限公司',
  171. sb_status: '运行',
  172. sbglgs: '商管',
  173. sbjbm: '1',
  174. sbjc: '发电机',
  175. sbxh: 'MX-1030-4',
  176. seq: -200,
  177. sl: 1,
  178. system_code: '1001',
  179. type_code: 'gd0112',
  180. type_name: '柴油发电机组',
  181. wzjc: '商业楼/B2/地下建筑-发电机房-地下2层车库发电机房',
  182. },
  183. {
  184. assetid: 1206624,
  185. assetnum: '26466',
  186. assetuid: 1221607,
  187. category_code: 'gde',
  188. classstructureid: '1933',
  189. floorcode: 'B2',
  190. fws: '上海恒锦动力科技有限公司',
  191. importance: 12,
  192. is_detecting: false,
  193. is_exception: false,
  194. manufacturer: '上海恒锦动力科技有限公司',
  195. sb_status: '运行',
  196. sbglgs: '商管',
  197. sbjbm: '1',
  198. sbjc: '发电机',
  199. sbxh: 'MX-1030-4',
  200. seq: -200,
  201. sl: 1,
  202. system_code: '1001',
  203. type_code: 'gd0112',
  204. type_name: '柴油发电机组',
  205. wzjc: '商业楼/B2/地下建筑-发电机房-地下3层车库发电机房',
  206. },
  207. {
  208. assetid: 1206624,
  209. assetnum: '26466',
  210. assetuid: 1221607,
  211. category_code: 'gde',
  212. classstructureid: '1933',
  213. floorcode: 'B2',
  214. fws: '上海恒锦动力科技有限公司',
  215. importance: 12,
  216. is_detecting: false,
  217. is_exception: false,
  218. manufacturer: '上海恒锦动力科技有限公司',
  219. sb_status: '运行',
  220. sbglgs: '商管',
  221. sbjbm: '1',
  222. sbjc: '发电机',
  223. sbxh: 'MX-1030-4',
  224. seq: -200,
  225. sl: 1,
  226. system_code: '1001',
  227. type_code: 'gd0112',
  228. type_name: '柴油发电机组',
  229. wzjc: '商业楼/B2/地下建筑-发电机房-地下4层车库发电机房',
  230. },
  231. ],
  232. }
  233. },
  234. computed: {
  235. ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
  236. },
  237. created() {
  238. this.system_code = this.smsxt
  239. this.onLoad()
  240. },
  241. beforeMount() {},
  242. mounted() {},
  243. methods: {
  244. backPage() {
  245. this.$router.go(-1)
  246. },
  247. /**
  248. * 点击右侧筛选
  249. */
  250. handleRightClick() {
  251. this.showPopup = true
  252. // 设置选中的专业系统
  253. this.changeSystem({ smsxt: this.system_code })
  254. this.loadMore = false
  255. this.sbssList = [{ text: '全部', code: '', active: 'active' }]
  256. // 查询筛选条件的 设备设施
  257. this.getSbss()
  258. },
  259. /**
  260. * 获取设备列表
  261. */
  262. async getList() {
  263. let data = {
  264. page: this.page,
  265. size: this.size,
  266. plazaId: this.plazaId,
  267. onlyMainAsset: true,
  268. }
  269. let postParams = {
  270. system_code: this.system_code,
  271. }
  272. // 筛选后,专业系统选择全部, 删除上传system_code的字段
  273. if (!this.system_code || this.system_code === '全部') {
  274. delete postParams.system_code
  275. }
  276. // TODO: 筛选后, 使用classstructureid字段
  277. if (this.sbss_code) {
  278. data.classstructureid = this.sbss_code
  279. }
  280. // TODO: keyword
  281. if (this.keyword) {
  282. data.keyword = `${this.keyword}:sbjc,assetnum;`
  283. }
  284. let resData = await queryMoreAsset({ data, postParams })
  285. if (!resData && !resData?.data) {
  286. return false
  287. }
  288. console.log(resData)
  289. },
  290. async onLoad() {
  291. console.log('onload')
  292. if (this.page > 1) {
  293. await sleep(1000)
  294. }
  295. await this.getList()
  296. this.page++
  297. this.loading = false
  298. if (this.list.length >= this.count) {
  299. this.finished = true
  300. }
  301. },
  302. /**
  303. * 跳转设备详情页
  304. */
  305. goToDetail(item) {
  306. const { assetid } = item
  307. assetid && this.$router.push({ name: 'AssetDetail', query: { assetid } })
  308. },
  309. onSearch() {
  310. // 初始化数据,查询列表
  311. },
  312. /**
  313. * 初始化数据,查询列表
  314. */
  315. initData() {
  316. this.finished = false
  317. this.page = 1
  318. this.count = 0
  319. this.list = []
  320. },
  321. /**
  322. * popup 更改系统
  323. */
  324. changeSystem(data) {
  325. console.log(data)
  326. let systemList = this.systemList
  327. systemList.map((item) => {
  328. item.active = ''
  329. if (item.smsxt === data.smsxt) {
  330. item.active = 'active'
  331. }
  332. })
  333. // 弹窗选中的系统
  334. this.$set(this.modalDataBak, 'system', data.smsxt)
  335. this.getSbss(data.smsxt)
  336. },
  337. /**
  338. * popup 更改设备设施
  339. */
  340. changeSbss(data) {
  341. let sbssList = this.sbssList
  342. sbssList.map((item) => {
  343. item.active = ''
  344. if (item.text === data.text && item.code === data.code) {
  345. item.active = 'active'
  346. }
  347. })
  348. // 弹窗选中的系统
  349. // TODO: 111
  350. console.log(data)
  351. this.$set(this.modalDataBak, 'sbss', data.code)
  352. },
  353. /**
  354. * 获取设备设施筛选条件
  355. * @param smsxt 右弹窗 更改专业系统传递参数
  356. */
  357. async getSbss(smsxt) {
  358. console.log(this.smsxt, this.system_code)
  359. let getParams = {
  360. system_code: smsxt || this.smsxt,
  361. }
  362. if (smsxt === '全部') {
  363. delete getParams.system_code
  364. }
  365. let resData = await queryAssetClass({ getParams })
  366. console.log(resData)
  367. if (!resData && !resData?.data) {
  368. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }]
  369. return false
  370. }
  371. let res_data = resData.data || []
  372. let sbssList = []
  373. res_data.map((item) => {
  374. sbssList.push({
  375. text: item.classqc,
  376. active: '',
  377. // code: detail.systemqm,
  378. code: item.classstructureid,
  379. })
  380. })
  381. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }, ...sbssList]
  382. },
  383. /**
  384. * 重置
  385. */
  386. reset() {
  387. this.modalDataBak = {
  388. system: '',
  389. sbss: '全部',
  390. }
  391. this.modalData = {
  392. system: '',
  393. sbss: '全部',
  394. }
  395. this.system_code = this.smsxt
  396. this.sbss_code = ''
  397. this.showPopup = false
  398. // 初始化数据,查询列表
  399. this.initData()
  400. this.onLoad()
  401. },
  402. /**
  403. * 弹窗确认
  404. */
  405. confirm() {
  406. this.modalData = cloneDeep(this.modalDataBak)
  407. this.showPopup = false
  408. this.system_code = this.modalData.system
  409. this.sbss_code = this.modalData.sbss
  410. // 初始化数据,查询列表
  411. this.initData()
  412. this.onLoad()
  413. },
  414. },
  415. }
  416. </script>
  417. <style lang='less' scoped>
  418. .more-equipment {
  419. width: 100%;
  420. height: 100%;
  421. background-color: #f5f6f7;
  422. // 返回箭头修改
  423. /deep/ .van-nav-bar .van-icon {
  424. color: #000;
  425. }
  426. // 搜索
  427. .equipment-search-container {
  428. width: 100%;
  429. height: 55px;
  430. // background-color: #fff;
  431. text-align: center;
  432. .equipment-search {
  433. width: 80%;
  434. margin: 0 auto;
  435. background: none;
  436. }
  437. .van-search__content {
  438. background: #fff;
  439. border-radius: 50px;
  440. }
  441. }
  442. // 配电室列表
  443. .equipment-container {
  444. width: 100%;
  445. // background-color: #fff;
  446. min-height: 1px;
  447. // TODO:
  448. max-height: calc(100% - 100px);
  449. overflow: auto;
  450. font-size: 14px;
  451. font-weight: 400;
  452. color: #333333;
  453. .switch-room {
  454. width: 100%;
  455. max-height: 390px;
  456. display: flex;
  457. flex-direction: column;
  458. // 浅蓝色title
  459. .title {
  460. padding: 0 15px;
  461. color: #025baa;
  462. height: 45px;
  463. background: rgba(2, 91, 170, 0.1);
  464. font-size: 16px;
  465. font-weight: 500;
  466. color: #025baa;
  467. line-height: 45px;
  468. display: flex;
  469. justify-content: space-between;
  470. }
  471. /deep/ .van-cell {
  472. display: flex;
  473. align-items: center;
  474. .van-cell__title {
  475. display: flex;
  476. vertical-align: center;
  477. .number {
  478. width: 35px;
  479. display: flex;
  480. align-items: center;
  481. }
  482. .name {
  483. display: flex;
  484. align-items: center;
  485. padding: 0 10px;
  486. }
  487. }
  488. }
  489. .arrow-icon {
  490. font-size: 16px;
  491. line-height: inherit !important;
  492. color: #333333 !important;
  493. }
  494. // 维修
  495. .wx,
  496. .wb {
  497. color: #d83931;
  498. display: inline-block;
  499. width: 44px;
  500. margin-right: 10px;
  501. background: #fbeceb;
  502. border-radius: 2px;
  503. text-align: center;
  504. }
  505. .wb {
  506. color: #0481e1;
  507. background: #e6f3fc;
  508. }
  509. // 加载更多
  510. .load-more {
  511. width: 80px;
  512. height: 25px;
  513. line-height: 25px;
  514. text-align: center;
  515. margin: 10px auto;
  516. color: #025baa;
  517. background: #e5eef6;
  518. }
  519. }
  520. }
  521. // 空状态
  522. .m-empty {
  523. // position: fixed;
  524. // top: 0;
  525. // left: 0;
  526. // width: 100%;
  527. // height: 100%;
  528. display: flex;
  529. align-items: center;
  530. /deep/ .van-empty__image {
  531. display: flex;
  532. justify-content: center;
  533. align-items: flex-end;
  534. img {
  535. width: auto;
  536. height: auto;
  537. }
  538. }
  539. }
  540. // 筛选弹窗
  541. .m-popup-container {
  542. width: 80%;
  543. height: 100%;
  544. padding: 55px 20px 10px 20px;
  545. .m-popup {
  546. width: 100%;
  547. height: calc(100% - 80px);
  548. display: flex;
  549. flex-direction: column;
  550. .title {
  551. font-size: 16px;
  552. font-weight: 500;
  553. color: #333333;
  554. margin-bottom: 15px;
  555. }
  556. // 专业
  557. .system {
  558. width: 100%;
  559. height: auto;
  560. // 专业系统按钮
  561. .system-btn-container {
  562. display: flex;
  563. width: 100%;
  564. flex-wrap: wrap;
  565. flex-flow: wrap;
  566. .system-btn {
  567. width: 50% !important;
  568. min-width: 50% !important;
  569. max-width: 50% !important;
  570. height: 40px;
  571. box-sizing: border-box;
  572. padding: 10px 10px 10px 0;
  573. .m-btn {
  574. width: 100%;
  575. height: 32px !important;
  576. text-align: center;
  577. background: #eff0f1;
  578. border-radius: 2px;
  579. }
  580. }
  581. }
  582. .active {
  583. background-color: #025baa !important;
  584. color: #fff;
  585. }
  586. }
  587. // 设备设施
  588. .sbss {
  589. flex: 1;
  590. display: flex;
  591. flex-direction: column;
  592. overflow: auto;
  593. .title {
  594. width: 100%;
  595. height: 25px;
  596. }
  597. .system-btn-container {
  598. width: 100%;
  599. height: 40px;
  600. flex: 1;
  601. overflow: auto;
  602. .system-btn {
  603. width: 100% !important;
  604. box-sizing: border-box;
  605. background: #eff0f1 !important;
  606. margin: 10px 0 10px 0;
  607. .m-btn {
  608. display: block !important;
  609. width: 100% !important;
  610. height: 32px !important;
  611. text-align: center;
  612. background: #eff0f1;
  613. border-radius: 2px;
  614. }
  615. }
  616. }
  617. .active {
  618. background-color: #025baa !important;
  619. color: #fff;
  620. }
  621. .load-more {
  622. width: 80px;
  623. height: 25px;
  624. line-height: 25px;
  625. text-align: center;
  626. margin: 0 auto;
  627. color: #025baa;
  628. background: #e5eef6;
  629. }
  630. }
  631. .divider {
  632. border-bottom: 1px solid #e6e6e6;
  633. margin: 20px 0;
  634. }
  635. .footer {
  636. position: absolute;
  637. bottom: 30px;
  638. right: 0;
  639. width: 100%;
  640. height: 35px;
  641. display: flex;
  642. justify-content: space-around;
  643. .van-button {
  644. width: 40%;
  645. height: 100%;
  646. max-width: 40%;
  647. min-width: 40%;
  648. }
  649. }
  650. }
  651. }
  652. }
  653. </style>