EquipmentList.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. <template>
  2. <div class='equipment-page'>
  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' @focus='focus'>
  12. <!-- TODO: 空状态 自定义图标 -->
  13. <!-- <template #action>
  14. <div class='search' @click='onSearch'>搜索</div>
  15. </template>-->
  16. </van-search>
  17. </div>
  18. <!-- 设备列表 -->
  19. <div class='equipment-list' v-if='list.length'>
  20. <van-list v-model='loading' :finished='finished' finished-text='没有更多了' :offset='20' :immediate-check='false' @load='onLoad'>
  21. <!-- <van-cell v-for='item in list' :key='item' :title='item' /> -->
  22. <van-cell is-link v-for='item in list' :key='item.classstructureid'>
  23. <!-- 使用 title 插槽来自定义标题 -->
  24. <template #title>
  25. <span class='number'>{{item.classstructureid}}</span>
  26. <span class='name'>{{item.sbjc}}</span>
  27. </template>
  28. <template #right-icon>
  29. <span class='wx' v-if='item._type === "维修"'>维修</span>
  30. <span class='wb' v-else-if='item._type === "维保"'>维保</span>
  31. <van-icon name='arrow' class='arrow-icon' />
  32. </template>
  33. </van-cell>
  34. </van-list>
  35. </div>
  36. <!-- 无数据 -->
  37. <van-empty class='m-empty' v-if='finished &&!list.length' description='暂无数据'>
  38. <template #image>
  39. <img class='no-data' src='../../assets/images/search_null.png' alt />
  40. </template>
  41. </van-empty>
  42. <!-- 点击头部筛选,出现的右侧弹窗 -->
  43. <van-popup class='m-popup-container' v-model='showPopup' position='right'>
  44. <div class='m-popup'>
  45. <!-- 系统 -->
  46. <div class='system'>
  47. <h1 class='title'>专业系统</h1>
  48. <div class='system-btn-container'>
  49. <div class='system-btn' v-for='(item,index) in systemList' :key='index'>
  50. <van-button class='m-btn' :class='item.active' @click='changeSystem(item)'>{{item.text}}</van-button>
  51. </div>
  52. </div>
  53. </div>
  54. <div class='divider'></div>
  55. <!-- 设备设施 -->
  56. <div class='sbss'>
  57. <h1 class='title'>设备设施</h1>
  58. <!-- TODO: 1 -->
  59. <div class='system-btn-container'>
  60. <div class='system-btn' v-for='(item,index) in sbssList.slice(0,3)' :key='index'>
  61. <van-button size='small' class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
  62. </div>
  63. <div v-if='!loadMore && sbssList.length>3' class='load-more' @click='loadMore= true'>加载更多</div>
  64. <div v-if='loadMore'>
  65. <div class='system-btn' v-for='(item,index) in sbssList.slice(3)' :key='index'>
  66. <van-button size='small' class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <div class='footer'>
  72. <van-button size='large' color='#025BAA' plain type='info' @click='reset'>重置</van-button>
  73. <van-button size='large' color='#025BAA' type='info' @click='confirm'>确定</van-button>
  74. </div>
  75. </div>
  76. </van-popup>
  77. </div>
  78. </template>
  79. <script>
  80. /**
  81. * 设备页面(正常/或者维修或维保)
  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 { queryEquipmentList, queryAssetClass } from '@/api/equipmentList'
  90. import { sleep } from '@/utils/util'
  91. import { cloneDeep } from 'lodash'
  92. export default {
  93. name: 'EngineRoomPicture',
  94. props: {},
  95. data() {
  96. return {
  97. title: '',
  98. keyword: '',
  99. page: 1,
  100. size: 20,
  101. list: [],
  102. loading: false,
  103. finished: false,
  104. category_code: '',
  105. showPopup: false,
  106. systemList: [
  107. { text: '全部', smsxt: '全部', active: 'active' },
  108. { text: '供电系统', smsxt: '1001', active: '' },
  109. { text: '暖通系统', smsxt: '1002', active: '' },
  110. { text: '消防系统', smsxt: '1003', active: '' },
  111. { text: '弱电系统', smsxt: '1004', active: '' },
  112. { text: '给排水系统', smsxt: '1005', active: '' },
  113. { text: '电梯系统', smsxt: '1006', active: '' },
  114. { text: '燃气系统', smsxt: '1007', active: '' },
  115. { text: '土建系统', smsxt: '1008', active: '' },
  116. ],
  117. system_code: '', //系统code
  118. sbss_code: '', //设备设施code
  119. sbssList: [{ text: '全部', code: '全部', active: 'active' }], //设备设施筛选条件
  120. loadMore: false,
  121. // 弹窗中使用数据
  122. modalData: {
  123. system: '',
  124. sbss: '全部',
  125. },
  126. // 弹窗中使用备份数据
  127. modalDataBak: {
  128. system: '',
  129. sbss: '全部',
  130. },
  131. }
  132. },
  133. computed: {
  134. ...mapGetters(['plazaId', 'smsxt', 'categoryId']),
  135. },
  136. components: {},
  137. created() {
  138. this.system_code = this.smsxt
  139. let { title, category_code } = this.$route.params
  140. this.title = title
  141. this.category_code = category_code
  142. this.onLoad()
  143. },
  144. beforeMount() {},
  145. mounted() {},
  146. methods: {
  147. backPage() {
  148. this.$router.go(-1)
  149. },
  150. /**
  151. * 点击右侧筛选
  152. */
  153. handleRightClick() {
  154. this.showPopup = true
  155. // 设置选中的专业系统
  156. this.changeSystem({ smsxt: this.system_code })
  157. this.loadMore = false
  158. this.sbssList = [{ text: '全部', code: '', active: 'active' }]
  159. // 查询筛选条件的 设备设施
  160. this.getSbss()
  161. },
  162. /**
  163. * 获取设备列表
  164. */
  165. async getList() {
  166. console.log('getList')
  167. let data = {
  168. page: this.page,
  169. size: this.size,
  170. plazaId: this.plazaId,
  171. onlyMainAsset: true,
  172. }
  173. let postParams = {
  174. system_code: this.system_code,
  175. category_code: this.category_code,
  176. }
  177. // 筛选后,专业系统选择全部, 删除上传system_code的字段
  178. if (!this.system_code || this.system_code === '全部') {
  179. delete postParams.system_code
  180. }
  181. // TODO: 筛选后, 使用classstructureid字段,删除category_code字段
  182. if (this.sbss_code) {
  183. this.sbss_code !== '全部' && (data.classstructureid = this.sbss_code)
  184. delete postParams.category_code
  185. }
  186. // TODO: keyword
  187. if (this.keyword) {
  188. data.keyword = `${this.keyword}:sbjc,assetnum;`
  189. }
  190. let resData = await queryEquipmentList({ data, postParams })
  191. if (!resData && !resData?.data) {
  192. return false
  193. }
  194. let res_data = resData.data?.data || []
  195. res_data.map((item) => {
  196. item._type = '正常'
  197. // 检测中
  198. if (item.is_detecting) {
  199. item._type = '维保'
  200. }
  201. // 异常
  202. if (item.is_exception) {
  203. item._type = '维修'
  204. }
  205. })
  206. this.list = this.list.concat(res_data)
  207. this.count = resData.data?.count
  208. // console.log(JSON.stringify(res_data, null, 2))
  209. },
  210. async onLoad() {
  211. console.log('onload')
  212. if (this.page > 1) {
  213. await sleep(1000)
  214. }
  215. await this.getList()
  216. this.page++
  217. this.loading = false
  218. if (this.list.length >= this.count) {
  219. this.finished = true
  220. }
  221. },
  222. /**
  223. * 搜索
  224. */
  225. onSearch() {
  226. // 初始化数据,查询列表
  227. this.initData()
  228. this.onLoad()
  229. },
  230. focus() {
  231. console.log(1123123123123)
  232. },
  233. /**
  234. * 初始化数据,查询列表
  235. */
  236. initData() {
  237. this.finished = false
  238. this.page = 1
  239. this.count = 0
  240. this.list = []
  241. },
  242. /**
  243. * popup 更改系统
  244. */
  245. changeSystem(data) {
  246. console.log(data)
  247. let systemList = this.systemList
  248. systemList.map((item) => {
  249. item.active = ''
  250. if (item.smsxt === data.smsxt) {
  251. item.active = 'active'
  252. }
  253. })
  254. // 弹窗选中的系统
  255. this.$set(this.modalDataBak, 'system', data.smsxt)
  256. this.getSbss(data.smsxt)
  257. },
  258. /**
  259. * popup 更改设备设施
  260. */
  261. changeSbss(data) {
  262. let sbssList = this.sbssList
  263. sbssList.map((item) => {
  264. item.active = ''
  265. if (item.text === data.text && item.code === data.code) {
  266. item.active = 'active'
  267. }
  268. })
  269. // 弹窗选中的系统
  270. // TODO: 111
  271. console.log(data)
  272. this.$set(this.modalDataBak, 'sbss', data.code)
  273. },
  274. /**
  275. * 获取设备设施筛选条件
  276. * @param smsxt 右弹窗 更改专业系统传递参数
  277. */
  278. async getSbss(smsxt) {
  279. console.log(this.smsxt, this.system_code)
  280. let getParams = {
  281. system_code: smsxt || this.smsxt,
  282. }
  283. if (smsxt === '全部') {
  284. delete getParams.system_code
  285. }
  286. let resData = await queryAssetClass({ getParams })
  287. console.log(resData)
  288. if (!resData && !resData?.data) {
  289. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }]
  290. return false
  291. }
  292. let res_data = resData.data || []
  293. let sbssList = []
  294. res_data.map((item) => {
  295. sbssList.push({
  296. text: item.classqc,
  297. active: '',
  298. // code: detail.systemqm,
  299. code: item.classstructureid,
  300. })
  301. })
  302. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }, ...sbssList]
  303. },
  304. /**
  305. * 重置
  306. */
  307. reset() {
  308. this.modalDataBak = {
  309. system: '',
  310. sbss: '全部',
  311. }
  312. this.modalData = {
  313. system: '',
  314. sbss: '全部',
  315. }
  316. this.system_code = this.smsxt
  317. this.sbss_code = ''
  318. this.showPopup = false
  319. // 初始化数据,查询列表
  320. this.initData()
  321. this.onLoad()
  322. },
  323. /**
  324. * 弹窗确认
  325. */
  326. confirm() {
  327. this.modalData = cloneDeep(this.modalDataBak)
  328. this.showPopup = false
  329. this.system_code = this.modalData.system
  330. this.sbss_code = this.modalData.sbss
  331. // 初始化数据,查询列表
  332. this.initData()
  333. this.onLoad()
  334. },
  335. },
  336. }
  337. </script>
  338. <style lang='less' scoped>
  339. .equipment-page {
  340. width: 100%;
  341. height: 100%;
  342. background-color: #f5f6f7;
  343. // 返回箭头修改
  344. /deep/ .van-nav-bar .van-icon {
  345. color: #000;
  346. }
  347. // 搜索
  348. .equipment-search-container {
  349. width: 100%;
  350. height: 55px;
  351. // background-color: #fff;
  352. text-align: center;
  353. .equipment-search {
  354. width: 80%;
  355. margin: 0 auto;
  356. background: none;
  357. }
  358. .van-search__content {
  359. background: #fff;
  360. border-radius: 50px;
  361. }
  362. }
  363. // 设备列表
  364. .equipment-list {
  365. width: 100%;
  366. padding: 0 10px;
  367. background-color: #fff;
  368. min-height: 1px;
  369. max-height: calc(100% - 100px);
  370. overflow: auto;
  371. font-size: 14px;
  372. font-weight: 400;
  373. color: #333333;
  374. /deep/ .van-cell {
  375. display: flex;
  376. align-items: center;
  377. .van-cell__title {
  378. display: flex;
  379. vertical-align: center;
  380. .number {
  381. width: 35px;
  382. display: flex;
  383. align-items: center;
  384. }
  385. .name {
  386. display: flex;
  387. align-items: center;
  388. padding: 0 10px;
  389. }
  390. }
  391. }
  392. .arrow-icon {
  393. font-size: 16px;
  394. line-height: inherit !important;
  395. color: #333333 !important;
  396. }
  397. // 维修
  398. .wx,
  399. .wb {
  400. color: #d83931;
  401. display: inline-block;
  402. width: 44px;
  403. margin-right: 10px;
  404. background: #fbeceb;
  405. border-radius: 2px;
  406. text-align: center;
  407. }
  408. .wb {
  409. color: #0481e1;
  410. background: #e6f3fc;
  411. }
  412. }
  413. // 空状态
  414. .m-empty {
  415. position: fixed;
  416. top: 0;
  417. left: 0;
  418. width: 100%;
  419. height: 100%;
  420. display: flex;
  421. align-items: center;
  422. /deep/ .van-empty__image {
  423. display: flex;
  424. justify-content: center;
  425. align-items: flex-end;
  426. img {
  427. width: auto;
  428. height: auto;
  429. }
  430. }
  431. }
  432. // 筛选弹窗
  433. .m-popup-container {
  434. width: 80%;
  435. height: 100%;
  436. padding: 55px 20px 10px 20px;
  437. .m-popup {
  438. width: 100%;
  439. height: calc(100% - 80px);
  440. display: flex;
  441. flex-direction: column;
  442. .title {
  443. font-size: 16px;
  444. font-weight: 500;
  445. color: #333333;
  446. margin-bottom: 15px;
  447. }
  448. // 专业
  449. .system {
  450. width: 100%;
  451. height: auto;
  452. // 专业系统按钮
  453. .system-btn-container {
  454. display: flex;
  455. width: 100%;
  456. flex-wrap: wrap;
  457. flex-flow: wrap;
  458. .system-btn {
  459. width: 50% !important;
  460. min-width: 50% !important;
  461. max-width: 50% !important;
  462. height: 40px;
  463. box-sizing: border-box;
  464. padding: 10px 10px 10px 0;
  465. .m-btn {
  466. width: 100%;
  467. height: 32px !important;
  468. text-align: center;
  469. background: #eff0f1;
  470. border-radius: 2px;
  471. }
  472. }
  473. }
  474. .active {
  475. background-color: #025baa !important;
  476. color: #fff;
  477. }
  478. }
  479. // 设备设施
  480. .sbss {
  481. flex: 1;
  482. display: flex;
  483. flex-direction: column;
  484. overflow: auto;
  485. .title {
  486. width: 100%;
  487. height: 25px;
  488. }
  489. .system-btn-container {
  490. width: 100%;
  491. height: 40px;
  492. flex: 1;
  493. overflow: auto;
  494. .system-btn {
  495. width: 100% !important;
  496. box-sizing: border-box;
  497. background: #eff0f1 !important;
  498. margin: 10px 0 10px 0;
  499. .m-btn {
  500. display: block !important;
  501. width: 100% !important;
  502. height: 32px !important;
  503. text-align: center;
  504. background: #eff0f1;
  505. border-radius: 2px;
  506. }
  507. }
  508. }
  509. .active {
  510. background-color: #025baa !important;
  511. color: #fff;
  512. }
  513. .load-more {
  514. width: 80px;
  515. height: 25px;
  516. line-height: 25px;
  517. text-align: center;
  518. margin: 0 auto;
  519. color: #025baa;
  520. background: #e5eef6;
  521. }
  522. }
  523. .divider {
  524. border-bottom: 1px solid #e6e6e6;
  525. margin: 20px 0;
  526. }
  527. .footer {
  528. position: absolute;
  529. bottom: 30px;
  530. right: 0;
  531. width: 100%;
  532. height: 35px;
  533. display: flex;
  534. justify-content: space-around;
  535. .van-button {
  536. width: 40%;
  537. height: 100%;
  538. max-width: 40%;
  539. min-width: 40%;
  540. }
  541. }
  542. }
  543. }
  544. }
  545. </style>