EquipmentList.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  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' @click='goToDetail(item)' :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. goToDetail(item) {
  226. const { assetid } = item
  227. assetid && this.$router.push({ name: 'AssetDetail', query: { assetid } })
  228. },
  229. /**
  230. * 搜索
  231. */
  232. onSearch() {
  233. // 初始化数据,查询列表
  234. this.initData()
  235. this.onLoad()
  236. },
  237. focus() {
  238. console.log(1123123123123)
  239. },
  240. /**
  241. * 初始化数据,查询列表
  242. */
  243. initData() {
  244. this.finished = false
  245. this.page = 1
  246. this.count = 0
  247. this.list = []
  248. },
  249. /**
  250. * popup 更改系统
  251. */
  252. changeSystem(data) {
  253. console.log(data)
  254. let systemList = this.systemList
  255. systemList.map((item) => {
  256. item.active = ''
  257. if (item.smsxt === data.smsxt) {
  258. item.active = 'active'
  259. }
  260. })
  261. // 弹窗选中的系统
  262. this.$set(this.modalDataBak, 'system', data.smsxt)
  263. this.getSbss(data.smsxt)
  264. },
  265. /**
  266. * popup 更改设备设施
  267. */
  268. changeSbss(data) {
  269. let sbssList = this.sbssList
  270. sbssList.map((item) => {
  271. item.active = ''
  272. if (item.text === data.text && item.code === data.code) {
  273. item.active = 'active'
  274. }
  275. })
  276. // 弹窗选中的系统
  277. // TODO: 111
  278. console.log(data)
  279. this.$set(this.modalDataBak, 'sbss', data.code)
  280. },
  281. /**
  282. * 获取设备设施筛选条件
  283. * @param smsxt 右弹窗 更改专业系统传递参数
  284. */
  285. async getSbss(smsxt) {
  286. console.log(this.smsxt, this.system_code)
  287. let getParams = {
  288. system_code: smsxt || this.smsxt,
  289. }
  290. if (smsxt === '全部') {
  291. delete getParams.system_code
  292. }
  293. let resData = await queryAssetClass({ getParams })
  294. console.log(resData)
  295. if (!resData && !resData?.data) {
  296. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }]
  297. return false
  298. }
  299. let res_data = resData.data || []
  300. let sbssList = []
  301. res_data.map((item) => {
  302. sbssList.push({
  303. text: item.classqc,
  304. active: '',
  305. // code: detail.systemqm,
  306. code: item.classstructureid,
  307. })
  308. })
  309. this.sbssList = [{ text: '全部', code: '全部', active: 'active' }, ...sbssList]
  310. },
  311. /**
  312. * 重置
  313. */
  314. reset() {
  315. this.modalDataBak = {
  316. system: '',
  317. sbss: '全部',
  318. }
  319. this.modalData = {
  320. system: '',
  321. sbss: '全部',
  322. }
  323. this.system_code = this.smsxt
  324. this.sbss_code = ''
  325. this.showPopup = false
  326. // 初始化数据,查询列表
  327. this.initData()
  328. this.onLoad()
  329. },
  330. /**
  331. * 弹窗确认
  332. */
  333. confirm() {
  334. this.modalData = cloneDeep(this.modalDataBak)
  335. this.showPopup = false
  336. this.system_code = this.modalData.system
  337. this.sbss_code = this.modalData.sbss
  338. // 初始化数据,查询列表
  339. this.initData()
  340. this.onLoad()
  341. },
  342. },
  343. }
  344. </script>
  345. <style lang='less' scoped>
  346. .equipment-page {
  347. width: 100%;
  348. height: 100%;
  349. background-color: #f5f6f7;
  350. // 返回箭头修改
  351. /deep/ .van-nav-bar .van-icon {
  352. color: #000;
  353. }
  354. // 搜索
  355. .equipment-search-container {
  356. width: 100%;
  357. height: 55px;
  358. // background-color: #fff;
  359. text-align: center;
  360. .equipment-search {
  361. width: 80%;
  362. margin: 0 auto;
  363. background: none;
  364. }
  365. .van-search__content {
  366. background: #fff;
  367. border-radius: 50px;
  368. }
  369. }
  370. // 设备列表
  371. .equipment-list {
  372. width: 100%;
  373. padding: 0 10px;
  374. background-color: #fff;
  375. min-height: 1px;
  376. max-height: calc(100% - 100px);
  377. overflow: auto;
  378. font-size: 14px;
  379. font-weight: 400;
  380. color: #333333;
  381. /deep/ .van-cell {
  382. display: flex;
  383. align-items: center;
  384. .van-cell__title {
  385. display: flex;
  386. vertical-align: center;
  387. .number {
  388. width: 35px;
  389. display: flex;
  390. align-items: center;
  391. }
  392. .name {
  393. display: flex;
  394. align-items: center;
  395. padding: 0 10px;
  396. }
  397. }
  398. }
  399. .arrow-icon {
  400. font-size: 16px;
  401. line-height: inherit !important;
  402. color: #333333 !important;
  403. }
  404. // 维修
  405. .wx,
  406. .wb {
  407. color: #d83931;
  408. display: inline-block;
  409. width: 44px;
  410. margin-right: 10px;
  411. background: #fbeceb;
  412. border-radius: 2px;
  413. text-align: center;
  414. }
  415. .wb {
  416. color: #0481e1;
  417. background: #e6f3fc;
  418. }
  419. }
  420. // 空状态
  421. .m-empty {
  422. // position: fixed;
  423. // top: 0;
  424. // left: 0;
  425. // width: 100%;
  426. // height: 100%;
  427. display: flex;
  428. align-items: center;
  429. /deep/ .van-empty__image {
  430. display: flex;
  431. justify-content: center;
  432. align-items: flex-end;
  433. img {
  434. width: auto;
  435. height: auto;
  436. }
  437. }
  438. }
  439. // 筛选弹窗
  440. .m-popup-container {
  441. width: 80%;
  442. height: 100%;
  443. padding: 55px 20px 10px 20px;
  444. .m-popup {
  445. width: 100%;
  446. height: calc(100% - 80px);
  447. display: flex;
  448. flex-direction: column;
  449. .title {
  450. font-size: 16px;
  451. font-weight: 500;
  452. color: #333333;
  453. margin-bottom: 15px;
  454. }
  455. // 专业
  456. .system {
  457. width: 100%;
  458. height: auto;
  459. // 专业系统按钮
  460. .system-btn-container {
  461. display: flex;
  462. width: 100%;
  463. flex-wrap: wrap;
  464. flex-flow: wrap;
  465. .system-btn {
  466. width: 50% !important;
  467. min-width: 50% !important;
  468. max-width: 50% !important;
  469. height: 40px;
  470. box-sizing: border-box;
  471. padding: 10px 10px 10px 0;
  472. .m-btn {
  473. width: 100%;
  474. height: 32px !important;
  475. text-align: center;
  476. background: #eff0f1;
  477. border-radius: 2px;
  478. }
  479. }
  480. }
  481. .active {
  482. background-color: #025baa !important;
  483. color: #fff;
  484. }
  485. }
  486. // 设备设施
  487. .sbss {
  488. flex: 1;
  489. display: flex;
  490. flex-direction: column;
  491. overflow: auto;
  492. .title {
  493. width: 100%;
  494. height: 25px;
  495. }
  496. .system-btn-container {
  497. width: 100%;
  498. height: 40px;
  499. flex: 1;
  500. overflow: auto;
  501. .system-btn {
  502. width: 100% !important;
  503. box-sizing: border-box;
  504. background: #eff0f1 !important;
  505. margin: 10px 0 10px 0;
  506. .m-btn {
  507. display: block !important;
  508. width: 100% !important;
  509. height: 32px !important;
  510. text-align: center;
  511. background: #eff0f1;
  512. border-radius: 2px;
  513. }
  514. }
  515. }
  516. .active {
  517. background-color: #025baa !important;
  518. color: #fff;
  519. }
  520. .load-more {
  521. width: 80px;
  522. height: 25px;
  523. line-height: 25px;
  524. text-align: center;
  525. margin: 0 auto;
  526. color: #025baa;
  527. background: #e5eef6;
  528. }
  529. }
  530. .divider {
  531. border-bottom: 1px solid #e6e6e6;
  532. margin: 20px 0;
  533. }
  534. .footer {
  535. position: absolute;
  536. bottom: 30px;
  537. right: 0;
  538. width: 100%;
  539. height: 35px;
  540. display: flex;
  541. justify-content: space-around;
  542. .van-button {
  543. width: 40%;
  544. height: 100%;
  545. max-width: 40%;
  546. min-width: 40%;
  547. }
  548. }
  549. }
  550. }
  551. }
  552. </style>