edit-dialog.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. <template>
  2. <a-modal v-model="visible" title="选择编辑" width="1200px" class="edit-dialog" @cancel="handleCancel">
  3. <template slot="footer">
  4. <a-button key="back" @click="handleCancel">
  5. 取消
  6. </a-button>
  7. <a-button key="submit" type="primary" :loading="loading" @click="handleOk">
  8. 确认
  9. </a-button>
  10. </template>
  11. <div class="dialog-content">
  12. <div class="left">
  13. <div class="header">
  14. <div class="select">
  15. <a-select style="width: 236px;margin: 0 10px" :default-value="majorId">
  16. <a-select-opt-group>
  17. <span slot="label">位置区域</span>
  18. <a-select-option v-for="item in locationList" :value="item.id"
  19. @click="handleChange(item)">
  20. {{item.name}}
  21. </a-select-option>
  22. <a-select-opt-group>
  23. <span slot="label">设备设施</span>
  24. <a-select-option v-for="item in majorList" :value="item.id" @click="handleChange(item)">
  25. {{item.name}}
  26. </a-select-option>
  27. </a-select-opt-group>
  28. </a-select-opt-group>
  29. </a-select>
  30. <!-- <Select style="margin: 0 10px"-->
  31. <!-- v-model="majorId"-->
  32. <!-- @change="handleMajor"-->
  33. <!-- :hideClear='true'-->
  34. <!-- :selectdata="majorList"-->
  35. <!-- :placeholder="'请选择'"-->
  36. <!-- class="search-select"-->
  37. <!-- width="236" isReadOnly-->
  38. <!-- />-->
  39. </div>
  40. <div class="search">
  41. <Select
  42. v-model="floorId"
  43. caption="所属楼层:"
  44. @change="chageFloor"
  45. :hideClear='false'
  46. :selectdata="dataFloor"
  47. :placeholder="'请选择'"
  48. class="search-select"
  49. width="236"
  50. />
  51. <a-input-search placeholder="搜索位置名称" class="press-enter" @search="onSearch" v-model="keyword"/>
  52. </div>
  53. </div>
  54. <div class="tree">
  55. <Tree @change="getTreeId" :data="treeData"/>
  56. </div>
  57. <div class="checkbox">
  58. <a-table :pagination="false" :row-key='typeEdit=="Zone"?"location":"assetnum"'
  59. :columns="typeEdit=='Image'?columnsSys:typeEdit=='Zone'?columnsLocal:objSys"
  60. :data-source="tableData"
  61. :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange,onSelect:onSelect }"
  62. :scroll="{ y: 340 }" :loading="loading"/>
  63. <a-pagination v-if="total>0" v-model="page" :total="total" show-less-items
  64. style="margin-left: auto;" @change="handleTableChange"/>
  65. </div>
  66. </div>
  67. <div class="right">
  68. <div class="header">
  69. <span class="select-number">已选择 <b>{{arrList.length}}</b>/{{sysNum}}</span>
  70. <a-button type="link" class="link" @click="clearArrList" :disabled="arrList.length==0">清空</a-button>
  71. </div>
  72. <div class="list-box">
  73. <p v-for="(item,index) in arrList" :key="index" class="list">{{item.sbjc||item.wzjc}}
  74. <a-icon type="close" class="icon" @click="deleteItem(item,index)"/>
  75. </p>
  76. </div>
  77. </div>
  78. </div>
  79. </a-modal>
  80. </template>
  81. <script>
  82. import searchTree from "@/components/edit/search_tree";
  83. import {
  84. queryGlsmsasset,
  85. getQuerySmsxt,
  86. getPlazaFloor,
  87. getQuerySmsxtBy,
  88. queryWzfldl,
  89. queryWzflByDl,
  90. queryGlsmsLocation
  91. } from "@/api/editer";
  92. import bus from "@/bus";
  93. import {getUrlMsg} from '@/components/urlMsg.js'
  94. export default {
  95. name: "edit-dialog",
  96. components: {searchTree},
  97. props: {
  98. sysNum: Number,//设备总数
  99. attrCards: Array,
  100. getmajorId: String,
  101. InfoLocal: Array
  102. },
  103. computed: {
  104. majorId() {
  105. return this.getmajorId || ''
  106. }
  107. },
  108. data() {
  109. return {
  110. loading: false,
  111. visible: false,
  112. model: 'test1',
  113. searchName: '',
  114. floorId: "",//所属楼层
  115. dataFloor: [],
  116. plainOptions: ['福建三明万达-供电系统-6楼-工程信息化中的区域编码ND182472e83742', '福建三明万达-供电系统-6楼-工程信息化中的区域编码ND18247283742'],
  117. majorList: [],
  118. locationList: [],
  119. checkedList: [],
  120. keyword: '',
  121. classstructureid: '',
  122. locfl: '',
  123. objSys: [
  124. {
  125. title: '对象名称',
  126. dataIndex: 'sbjc',
  127. key: 'sbjc',
  128. width: '75%',
  129. scopedSlots: {customRender: 'sbjc'},
  130. },
  131. {
  132. title: '对象内码',
  133. dataIndex: 'sbjbm',
  134. key: 'sbjbm',
  135. width: '25%',
  136. },
  137. ],
  138. columnsSys: [
  139. {
  140. title: '设备名称',
  141. dataIndex: 'sbjc',
  142. key: 'sbjc',
  143. width: '75%',
  144. scopedSlots: {customRender: 'sbjc'},
  145. },
  146. {
  147. title: '设备内码',
  148. dataIndex: 'sbjbm',
  149. key: 'sbjbm',
  150. width: '25%',
  151. },
  152. ],
  153. columnsLocal: [
  154. {
  155. title: '位置名称',
  156. dataIndex: 'wzjc',
  157. key: 'wzjc',
  158. width: '75%',
  159. scopedSlots: {customRender: 'wzjc'},
  160. },
  161. {
  162. title: '位置内码',
  163. dataIndex: 'location',
  164. key: 'location',
  165. width: '25%',
  166. },
  167. ],
  168. tableData: [],
  169. loading: false,
  170. page: 1,
  171. size: 10,
  172. treeData: [],
  173. total: 0,
  174. selectedRowKeys: [],
  175. arrList: [],
  176. selectList: [],
  177. typeEdit: '',
  178. }
  179. },
  180. watch: {
  181. floorId(val) {
  182. if (val == '') {
  183. this.queryGlsmsasset();
  184. }
  185. }
  186. },
  187. methods: {
  188. showModal() {
  189. this.visible = true;
  190. },
  191. handleOk(e) {
  192. this.loading = true;
  193. setTimeout(() => {
  194. this.visible = false;
  195. this.loading = false;
  196. const lists = [];
  197. let arr = [];
  198. arr = JSON.parse(JSON.stringify(this.arrList))
  199. arr.map(item => {
  200. if (item.wzjc) {
  201. lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Zone'})
  202. }
  203. if (item.sbjc) {
  204. lists.push({
  205. id: item.location || item.assetnum,
  206. name: item.wzjc || item.sbjc,
  207. type: 'Image'
  208. })
  209. }
  210. })
  211. console.log(lists);
  212. bus.$emit('changeAttachObjectIds', lists)
  213. bus.$emit('updateAttachMsg', lists)
  214. }, 1000);
  215. },
  216. handleCancel(e) {
  217. this.visible = false;
  218. let arr = [];
  219. const lists = [];
  220. console.log(this.selectList);
  221. arr = JSON.parse(JSON.stringify(this.selectList))
  222. arr.map(item => {
  223. if (item.wzjc) {
  224. lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Zone'})
  225. }
  226. if (item.sbjc) {
  227. lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Image'})
  228. }
  229. })
  230. console.log(lists);
  231. bus.$emit('changeAttachObjectIds', lists)
  232. },
  233. onSearch(value) {
  234. this.queryGlsmsasset()
  235. },
  236. ChangeCheckbox(val) {
  237. console.log(val)
  238. },
  239. handleChange(val) {
  240. console.log(val);
  241. this.tableData = [];
  242. this.typeEdit = val.type;
  243. this.getQuerySmsxtBy(val.id, val.type)
  244. },
  245. handleMajor(val) {
  246. this.tableData = [];
  247. this.getQuerySmsxtBy(val.id)
  248. },
  249. chageFloor(data) {
  250. this.queryGlsmsasset();
  251. },
  252. pressEnter(e) {
  253. console.log(e)
  254. },
  255. //获取treeId --classstructureid
  256. getTreeId(id) {
  257. if (this.typeEdit == 'Image') {
  258. this.classstructureid = id.id;
  259. } else if (this.typeEdit == 'Zone') {
  260. this.locfl = id.id;
  261. }
  262. this.queryGlsmsasset();
  263. },
  264. //获取表格数据
  265. queryGlsmsasset() {
  266. if (!this.classstructureid && !this.locfl) {
  267. return
  268. }
  269. const data = {
  270. plazaId: getUrlMsg().projectId,//广场id 必填
  271. page: this.page,//页数
  272. size: this.size,//条数
  273. }
  274. if (this.keyword) {
  275. data.keyword = this.typeEdit == 'Image' ? `${this.keyword}:sbjc` : `${this.keyword}:wzjc`
  276. }
  277. const paramData = {classstructureid: this.classstructureid, gname: this.floorId};
  278. const paramDataLocal = {locfl: this.locfl, gname: this.floorId};
  279. this.loading = true;
  280. if (this.typeEdit == 'Image') {
  281. queryGlsmsasset(data, paramData).then(res => {
  282. this.loading = false;
  283. if (res.data.result == 'success') {
  284. this.total = res.data.count;
  285. if (res.data.data) {
  286. const data = res.data.data;
  287. data.map(item => {
  288. item.id = item.sbjbm
  289. })
  290. this.tableData = data;
  291. } else if (res.data.count == 0) {
  292. this.tableData = [];
  293. }
  294. } else {
  295. this.$message.error('数据请求失败')
  296. }
  297. })
  298. } else if (this.typeEdit == 'Zone') {
  299. queryGlsmsLocation(data, paramDataLocal).then(res => {
  300. this.loading = false;
  301. if (res.data.result == 'success') {
  302. this.total = res.data.count;
  303. if (res.data.data) {
  304. this.tableData = res.data.data;
  305. } else if (res.data.count == 0) {
  306. this.tableData = [];
  307. }
  308. } else {
  309. this.$message.error('数据请求失败')
  310. }
  311. })
  312. }
  313. },
  314. //分页切换点击
  315. handleTableChange(page, pageSize) {
  316. this.page = page;
  317. this.queryGlsmsasset();
  318. },
  319. onSelect(record, selected, selectedRows, nativeEvent) {
  320. if (!selected && this.arrList.length > 0) {
  321. this.arrList.map((item, index) => {
  322. if (this.typeEdit == 'Zone' && item.location == record.location) {
  323. this.arrList.splice(index, 1);
  324. } else if (this.typeEdit == 'Image' && item.assetnum == record.assetnum) {
  325. this.arrList.splice(index, 1);
  326. }
  327. })
  328. }
  329. },
  330. // 中间表格勾选
  331. onSelectChange(selectedRowKeys, selectedRows) {
  332. this.selectedRowKeys = selectedRowKeys;
  333. if (this.selectedRowKeys.length > this.sysNum) {
  334. this.selectedRowKeys.pop();
  335. this.$message.error('不能超过设备数')
  336. return false;
  337. }
  338. selectedRows.map(item => {
  339. item.type = this.typeEdit;
  340. })
  341. this.arrList = [...this.arrList, ...selectedRows]
  342. const obj = {}
  343. if (this.typeEdit == 'Zone') {
  344. this.arrList = this.arrList.reduce(function (item, next) {
  345. obj[next.location] ? ' ' : obj[next.location] = true && item.push(next)
  346. return item;
  347. }, [])
  348. } else {
  349. this.arrList = this.arrList.reduce(function (item, next) {
  350. obj[next.assetnum] ? ' ' : obj[next.assetnum] = true && item.push(next)
  351. return item;
  352. }, [])
  353. }
  354. },
  355. //右侧删除
  356. deleteItem(item, index) {
  357. this.selectedRowKeys.splice(this.selectedRowKeys.indexOf(item.location || item.assetnum), 1);
  358. this.arrList.splice(index, 1);
  359. },
  360. //右侧清空
  361. clearArrList() {
  362. this.selectedRowKeys = [];
  363. this.arrList = [];
  364. },
  365. //获取楼层
  366. getPlazaFloor() {
  367. const data = {
  368. plazaId: getUrlMsg().projectId
  369. }
  370. getPlazaFloor(data).then(res => {
  371. if (res.result == 'success') {
  372. const data = res.data;
  373. data.map(item => {
  374. item.id = item.gname;
  375. item.name = item.code;
  376. })
  377. this.dataFloor = data;
  378. }
  379. })
  380. },
  381. //获取设备大类和位置大类
  382. getQuerySmsxt() {
  383. queryWzfldl({}).then(res => {
  384. if (res.result == 'success') {
  385. if (res.data) {
  386. const data = res.data;
  387. data.map(item => {
  388. item.id = item.dl;
  389. item.name = item.dl;
  390. item.type = 'Zone'
  391. })
  392. this.locationList = data;
  393. }
  394. }
  395. })
  396. // if (this.typeEdit=='Image'){
  397. getQuerySmsxt({}).then(res => {
  398. if (res.result == 'success') {
  399. if (res.data) {
  400. const data = res.data;
  401. data.map(item => {
  402. item.id = item.code;
  403. item.name = item.name;
  404. item.type = 'Image';
  405. })
  406. this.majorList = data;
  407. }
  408. }
  409. })
  410. // }else if(this.typeEdit =='Zone'){
  411. // }
  412. },
  413. // 获取设备大类下的分类和位置大类下的分类
  414. getQuerySmsxtBy(smsxt, type) {
  415. if (type == 'Image') {
  416. const data = {
  417. smsxt: smsxt
  418. }
  419. getQuerySmsxtBy(data, {}).then(res => {
  420. if (res.result == 'success') {
  421. if (res.data) {
  422. const data = res.data;
  423. (function recursion(newObj) {
  424. newObj.map(item => {
  425. item.name = item.gcxxhxtname || item.classqc;
  426. item.id = item.gcxxhxtnum || item.id;
  427. item.children = item.data;
  428. item.open = false;
  429. item.checked = 'unchecked';
  430. if (item.children) {
  431. recursion(item.children);
  432. }
  433. })
  434. })(data)
  435. this.treeData = data;
  436. let that = this;
  437. if (this.treeData.length && this.InfoLocal.length) {
  438. let arr = [];
  439. let infoLocalId = this.InfoLocal[0].id;
  440. this.treeData.map((item, index) => {
  441. item.children.map((item1, index1) => {
  442. if (infoLocalId==item1.id) {
  443. item.open = true;
  444. item1.checked = 'checked';
  445. this.typeEdit = 'Image'
  446. that.classstructureid = item1.id;
  447. that.queryGlsmsasset();
  448. }
  449. return item1
  450. })
  451. return item
  452. })
  453. }
  454. }
  455. } else {
  456. this.$message.error('获取失败');
  457. }
  458. })
  459. } else if (type == 'Zone') {
  460. const data = {
  461. dl: smsxt
  462. }
  463. queryWzflByDl(data, {}).then(res => {
  464. if (res.result == 'success') {
  465. if (res.data) {
  466. const data = res.data;
  467. (function recursion(newObj) {
  468. newObj.map(item => {
  469. item.label = item.name;
  470. if (item.children) {
  471. recursion(item.children);
  472. }
  473. })
  474. })(data)
  475. this.treeData = data;
  476. }
  477. } else {
  478. this.$message.error('获取失败');
  479. }
  480. })
  481. }
  482. }
  483. },
  484. created() {
  485. this.floorId = getUrlMsg().FloorID;
  486. //如果有专业就带过来
  487. console.log(this.getmajorId);
  488. if (this.getmajorId) {
  489. this.getQuerySmsxtBy(this.getmajorId, 'Image')
  490. }
  491. if (this.attrCards.length) {
  492. this.attrCards.map(item => {
  493. this.selectedRowKeys.push(item.location || item.assetnum)
  494. })
  495. this.arrList = JSON.parse(JSON.stringify(this.attrCards));
  496. this.selectList = JSON.parse(JSON.stringify(this.attrCards));
  497. } else {
  498. this.selectedRowKeys = [];
  499. }
  500. this.getQuerySmsxt();
  501. this.getPlazaFloor();
  502. }
  503. }
  504. </script>
  505. <style scoped lang="less">
  506. .edit-dialog {
  507. .dialog-content {
  508. width: 1136px;
  509. height: 499px;
  510. background: rgba(255, 255, 255, 1);
  511. border-radius: 3px;
  512. border: 1px solid rgba(239, 240, 241, 1);
  513. display: flex;
  514. /*overflow: auto;*/
  515. .left {
  516. width: 785px;
  517. border-right: 1px solid #EFF0F1;
  518. .header {
  519. width: 785px;
  520. .select {
  521. width: 260px;
  522. border-right: 1px solid #EFF0F1;
  523. display: inline-block;
  524. }
  525. .search {
  526. width: 524px;
  527. display: inline-block;
  528. .search-select {
  529. margin-left: 10px;
  530. position: relative;
  531. top: -2px;
  532. }
  533. .press-enter {
  534. margin-left: 10px;
  535. width: 236px;
  536. }
  537. }
  538. }
  539. .tree {
  540. width: 259px;
  541. height: 441px;
  542. border-right: 1px solid #EFF0F1;
  543. display: inline-block;
  544. float: left;
  545. overflow-y: scroll;
  546. overflow: overlay;
  547. }
  548. .checkbox {
  549. /*margin-top: 17px;*/
  550. /*margin-left: 13px;*/
  551. width: 500px;
  552. height: 441px;
  553. display: inline-block;
  554. display: flex;
  555. flex-direction: column;
  556. justify-content: space-between;
  557. /deep/ .ant-table-selection-column {
  558. .ant-table-header-column {
  559. display: none;
  560. }
  561. }
  562. }
  563. }
  564. .right {
  565. flex-grow: 1;
  566. .list-box {
  567. height: 440px;
  568. overflow-y: scroll;
  569. .list {
  570. background: rgba(239, 240, 241, 1);
  571. border-radius: 2px;
  572. margin: 8px 12px;
  573. position: relative;
  574. padding: 5px;
  575. .icon {
  576. position: absolute;
  577. bottom: 5px;
  578. right: 5px;
  579. cursor: pointer;
  580. }
  581. }
  582. }
  583. .select-number {
  584. margin-left: 12px;
  585. }
  586. .link {
  587. float: right;
  588. line-height: 57px;
  589. }
  590. }
  591. .header {
  592. height: 57px;
  593. line-height: 57px;
  594. border-bottom: 1px solid #EFF0F1;
  595. }
  596. }
  597. /deep/ .ant-input-affix-wrapper .ant-input-suffix {
  598. /*left: 12px;*/
  599. /*padding-right: 12px;*/
  600. }
  601. /deep/ .ant-modal-footer {
  602. border: 0;
  603. }
  604. /deep/ .ant-checkbox-wrapper + .ant-checkbox-wrapper {
  605. margin: 0;
  606. }
  607. }
  608. </style>