index.vue 17 KB

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