123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658 |
- <template>
- <a-modal v-model="visible" title="选择编辑" width="1200px" class="edit-dialog" @cancel="handleCancel">
- <template slot="footer">
- <a-button key="back" @click="handleCancel">
- 取消
- </a-button>
- <a-button key="submit" type="primary" :loading="loading" @click="handleOk">
- 确认
- </a-button>
- </template>
- <div class="dialog-content">
- <div class="left">
- <div class="header">
- <div class="select">
- <a-select style="width: 236px;margin: 0 10px" :default-value="majorId">
- <a-select-opt-group>
- <span slot="label">位置区域</span>
- <a-select-option v-for="item in locationList" :value="item.id"
- @click="handleChange(item)">
- {{item.name}}
- </a-select-option>
- <a-select-opt-group>
- <span slot="label">设备设施</span>
- <a-select-option v-for="item in majorList" :value="item.id" @click="handleChange(item)">
- {{item.name}}
- </a-select-option>
- </a-select-opt-group>
- </a-select-opt-group>
- </a-select>
- <!-- <Select style="margin: 0 10px"-->
- <!-- v-model="majorId"-->
- <!-- @change="handleMajor"-->
- <!-- :hideClear='true'-->
- <!-- :selectdata="majorList"-->
- <!-- :placeholder="'请选择'"-->
- <!-- class="search-select"-->
- <!-- width="236" isReadOnly-->
- <!-- />-->
- </div>
- <div class="search">
- <Select
- v-model="floorId"
- caption="所属楼层:"
- @change="chageFloor"
- :hideClear='false'
- :selectdata="dataFloor"
- :placeholder="'请选择'"
- class="search-select"
- width="236"
- />
- <a-input-search placeholder="搜索位置名称" class="press-enter" @search="onSearch" v-model="keyword"/>
- </div>
- </div>
- <div class="tree">
- <Tree @change="getTreeId" :data="treeData"/>
- </div>
- <div class="checkbox">
- <a-table :pagination="false" :row-key='typeEdit=="Zone"?"location":"assetnum"'
- :columns="typeEdit=='Image'?columnsSys:typeEdit=='Zone'?columnsLocal:objSys"
- :data-source="tableData"
- :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange,onSelect:onSelect }"
- :scroll="{ y: 340 }" :loading="loading"/>
- <a-pagination v-if="total>0" v-model="page" :total="total" show-less-items
- style="margin-left: auto;" @change="handleTableChange"/>
- </div>
- </div>
- <div class="right">
- <div class="header">
- <span class="select-number">已选择 <b>{{arrList.length}}</b>/{{sysNum}}</span>
- <a-button type="link" class="link" @click="clearArrList" :disabled="arrList.length==0">清空</a-button>
- </div>
- <div class="list-box">
- <p v-for="(item,index) in arrList" :key="index" class="list">{{item.sbjc||item.wzjc}}
- <a-icon type="close" class="icon" @click="deleteItem(item,index)"/>
- </p>
- </div>
- </div>
- </div>
- </a-modal>
- </template>
- <script>
- import searchTree from "@/components/edit/search_tree";
- import {
- queryGlsmsasset,
- getQuerySmsxt,
- getPlazaFloor,
- getQuerySmsxtBy,
- queryWzfldl,
- queryWzflByDl,
- queryGlsmsLocation
- } from "@/api/editer";
- import bus from "@/bus";
- import {getUrlMsg} from '@/components/urlMsg.js'
- export default {
- name: "edit-dialog",
- components: {searchTree},
- props: {
- sysNum: Number,//设备总数
- attrCards: Array,
- getmajorId: String,
- InfoLocal: Array
- },
- computed: {
- majorId() {
- return this.getmajorId || ''
- }
- },
- data() {
- return {
- loading: false,
- visible: false,
- model: 'test1',
- searchName: '',
- floorId: "",//所属楼层
- dataFloor: [],
- plainOptions: ['福建三明万达-供电系统-6楼-工程信息化中的区域编码ND182472e83742', '福建三明万达-供电系统-6楼-工程信息化中的区域编码ND18247283742'],
- majorList: [],
- locationList: [],
- checkedList: [],
- keyword: '',
- classstructureid: '',
- locfl: '',
- objSys: [
- {
- title: '对象名称',
- dataIndex: 'sbjc',
- key: 'sbjc',
- width: '75%',
- scopedSlots: {customRender: 'sbjc'},
- },
- {
- title: '对象内码',
- dataIndex: 'sbjbm',
- key: 'sbjbm',
- width: '25%',
- },
- ],
- columnsSys: [
- {
- title: '设备名称',
- dataIndex: 'sbjc',
- key: 'sbjc',
- width: '75%',
- scopedSlots: {customRender: 'sbjc'},
- },
- {
- title: '设备内码',
- dataIndex: 'sbjbm',
- key: 'sbjbm',
- width: '25%',
- },
- ],
- columnsLocal: [
- {
- title: '位置名称',
- dataIndex: 'wzjc',
- key: 'wzjc',
- width: '75%',
- scopedSlots: {customRender: 'wzjc'},
- },
- {
- title: '位置内码',
- dataIndex: 'location',
- key: 'location',
- width: '25%',
- },
- ],
- tableData: [],
- loading: false,
- page: 1,
- size: 10,
- treeData: [],
- total: 0,
- selectedRowKeys: [],
- arrList: [],
- selectList: [],
- typeEdit: '',
- }
- },
- watch: {
- floorId(val) {
- if (val == '') {
- this.queryGlsmsasset();
- }
- }
- },
- methods: {
- showModal() {
- this.visible = true;
- },
- handleOk(e) {
- this.loading = true;
- setTimeout(() => {
- this.visible = false;
- this.loading = false;
- const lists = [];
- let arr = [];
- arr = JSON.parse(JSON.stringify(this.arrList))
- arr.map(item => {
- if (item.wzjc) {
- lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Zone'})
- }
- if (item.sbjc) {
- lists.push({
- id: item.location || item.assetnum,
- name: item.wzjc || item.sbjc,
- type: 'Image'
- })
- }
- })
- console.log(lists);
- bus.$emit('changeAttachObjectIds', lists)
- bus.$emit('updateAttachMsg', lists)
- }, 1000);
- },
- handleCancel(e) {
- this.visible = false;
- let arr = [];
- const lists = [];
- console.log(this.selectList);
- arr = JSON.parse(JSON.stringify(this.selectList))
- arr.map(item => {
- if (item.wzjc) {
- lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Zone'})
- }
- if (item.sbjc) {
- lists.push({id: item.location || item.assetnum, name: item.wzjc || item.sbjc, type: 'Image'})
- }
- })
- console.log(lists);
- bus.$emit('changeAttachObjectIds', lists)
- },
- onSearch(value) {
- this.queryGlsmsasset()
- },
- ChangeCheckbox(val) {
- console.log(val)
- },
- handleChange(val) {
- console.log(val);
- this.tableData = [];
- this.typeEdit = val.type;
- this.getQuerySmsxtBy(val.id, val.type)
- },
- handleMajor(val) {
- this.tableData = [];
- this.getQuerySmsxtBy(val.id)
- },
- chageFloor(data) {
- this.queryGlsmsasset();
- },
- pressEnter(e) {
- console.log(e)
- },
- //获取treeId --classstructureid
- getTreeId(id) {
- if (this.typeEdit == 'Image') {
- this.classstructureid = id.id;
- } else if (this.typeEdit == 'Zone') {
- this.locfl = id.id;
- }
- this.queryGlsmsasset();
- },
- //获取表格数据
- queryGlsmsasset() {
- if (!this.classstructureid && !this.locfl) {
- return
- }
- const data = {
- plazaId: getUrlMsg().projectId,//广场id 必填
- page: this.page,//页数
- size: this.size,//条数
- }
- if (this.keyword) {
- data.keyword = this.typeEdit == 'Image' ? `${this.keyword}:sbjc` : `${this.keyword}:wzjc`
- }
- const paramData = {classstructureid: this.classstructureid, gname: this.floorId};
- const paramDataLocal = {locfl: this.locfl, gname: this.floorId};
- this.loading = true;
- if (this.typeEdit == 'Image') {
- queryGlsmsasset(data, paramData).then(res => {
- this.loading = false;
- if (res.data.result == 'success') {
- this.total = res.data.count;
- if (res.data.data) {
- const data = res.data.data;
- data.map(item => {
- item.id = item.sbjbm
- })
- this.tableData = data;
- } else if (res.data.count == 0) {
- this.tableData = [];
- }
- } else {
- this.$message.error('数据请求失败')
- }
- })
- } else if (this.typeEdit == 'Zone') {
- queryGlsmsLocation(data, paramDataLocal).then(res => {
- this.loading = false;
- if (res.data.result == 'success') {
- this.total = res.data.count;
- if (res.data.data) {
- this.tableData = res.data.data;
- } else if (res.data.count == 0) {
- this.tableData = [];
- }
- } else {
- this.$message.error('数据请求失败')
- }
- })
- }
- },
- //分页切换点击
- handleTableChange(page, pageSize) {
- this.page = page;
- this.queryGlsmsasset();
- },
- onSelect(record, selected, selectedRows, nativeEvent) {
- if (!selected && this.arrList.length > 0) {
- this.arrList.map((item, index) => {
- if (this.typeEdit == 'Zone' && item.location == record.location) {
- this.arrList.splice(index, 1);
- } else if (this.typeEdit == 'Image' && item.assetnum == record.assetnum) {
- this.arrList.splice(index, 1);
- }
- })
- }
- },
- // 中间表格勾选
- onSelectChange(selectedRowKeys, selectedRows) {
- this.selectedRowKeys = selectedRowKeys;
- if (this.selectedRowKeys.length > this.sysNum) {
- this.selectedRowKeys.pop();
- this.$message.error('不能超过设备数')
- return false;
- }
- selectedRows.map(item => {
- item.type = this.typeEdit;
- })
- this.arrList = [...this.arrList, ...selectedRows]
- const obj = {}
- if (this.typeEdit == 'Zone') {
- this.arrList = this.arrList.reduce(function (item, next) {
- obj[next.location] ? ' ' : obj[next.location] = true && item.push(next)
- return item;
- }, [])
- } else {
- this.arrList = this.arrList.reduce(function (item, next) {
- obj[next.assetnum] ? ' ' : obj[next.assetnum] = true && item.push(next)
- return item;
- }, [])
- }
- },
- //右侧删除
- deleteItem(item, index) {
- this.selectedRowKeys.splice(this.selectedRowKeys.indexOf(item.location || item.assetnum), 1);
- this.arrList.splice(index, 1);
- },
- //右侧清空
- clearArrList() {
- this.selectedRowKeys = [];
- this.arrList = [];
- },
- //获取楼层
- getPlazaFloor() {
- const data = {
- plazaId: getUrlMsg().projectId
- }
- getPlazaFloor(data).then(res => {
- if (res.result == 'success') {
- const data = res.data;
- data.map(item => {
- item.id = item.gname;
- item.name = item.code;
- })
- this.dataFloor = data;
- }
- })
- },
- //获取设备大类和位置大类
- getQuerySmsxt() {
- queryWzfldl({}).then(res => {
- if (res.result == 'success') {
- if (res.data) {
- const data = res.data;
- data.map(item => {
- item.id = item.dl;
- item.name = item.dl;
- item.type = 'Zone'
- })
- this.locationList = data;
- }
- }
- })
- // if (this.typeEdit=='Image'){
- getQuerySmsxt({}).then(res => {
- if (res.result == 'success') {
- if (res.data) {
- const data = res.data;
- data.map(item => {
- item.id = item.code;
- item.name = item.name;
- item.type = 'Image';
- })
- this.majorList = data;
- }
- }
- })
- // }else if(this.typeEdit =='Zone'){
- // }
- },
- // 获取设备大类下的分类和位置大类下的分类
- getQuerySmsxtBy(smsxt, type) {
- if (type == 'Image') {
- const data = {
- smsxt: smsxt
- }
- getQuerySmsxtBy(data, {}).then(res => {
- if (res.result == 'success') {
- if (res.data) {
- const data = res.data;
- (function recursion(newObj) {
- newObj.map(item => {
- item.name = item.gcxxhxtname || item.classqc;
- item.id = item.gcxxhxtnum || item.id;
- item.children = item.data;
- item.open = false;
- item.checked = 'unchecked';
- if (item.children) {
- recursion(item.children);
- }
- })
- })(data)
- this.treeData = data;
- let that = this;
- if (this.treeData.length && this.InfoLocal.length) {
- let arr = [];
- let infoLocalId = this.InfoLocal[0].id;
- this.treeData.map((item, index) => {
- item.children.map((item1, index1) => {
- if (infoLocalId==item1.id) {
- item.open = true;
- item1.checked = 'checked';
- this.typeEdit = 'Image'
- that.classstructureid = item1.id;
- that.queryGlsmsasset();
- }
- return item1
- })
- return item
- })
- }
- }
- } else {
- this.$message.error('获取失败');
- }
- })
- } else if (type == 'Zone') {
- const data = {
- dl: smsxt
- }
- queryWzflByDl(data, {}).then(res => {
- if (res.result == 'success') {
- if (res.data) {
- const data = res.data;
- (function recursion(newObj) {
- newObj.map(item => {
- item.label = item.name;
- if (item.children) {
- recursion(item.children);
- }
- })
- })(data)
- this.treeData = data;
- }
- } else {
- this.$message.error('获取失败');
- }
- })
- }
- }
- },
- created() {
- this.floorId = getUrlMsg().FloorID;
- //如果有专业就带过来
- console.log(this.getmajorId);
- if (this.getmajorId) {
- this.getQuerySmsxtBy(this.getmajorId, 'Image')
- }
- if (this.attrCards.length) {
- this.attrCards.map(item => {
- this.selectedRowKeys.push(item.location || item.assetnum)
- })
- this.arrList = JSON.parse(JSON.stringify(this.attrCards));
- this.selectList = JSON.parse(JSON.stringify(this.attrCards));
- } else {
- this.selectedRowKeys = [];
- }
- this.getQuerySmsxt();
- this.getPlazaFloor();
- }
- }
- </script>
- <style scoped lang="less">
- .edit-dialog {
- .dialog-content {
- width: 1136px;
- height: 499px;
- background: rgba(255, 255, 255, 1);
- border-radius: 3px;
- border: 1px solid rgba(239, 240, 241, 1);
- display: flex;
- /*overflow: auto;*/
- .left {
- width: 785px;
- border-right: 1px solid #EFF0F1;
- .header {
- width: 785px;
- .select {
- width: 260px;
- border-right: 1px solid #EFF0F1;
- display: inline-block;
- }
- .search {
- width: 524px;
- display: inline-block;
- .search-select {
- margin-left: 10px;
- position: relative;
- top: -2px;
- }
- .press-enter {
- margin-left: 10px;
- width: 236px;
- }
- }
- }
- .tree {
- width: 259px;
- height: 441px;
- border-right: 1px solid #EFF0F1;
- display: inline-block;
- float: left;
- overflow-y: scroll;
- overflow: overlay;
- }
- .checkbox {
- /*margin-top: 17px;*/
- /*margin-left: 13px;*/
- width: 500px;
- height: 441px;
- display: inline-block;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- /deep/ .ant-table-selection-column {
- .ant-table-header-column {
- display: none;
- }
- }
- }
- }
- .right {
- flex-grow: 1;
- .list-box {
- height: 440px;
- overflow-y: scroll;
- .list {
- background: rgba(239, 240, 241, 1);
- border-radius: 2px;
- margin: 8px 12px;
- position: relative;
- padding: 5px;
- .icon {
- position: absolute;
- bottom: 5px;
- right: 5px;
- cursor: pointer;
- }
- }
- }
- .select-number {
- margin-left: 12px;
- }
- .link {
- float: right;
- line-height: 57px;
- }
- }
- .header {
- height: 57px;
- line-height: 57px;
- border-bottom: 1px solid #EFF0F1;
- }
- }
- /deep/ .ant-input-affix-wrapper .ant-input-suffix {
- /*left: 12px;*/
- /*padding-right: 12px;*/
- }
- /deep/ .ant-modal-footer {
- border: 0;
- }
- /deep/ .ant-checkbox-wrapper + .ant-checkbox-wrapper {
- margin: 0;
- }
- }
- </style>
|