index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. <template>
  2. <div class="adm-device">
  3. <statistics :statistics-msg="statisticsMsg"/>
  4. <div class="operation">
  5. <el-cascader :options="list" clearable v-model="deviceType" :props="optionProps"
  6. @change="handleChangeDevice"
  7. class="adm-select"></el-cascader>
  8. <admSearch @SearchValue="SearchValue"/>
  9. <el-button type="default" @click="addDevice" class="adm-btn">添加设备</el-button>
  10. </div>
  11. <div class="hr"></div>
  12. <div class="content">
  13. <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
  14. <el-tab-pane v-for="(item,index) in paneMsg" :key="index" :label="item" :name="index.toString()"/>
  15. </el-tabs>
  16. <div class="table" v-loading="loading">
  17. <template v-if="deviceType.length > 0">
  18. <admMultiTable :currentHeader="currentHeader" @handleCurrentEdit="handleCurrentEdit"
  19. :tableData="tableData" :headersStage="headersStage"/>
  20. <Pagination v-if="tableData.length > 0" :paginationList="paginationList"
  21. @handleCurrentChange="handleCurrentChange"
  22. @handleSizeChange="handleSizeChange"/>
  23. </template>
  24. <div v-else class="void align">
  25. <svg-icon name="void" :width="String(120)" :height="String(123)"/>
  26. <p class="void-title">暂无内容</p>
  27. <p class="void-tips">可点击左上角选择设备类型</p>
  28. </div>
  29. </div>
  30. </div>
  31. <!-- 添加/编辑 设备-->
  32. <el-scrollbar style="height:400px;">
  33. <el-dialog
  34. :title="deviceMsg"
  35. :visible.sync="dialogVisible"
  36. @close="close"
  37. >
  38. <template slot="title">
  39. <div class="alertTitle">
  40. <span>添加设备</span>
  41. <el-button type="text"><span class="el-icon-question"></span>维护帮助</el-button>
  42. </div>
  43. </template>
  44. <template v-if="status == '添加'">
  45. <template v-if="next">
  46. <div class="align" style="height: 400px">
  47. <span class="text ">设备类别</span>
  48. <el-cascader :options="list" clearable v-model="deviceVal"
  49. :props="optionProps"
  50. class="adm-select"></el-cascader>
  51. </div>
  52. <el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
  53. </template>
  54. <template v-else-if="displayLocation && deviceVal">
  55. <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
  56. <span slot="footer" class="dialog-footer">
  57. <el-button type="primary" @click="saveLocation">确定</el-button>
  58. <el-button type="default" @click="resetLocation">重置</el-button>
  59. </span>
  60. </template>
  61. <template v-else>
  62. <div>
  63. <dataForm :deviceHeaders="deviceHeaders" ref="dataForm" :currRowContent="currRowContent"/>
  64. </div>
  65. <span slot="footer" class="dialog-footer">
  66. <el-button type="primary" @click="handleDataForm">确 定</el-button>
  67. <el-button @click="handlePosition">维护位置</el-button>
  68. </span>
  69. </template>
  70. </template>
  71. <template v-else>
  72. <template v-if="displayLocation && deviceVal">
  73. <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
  74. <span slot="footer" class="dialog-footer">
  75. <el-button type="primary" @click="saveLocation">确定</el-button>
  76. <el-button type="default" @click="resetLocation">重置</el-button>
  77. </span>
  78. </template>
  79. <template v-else>
  80. <dataForm :deviceHeaders="deviceHeaders" ref="dataForm" :currRowContent="currRowContent"/>
  81. <span slot="footer" class="dialog-footer">
  82. <el-button type="primary" @click="handleDataForm">确 定</el-button>
  83. <el-button @click="handlePosition">维护位置</el-button>
  84. </span>
  85. </template>
  86. </template>
  87. </el-dialog>
  88. </el-scrollbar>
  89. </div>
  90. </template>
  91. <script lang="ts">
  92. import { Component, Vue, Watch } from "vue-property-decorator";
  93. import { AdmMultiTable, AdmSearch, dataForm, Pagination, Statistics } from '../components/index'
  94. import { allDevice, BeatchQueryParam, dictInfo } from "@/api/equipComponent";
  95. import { queryCount, queryEquip, createEquip, updateEquip } from "@/api/datacenter";
  96. import { UserModule } from "@/store/modules/user";
  97. import deviceGraph from "./components/deviceGraph"
  98. import tools from "@/utils/maintain"
  99. @Component({
  100. name: 'adm-device',
  101. components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm, deviceGraph }
  102. })
  103. export default class extends Vue {
  104. optionProps = {
  105. value: 'code',
  106. label: 'name',
  107. children: 'children'
  108. }
  109. // loading
  110. loading = false
  111. // 统计信息对象
  112. private statisticsMsg = {
  113. title: '全部设备',
  114. total: 0
  115. }
  116. // 设备类值
  117. deviceType = ''
  118. // 弹窗设备类值
  119. deviceVal = ''
  120. // 维护位置
  121. displayLocation = false
  122. // 表头信息集合
  123. headerInformation = {}
  124. // 表头阶段信息结合
  125. headersStage = {}
  126. // 当前阶段表头信息点集合
  127. all = []
  128. // 搜索内容
  129. inputSearch = ''
  130. // 下拉数据
  131. list = []
  132. // 弹窗开关
  133. dialogVisible = false
  134. // tabs数据
  135. paneMsg = ['设计阶段维护', '施工阶段维护', '运维阶段维护']
  136. // 当前tabs值
  137. activeName = ""
  138. // 分页
  139. paginationList = {
  140. page: 1,
  141. size: 50,
  142. sizes: [10, 30, 50, 100, 150, 200],
  143. total: 0
  144. }
  145. // 下一步
  146. next = true
  147. // 弹窗 title
  148. deviceMsg = '添加设备'
  149. // 默认当前阶段
  150. currentHeader = this.paneMsg[0]
  151. // 主体数据
  152. tableData = []
  153. codeToDataSource = {}
  154. deviceHeaders = {}
  155. // 当前行数据
  156. currRowContent = {}
  157. // 弹窗显示
  158. status = '添加'
  159. // 维护位置开关
  160. maintain = ''
  161. // 传到维护位置的设备信息
  162. curEquip = {}
  163. // 项目id
  164. get projectId(): string {
  165. return UserModule.projectId
  166. }
  167. created() {
  168. this.deviceList();
  169. this.dataCount()
  170. }
  171. //查询统计数量
  172. dataCount() {
  173. queryCount({}).then(res => {
  174. this.statisticsMsg.total = res.count
  175. })
  176. }
  177. // 设备类数据
  178. deviceList() {
  179. allDevice({}).then(res => {
  180. this.list = res.content
  181. console.log(res)
  182. })
  183. }
  184. handleChangeDevice() {
  185. if (this.deviceType[1]) {
  186. this.loading = true
  187. let param = {
  188. category: this.deviceType[1]
  189. }
  190. let param2 = {
  191. filters: this.deviceType[1] ? `classCode='${ this.deviceType[1] }'` : undefined,
  192. pageNumber: this.paginationList.page,
  193. pageSize: this.paginationList.size,
  194. orders: "createTime desc, id asc",
  195. projectId: this.projectId
  196. }
  197. if (this.inputSearch != '') {
  198. param2.filters += `;codeName contain '${ this.inputSearch }' or systemCategory contain '${ this.inputSearch }' or bimTypeId contain '${ this.inputSearch }' or localId contain '${ this.inputSearch }'`
  199. }
  200. let promise = new Promise(resolve => {
  201. dictInfo(param).then(res => {
  202. resolve(res)
  203. })
  204. })
  205. let promise2 = new Promise(resolve => {
  206. queryEquip(param2).then(res => {
  207. resolve(res)
  208. })
  209. })
  210. Promise.all([promise, promise2]).then(res => {
  211. this.loading = false
  212. // 类型下信息点,默认设计阶段
  213. this.headerInformation = res[0] // 获取表头
  214. this.tableData = res[1].content // 主体数据
  215. this.headerStage()
  216. this.paginationList.total = res[1].total
  217. })
  218. } else {
  219. this.headerInformation = {}
  220. }
  221. }
  222. async handleNext() {
  223. if (this.deviceVal[1]) {
  224. this.next = false
  225. let param = {
  226. category: this.deviceVal[1]
  227. }
  228. await dictInfo(param).then(res => {
  229. this.deviceHeaders = res
  230. })
  231. } else {
  232. console.log(5)
  233. }
  234. }
  235. headerStage() {
  236. let header: [] = []
  237. if (Object.keys(this.headerInformation).length > 0) {
  238. this.headerInformation.dictStages.forEach(item => {
  239. if (this.currentHeader == item.name) {
  240. item.infos && item.infos.forEach(val => header.push(val))
  241. }
  242. })
  243. }
  244. this.headersStage = {
  245. basicInfos: {
  246. name: '基础信息台账',
  247. data: this.headerInformation.basicInfos
  248. },
  249. dictStages: {
  250. name: this.currentHeader,
  251. data: header
  252. }
  253. }
  254. // 信息点集合
  255. this.all = [...this.headerInformation.basicInfos, ...header]
  256. this.codeToDataSource = {}
  257. this.all.forEach(item => {
  258. if (item.dataSource) {
  259. try {
  260. this.codeToDataSource[item.code] = {}
  261. item.dataSource.forEach(dic => {
  262. this.codeToDataSource[item.code][dic.code] = dic.name;
  263. })
  264. } catch (e) {
  265. console.log(e);
  266. }
  267. }
  268. });
  269. this.getBatch(this.tableData)
  270. }
  271. // 查询动态数据
  272. getBatch(data) {
  273. let param = {
  274. groupCode: 'WD',
  275. appId: 'datacenter',
  276. projectId: this.projectId,
  277. data: []
  278. }
  279. this.all.forEach(head => {
  280. if (head.category != 'STATIC') {
  281. data.forEach(item => {
  282. let cur = tools.dataForKey(item, head.path)
  283. if (cur) {
  284. param.data.push({
  285. objectId: item.id,
  286. infoCode: head.code
  287. })
  288. }
  289. })
  290. }
  291. })
  292. if (param.data.length > 0) {
  293. BeatchQueryParam(param).then(res => {
  294. this.tableData = data.map(item => {
  295. res.data.map(child => {
  296. if (item.id == child.objectId) {
  297. if (!!child.data || child.data == 0) {
  298. this.all.map(head => {
  299. if (head.code == child.infoCode) {
  300. let contentVal = child.data
  301. if (this.codeToDataSource[child.infoCode]) {
  302. contentVal = this.codeToDataSource[child.infoCode][child.data]
  303. }
  304. tools.setDataForKey(item, head.path, contentVal);
  305. }
  306. })
  307. } else {
  308. this.all.map(head => {
  309. if (head.code == child.infoCode) {
  310. tools.setDataForKey(
  311. item,
  312. head.path,
  313. child.error
  314. );
  315. }
  316. });
  317. }
  318. }
  319. })
  320. return item
  321. })
  322. })
  323. }
  324. }
  325. // 维护阶段 tabs
  326. async handleClick(val: any) {
  327. this.currentHeader = val.label
  328. await this.headerStage()
  329. }
  330. // 搜索
  331. SearchValue(val: string) {
  332. this.inputSearch = val
  333. this.handleChangeDevice(this.deviceType[1])
  334. }
  335. // 当前分页
  336. handleCurrentChange(val: number) {
  337. console.log(val)
  338. this.paginationList.page = val
  339. this.handleChangeDevice(this.deviceType[1])
  340. }
  341. handleSizeChange(val: number) {
  342. this.paginationList.size = val
  343. this.handleChangeDevice(this.deviceType[1])
  344. }
  345. // 添加设备
  346. addDevice() {
  347. this.status = '添加'
  348. this.dialogVisible = true
  349. this.currRowContent = {}
  350. }
  351. // 维护位置
  352. handlePosition() {
  353. this.curEquip = tools.formatData(this.$refs.dataForm.form)
  354. this.displayLocation = true
  355. }
  356. // 添加 事件处理
  357. handleDataForm() {
  358. const eq = tools.formatData(this.$refs.dataForm.form);
  359. if (eq.id) {
  360. //更新
  361. this.handleUpdateEquip(eq);
  362. } else {
  363. eq.classCode = this.deviceVal[1]
  364. // 创建
  365. this.handleCreateEquip(eq);
  366. }
  367. }
  368. // 编辑当前行
  369. handleCurrentEdit(val) {
  370. this.status = '编辑'
  371. this.currRowContent = val
  372. this.handleNext()
  373. this.dialogVisible = true
  374. }
  375. // close
  376. close() {
  377. this.next = true
  378. if (this.deviceType) {
  379. this.deviceVal = this.deviceType
  380. } else {
  381. this.deviceVal = ''
  382. }
  383. this.displayLocation = false
  384. }
  385. // 取消
  386. cancelLocation() {
  387. // @ts-ignore
  388. this.$refs.deviceGraph.cancelLocation()
  389. }
  390. // 保存
  391. saveLocation() {
  392. // @ts-ignore
  393. const data = this.$refs.deviceGraph.getLocation()
  394. if (data) {
  395. this.curEquip.bimLocation = `${data.x},${data.y},${data.z}`;
  396. this.curEquip.buildingId = data.buildingId;
  397. this.curEquip.floorId = data.floorId;
  398. }
  399. if (this.curEquip.id) {
  400. //更新
  401. this.handleUpdateEquip(this.curEquip);
  402. } else {
  403. this.curEquip.classCode = this.deviceVal[1]
  404. // 创建
  405. this.handleCreateEquip(this.curEquip);
  406. }
  407. }
  408. // 更新设备
  409. handleUpdateEquip(obj) {
  410. let pa;
  411. if (Array.isArray(obj)) {
  412. pa = { content: obj }
  413. } else {
  414. pa = { content: [obj] }
  415. }
  416. updateEquip(pa).then(res => {
  417. if (res.result == 'success') {
  418. this.$message.success('更新成功');
  419. this.dialogVisible = false;
  420. this.handleChangeDevice()
  421. }
  422. })
  423. }
  424. // 创建设备
  425. handleCreateEquip(obj: any) {
  426. let pa;
  427. if (Array.isArray(obj)) {
  428. pa = { content: obj }
  429. } else {
  430. pa = { content: [obj] }
  431. }
  432. createEquip(pa).then(res => {
  433. if (res.result == 'success') {
  434. this.$message.success('创建成功');
  435. this.dialogVisible = false;
  436. this.handleChangeDevice()
  437. }
  438. })
  439. }
  440. // 重置
  441. resetLocation() {
  442. // @ts-ignore
  443. this.$refs.deviceGraph.resetLocation()
  444. }
  445. // 返回
  446. goBack() {
  447. this.displayLocation = false
  448. }
  449. @Watch("deviceType", { immediate: true, deep: true })
  450. handleDeviceMsg() {
  451. this.deviceVal = this.deviceType
  452. }
  453. }
  454. </script>
  455. <style lang="scss" scoped>
  456. $margin: 12px;
  457. $border: 1px solid #E1E7EA;
  458. .align {
  459. display: flex;
  460. align-items: center;
  461. justify-content: center;
  462. flex-direction: column;
  463. flex-wrap: wrap;
  464. .text {
  465. margin-right: 150px;
  466. margin-bottom: 10px;
  467. }
  468. }
  469. .adm-device {
  470. background: #fff;
  471. padding: 12px;
  472. height: 100%;
  473. .el-dialog__header {
  474. padding: 10px;
  475. }
  476. .operation {
  477. margin: 12px 0;
  478. .adm-select {
  479. margin-right: $margin;
  480. }
  481. .adm-btn {
  482. float: right;
  483. }
  484. }
  485. .hr {
  486. background: #E1E7EA;
  487. color: #E1E7EA;
  488. width: 100%;
  489. height: 1px;
  490. margin-bottom: 16px;
  491. }
  492. .content {
  493. position: relative;
  494. height: calc(100% - 140px);
  495. .table {
  496. border-left: $border;
  497. border-right: $border;
  498. border-bottom: $border;
  499. height: calc(100% - 41px);
  500. padding: 12px;
  501. padding-bottom: 50px;
  502. .void {
  503. margin-top: 200px;
  504. }
  505. .void-title {
  506. color: #333333;
  507. line-height: 21px;
  508. font-size: 16px;
  509. }
  510. .void-tips {
  511. color: #9CA1A9;
  512. line-height: 22px;
  513. font-size: 14px;
  514. }
  515. }
  516. .adm-multi-table {
  517. }
  518. }
  519. .adm-pagination {
  520. right: 10px;
  521. position: absolute;
  522. bottom: 10px;
  523. }
  524. }
  525. </style>
  526. <style lang="scss">
  527. .adm-device {
  528. .el-dialog__header {
  529. padding: 10px;
  530. }
  531. .el-select, .el-date-editor.el-input, .el-date-editor.el-input__inner {
  532. width: 100%;
  533. }
  534. }
  535. .data-form {
  536. height: 430px;
  537. }
  538. .text {
  539. color: #000000;
  540. margin-bottom: 10px;
  541. }
  542. .el-tabs__header {
  543. margin: 0;
  544. }
  545. .el-dialog__header {
  546. border-bottom: 1px solid #D8D8D8;
  547. }
  548. .fr {
  549. float: right;
  550. }
  551. .dialog-button {
  552. float: right;
  553. margin-left: 10px;
  554. margin-top: 30px;
  555. }
  556. .el-dialog {
  557. .el-dialog__body {
  558. max-height: 500px !important;
  559. min-height: 100px;
  560. overflow-y: auto;
  561. overflow-x: hidden;
  562. }
  563. }
  564. .alertTitle {
  565. overflow: hidden;
  566. line-height: 32px;
  567. button {
  568. float: right;
  569. margin-right: 40px;
  570. }
  571. }
  572. </style>