AssetDetail.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. <template>
  2. <div class="asset-detail" v-show="isFinish >= 2">
  3. <van-nav-bar
  4. :title="isMaintenanceShow || isRepairShow ? '设备详情' : '设备信息'"
  5. @click-left="backPage"
  6. @click-right="handleRightClick"
  7. >
  8. <template #left>
  9. <van-icon name="arrow-left" size="18" color="#333333" />
  10. </template>
  11. <template #right v-if="active == 1 || active == 2">
  12. <i class="iconfont wanda-scan"></i>
  13. </template>
  14. </van-nav-bar>
  15. <div class="asset-information" v-if="!isMaintenanceShow && !isRepairShow">
  16. <Information :data="informationData" />
  17. </div>
  18. <van-tabs
  19. v-else
  20. v-model="active"
  21. class="other-tabs"
  22. color="#025BAA"
  23. @change="changeTab"
  24. title-active-color="#025BAA"
  25. :line-width="60"
  26. >
  27. <van-tab title="设备信息">
  28. <Information :data="informationData" />
  29. </van-tab>
  30. <van-tab v-if="isMaintenanceShow" title="重要维保">
  31. <RepairMaintenance
  32. ref="maintenance"
  33. type="maintenance"
  34. :list="maintenanceData"
  35. @onSearch="getData"
  36. />
  37. </van-tab>
  38. <van-tab v-if="isRepairShow" title="重要维修">
  39. <RepairMaintenance
  40. ref="repair"
  41. type="repair"
  42. :list="repairData"
  43. @onSearch="getData"
  44. />
  45. </van-tab>
  46. </van-tabs>
  47. <!-- 点击头部筛选,出现的右侧弹窗 -->
  48. <van-popup class="m-popup-container" v-model="showPopup" position="right">
  49. <div class="m-popup">
  50. <!-- 是否更换配件 -->
  51. <div class="system">
  52. <h1 class="title">是否更换配件</h1>
  53. <div class="system-btn-container">
  54. <div
  55. class="system-btn"
  56. v-for="(item, index) in sfghpjList"
  57. :key="index"
  58. >
  59. <van-button
  60. class="m-btn"
  61. :class="item.active"
  62. @click="isChangeParts(item)"
  63. >{{ item.text }}</van-button
  64. >
  65. </div>
  66. </div>
  67. </div>
  68. <div class="divider"></div>
  69. <!-- 填报日期 -->
  70. <div class="sbss">
  71. <h1 class="title">填报日期</h1>
  72. <div class="system-btn-container">
  73. <div
  74. class="system-btn"
  75. v-for="(item, index) in fillinList"
  76. :key="index"
  77. >
  78. <van-button
  79. class="m-btn"
  80. :class="item.active"
  81. @click="changeFillinDate(item)"
  82. >{{ item.text }}</van-button
  83. >
  84. </div>
  85. </div>
  86. </div>
  87. <div class="divider"></div>
  88. <!-- 验收日期 -->
  89. <div class="sbss">
  90. <h1 class="title">验收日期</h1>
  91. <div class="system-btn-container">
  92. <div
  93. class="system-btn"
  94. v-for="(item, index) in acceptanceList"
  95. :key="index"
  96. >
  97. <van-button
  98. class="m-btn"
  99. :class="item.active"
  100. @click="changeAcceptanceDate(item)"
  101. >{{ item.text }}
  102. </van-button>
  103. </div>
  104. </div>
  105. </div>
  106. <div class="footer">
  107. <van-button
  108. size="large"
  109. color="#025BAA"
  110. plain
  111. type="info"
  112. @click="reset"
  113. >重置</van-button
  114. >
  115. <van-button size="large" color="#025BAA" type="info" @click="confirm"
  116. >确定</van-button
  117. >
  118. </div>
  119. </div>
  120. </van-popup>
  121. </div>
  122. </template>
  123. <script>
  124. /**
  125. * 设备详情
  126. */
  127. import Vue from "vue";
  128. import { mapGetters } from "vuex";
  129. import { NavBar, Tab, Tabs, Popup, Button, Toast } from "vant";
  130. import Information from "@/components/assetDetail/Information.vue";
  131. import RepairMaintenance from "@/components/assetDetail/RepairMaintenance.vue";
  132. import { queryEquipmentList } from "@/api/equipmentList.js";
  133. import { getUpdateDetail1, getUpdateDetail4 } from "@/api/overview";
  134. import moment from "moment";
  135. Vue.use(NavBar).use(Tab).use(Tabs).use(Popup).use(Button).use(Toast);
  136. export default {
  137. name: "AssetDetail",
  138. props: {},
  139. components: { Information, RepairMaintenance },
  140. computed: {
  141. ...mapGetters([
  142. "plazaId",
  143. "fmapID",
  144. "haveFengMap",
  145. "bunkObj",
  146. "floorsArr",
  147. "categoryId",
  148. ]),
  149. },
  150. data() {
  151. return {
  152. active: 0,
  153. showPopup: false,
  154. isMaintenanceShow: true,
  155. isRepairShow: true,
  156. informationData: {},
  157. maintenanceData: [],
  158. repairData: [],
  159. sfghpjList: [
  160. { text: "是", value: 1, active: "active" },
  161. { text: "否", value: 0, active: "" },
  162. ],
  163. fillinList: [
  164. { text: "全部", value: 0, active: "active" },
  165. { text: "7天", value: 1, active: "" },
  166. { text: "15天", value: 2, active: "" },
  167. { text: "30天", value: 3, active: "" },
  168. { text: "6个月", value: 4, active: "" },
  169. { text: "1年", value: 5, active: "" },
  170. ],
  171. acceptanceList: [
  172. { text: "全部", value: 0, active: "active" },
  173. { text: "7天", value: 1, active: "" },
  174. { text: "15天", value: 2, active: "" },
  175. { text: "30天", value: 3, active: "" },
  176. { text: "6个月", value: 4, active: "" },
  177. { text: "1年", value: 5, active: "" },
  178. ],
  179. isFinish: 0,
  180. isParts: 1,
  181. fillinDate: 0,
  182. acceptanceDate: 0,
  183. };
  184. },
  185. props: {},
  186. beforeMount() {},
  187. mounted() {},
  188. methods: {
  189. backPage() {
  190. if (this.$route.query.first) {
  191. this.$router.push({ path: "/" });
  192. } else {
  193. this.$router.go(-1);
  194. }
  195. },
  196. /**
  197. * 点击右侧筛选
  198. */
  199. handleRightClick() {
  200. this.showPopup = true;
  201. },
  202. changeTab(active) {
  203. console.log(this.active);
  204. },
  205. // 查询设备信息/维修/维保数据
  206. getData() {
  207. if (this.active === 1) {
  208. //维保
  209. this.getMaintenanceData();
  210. } else if (this.active === 2) {
  211. //维修
  212. this.getRepairData();
  213. }
  214. },
  215. // 查询设备信息数据
  216. getInformationData() {
  217. let data = {
  218. plazaId: this.plazaId,
  219. keyword: `${this.$route.query.assetid}:assetid;`,
  220. },
  221. postParams = {};
  222. queryEquipmentList({ data, postParams }).then((res) => {
  223. if (res.data.result == "success" && res.data.data && res.data.data[0]) {
  224. this.informationData = res.data.data[0];
  225. this.getMaintenanceData(true);
  226. this.getRepairData(true);
  227. } else {
  228. Toast({
  229. message: "未查询到该设备内容!",
  230. type: "fail",
  231. duration: 1000,
  232. onClose: () => {
  233. this.$router.push({ path: "/" });
  234. }
  235. });
  236. }
  237. });
  238. },
  239. // 查询维保数据
  240. getMaintenanceData(first) {
  241. if (this.informationData.assetnum) {
  242. let getParams = {
  243. assetnum: this.informationData.assetnum,
  244. plazaId: this.plazaId,
  245. onlyMainAsset: false, //仅查询重要维修/维保
  246. ismodel: this.isParts, //是否更换配件
  247. };
  248. //查询关键字(重要事项记录)
  249. if (this.$refs.maintenance && this.$refs.maintenance.keyword) {
  250. getParams.keyword = `${this.$refs.maintenance.keyword}:matters`;
  251. }
  252. //填报日期
  253. switch (this.fillinDate) {
  254. // 七天
  255. case 1:
  256. getParams.reportdateStartDate = moment()
  257. .subtract(7, "days")
  258. .format("YYYYMMDD000000");
  259. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  260. break;
  261. // 15天
  262. case 2:
  263. getParams.reportdateStartDate = moment()
  264. .subtract(15, "days")
  265. .format("YYYYMMDD000000");
  266. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  267. break;
  268. // 30天
  269. case 3:
  270. getParams.reportdateStartDate = moment()
  271. .subtract(1, "months")
  272. .format("YYYYMMDD000000");
  273. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  274. break;
  275. // 6个月
  276. case 4:
  277. getParams.reportdateStartDate = moment()
  278. .subtract(6, "years")
  279. .format("YYYYMMDD000000");
  280. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  281. break;
  282. // 一年
  283. case 5:
  284. getParams.reportdateStartDate = moment()
  285. .subtract(1, "years")
  286. .format("YYYYMMDD000000");
  287. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  288. break;
  289. // 默认 全部
  290. default:
  291. break;
  292. }
  293. //验收日期
  294. switch (this.acceptanceDate) {
  295. // 七天
  296. case 1:
  297. getParams.sjjssjStartDate = moment()
  298. .subtract(7, "days")
  299. .format("YYYYMMDD000000");
  300. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  301. break;
  302. // 15天
  303. case 2:
  304. getParams.sjjssjStartDate = moment()
  305. .subtract(15, "days")
  306. .format("YYYYMMDD000000");
  307. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  308. break;
  309. // 30天
  310. case 3:
  311. getParams.sjjssjStartDate = moment()
  312. .subtract(1, "months")
  313. .format("YYYYMMDD000000");
  314. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  315. break;
  316. // 6个月
  317. case 4:
  318. getParams.sjjssjStartDate = moment()
  319. .subtract(6, "years")
  320. .format("YYYYMMDD000000");
  321. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  322. break;
  323. // 一年
  324. case 5:
  325. getParams.sjjssjStartDate = moment()
  326. .subtract(1, "years")
  327. .format("YYYYMMDD000000");
  328. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  329. break;
  330. // 默认 全部
  331. default:
  332. break;
  333. }
  334. getUpdateDetail1({ getParams }).then((res) => {
  335. if (res.data && res.data.length) {
  336. this.maintenanceData = res.data;
  337. } else {
  338. this.maintenanceData = [];
  339. }
  340. if (first) {
  341. this.isFinish++;
  342. }
  343. if (first && !this.maintenanceData.length) {
  344. this.isMaintenanceShow = false;
  345. }
  346. });
  347. } else {
  348. console.error("缺少设备编号!");
  349. }
  350. },
  351. // 查询维修数据
  352. getRepairData(first) {
  353. if (this.informationData.assetnum) {
  354. let getParams = {
  355. assetnum: this.informationData.assetnum,
  356. plazaId: this.plazaId,
  357. onlyMainAsset: false, //仅查询重要维修/维保
  358. ismodel: this.isParts, //是否更换配件
  359. };
  360. //查询关键字(重要事项记录)
  361. if (this.$refs.repair && this.$refs.repair.keyword) {
  362. getParams.keyword = `${this.$refs.repair.keyword}:matters`;
  363. }
  364. //填报日期
  365. switch (this.fillinDate) {
  366. // 七天
  367. case 1:
  368. getParams.reportdateStartDate = moment()
  369. .subtract(7, "days")
  370. .format("YYYYMMDD000000");
  371. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  372. break;
  373. // 15天
  374. case 2:
  375. getParams.reportdateStartDate = moment()
  376. .subtract(15, "days")
  377. .format("YYYYMMDD000000");
  378. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  379. break;
  380. // 30天
  381. case 3:
  382. getParams.reportdateStartDate = moment()
  383. .subtract(1, "months")
  384. .format("YYYYMMDD000000");
  385. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  386. break;
  387. // 6个月
  388. case 4:
  389. getParams.reportdateStartDate = moment()
  390. .subtract(6, "years")
  391. .format("YYYYMMDD000000");
  392. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  393. break;
  394. // 一年
  395. case 5:
  396. getParams.reportdateStartDate = moment()
  397. .subtract(1, "years")
  398. .format("YYYYMMDD000000");
  399. getParams.reportdateEndDate = moment().format("YYYYMMDD000000");
  400. break;
  401. // 默认 全部
  402. default:
  403. break;
  404. }
  405. //验收日期
  406. switch (this.acceptanceDate) {
  407. // 七天
  408. case 1:
  409. getParams.sjjssjStartDate = moment()
  410. .subtract(7, "days")
  411. .format("YYYYMMDD000000");
  412. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  413. break;
  414. // 15天
  415. case 2:
  416. getParams.sjjssjStartDate = moment()
  417. .subtract(15, "days")
  418. .format("YYYYMMDD000000");
  419. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  420. break;
  421. // 30天
  422. case 3:
  423. getParams.sjjssjStartDate = moment()
  424. .subtract(1, "months")
  425. .format("YYYYMMDD000000");
  426. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  427. break;
  428. // 6个月
  429. case 4:
  430. getParams.sjjssjStartDate = moment()
  431. .subtract(6, "years")
  432. .format("YYYYMMDD000000");
  433. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  434. break;
  435. // 一年
  436. case 5:
  437. getParams.sjjssjStartDate = moment()
  438. .subtract(1, "years")
  439. .format("YYYYMMDD000000");
  440. getParams.sjjssjEndDate = moment().format("YYYYMMDD000000");
  441. break;
  442. // 默认 全部
  443. default:
  444. break;
  445. }
  446. getUpdateDetail4({ getParams }).then((res) => {
  447. if (res.data && res.data.length) {
  448. this.repairData = res.data;
  449. } else {
  450. this.repairData = [];
  451. }
  452. if (first) {
  453. this.isFinish++;
  454. }
  455. if (first && !this.repairData.length) {
  456. this.isRepairShow = false;
  457. }
  458. });
  459. } else {
  460. console.error("缺少设备编号!");
  461. }
  462. },
  463. // 修改是否更换配件
  464. isChangeParts(data) {
  465. console.log(data);
  466. this.isParts = data.value;
  467. this.sfghpjList.map((item) => {
  468. item.active = "";
  469. if (item.value === data.value) {
  470. item.active = "active";
  471. }
  472. });
  473. },
  474. // 修改填报日期
  475. changeFillinDate(data) {
  476. console.log(data);
  477. this.fillinDate = data.value;
  478. this.fillinList.map((item) => {
  479. item.active = "";
  480. if (item.value === data.value) {
  481. item.active = "active";
  482. }
  483. });
  484. },
  485. // 修改验收日期
  486. changeAcceptanceDate(data) {
  487. console.log(data);
  488. this.acceptanceDate = data.value;
  489. this.acceptanceList.map((item) => {
  490. item.active = "";
  491. if (item.value === data.value) {
  492. item.active = "active";
  493. }
  494. });
  495. },
  496. /**
  497. * 重置
  498. */
  499. reset() {
  500. this.sfghpjList.map((item, index) => {
  501. item.active = "";
  502. if (index === 0) {
  503. item.active = "active";
  504. this.isParts = item.value;
  505. }
  506. });
  507. this.fillinList.map((item, index) => {
  508. item.active = "";
  509. if (index === 0) {
  510. item.active = "active";
  511. this.fillinDate = item.value;
  512. }
  513. });
  514. this.acceptanceList.map((item, index) => {
  515. item.active = "";
  516. if (index === 0) {
  517. item.active = "active";
  518. this.acceptanceDate = item.value;
  519. }
  520. });
  521. this.getData();
  522. this.showPopup = false;
  523. },
  524. /**
  525. * 弹窗确认
  526. */
  527. confirm() {
  528. this.getData();
  529. this.showPopup = false;
  530. },
  531. },
  532. watch: {
  533. "$route.query.assetid": {
  534. handler(assetid) {
  535. if (assetid) {
  536. this.getInformationData();
  537. }
  538. },
  539. immediate: true,
  540. deep: true,
  541. },
  542. },
  543. };
  544. </script>
  545. <style lang='less' scoped>
  546. .asset-detail {
  547. width: 100%;
  548. height: 100%;
  549. .asset-information {
  550. height: calc(100% - 46px);
  551. background: #f5f6f7;
  552. overflow-y: auto;
  553. }
  554. .other-tabs {
  555. height: calc(100% - 46px);
  556. /deep/ .van-tab__text {
  557. font-size: 16px;
  558. }
  559. /deep/ .van-tabs__wrap {
  560. height: 45px;
  561. }
  562. /deep/ .van-tabs__content {
  563. height: calc(100% - 45px);
  564. .van-tab__pane {
  565. background: #f5f6f7;
  566. height: 100%;
  567. overflow-y: auto;
  568. }
  569. }
  570. }
  571. // 筛选弹窗
  572. .m-popup-container {
  573. width: 80%;
  574. height: 100%;
  575. padding: 55px 20px 10px 20px;
  576. .m-popup {
  577. width: 100%;
  578. height: calc(100% - 80px);
  579. display: flex;
  580. flex-direction: column;
  581. .title {
  582. font-size: 16px;
  583. font-weight: 500;
  584. color: #333333;
  585. margin-bottom: 15px;
  586. }
  587. // 专业
  588. .system {
  589. width: 100%;
  590. height: auto;
  591. // 专业系统按钮
  592. .system-btn-container {
  593. display: flex;
  594. width: 100%;
  595. flex-wrap: wrap;
  596. flex-flow: wrap;
  597. .system-btn {
  598. width: 50% !important;
  599. min-width: 50% !important;
  600. max-width: 50% !important;
  601. height: 40px;
  602. box-sizing: border-box;
  603. padding: 10px 10px 10px 0;
  604. .m-btn {
  605. width: 100%;
  606. height: 32px !important;
  607. text-align: center;
  608. background: #eff0f1;
  609. border-radius: 2px;
  610. }
  611. }
  612. }
  613. .active {
  614. background-color: #025baa !important;
  615. color: #fff;
  616. }
  617. }
  618. // 电井类型
  619. .sbss {
  620. display: flex;
  621. flex-direction: column;
  622. overflow: auto;
  623. .title {
  624. width: 100%;
  625. height: 25px;
  626. }
  627. .system-btn-container {
  628. display: flex;
  629. width: 100%;
  630. flex-wrap: wrap;
  631. flex-flow: wrap;
  632. .system-btn {
  633. width: 33% !important;
  634. min-width: 33% !important;
  635. max-width: 33% !important;
  636. height: 50px;
  637. box-sizing: border-box;
  638. padding: 5px 10px 5px 0;
  639. .m-btn {
  640. width: 100%;
  641. height: 32px !important;
  642. text-align: center;
  643. background: #eff0f1;
  644. border-radius: 2px;
  645. padding: 0 !important;
  646. }
  647. }
  648. }
  649. .active {
  650. background-color: #025baa !important;
  651. color: #fff;
  652. }
  653. .load-more {
  654. width: 80px;
  655. height: 25px;
  656. line-height: 25px;
  657. text-align: center;
  658. margin: 0 auto;
  659. color: #025baa;
  660. background: #e5eef6;
  661. }
  662. }
  663. .divider {
  664. border-bottom: 1px solid #e6e6e6;
  665. margin: 20px 0;
  666. }
  667. .footer {
  668. position: absolute;
  669. bottom: 30px;
  670. right: 0;
  671. width: 100%;
  672. height: 35px;
  673. display: flex;
  674. justify-content: space-around;
  675. .van-button {
  676. width: 40%;
  677. height: 100%;
  678. max-width: 40%;
  679. min-width: 40%;
  680. }
  681. }
  682. }
  683. }
  684. }
  685. </style>