增加新版本web页面
This commit is contained in:
81
web/src/views/dialog/chooseGroup.vue
Normal file
81
web/src/views/dialog/chooseGroup.vue
Normal file
@@ -0,0 +1,81 @@
|
||||
<template>
|
||||
<div id="chooseGroup">
|
||||
<el-dialog
|
||||
v-el-drag-dialog
|
||||
title="选择虚拟组织"
|
||||
width="30%"
|
||||
top="5rem"
|
||||
:append-to-body="true"
|
||||
:close-on-click-modal="false"
|
||||
:visible.sync="showDialog"
|
||||
:destroy-on-close="true"
|
||||
@close="close()"
|
||||
>
|
||||
<GroupTree
|
||||
ref="regionTree"
|
||||
:show-header="true"
|
||||
:edit="true"
|
||||
:enable-add-channel="false"
|
||||
:click-event="treeNodeClickEvent"
|
||||
:on-channel-change="onChannelChange"
|
||||
:tree-height="'45vh'"
|
||||
/>
|
||||
<el-form>
|
||||
<el-form-item>
|
||||
<div style="text-align: right">
|
||||
<el-button type="primary" @click="onSubmit">保存</el-button>
|
||||
<el-button @click="close">取消</el-button>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import elDragDialog from '@/directive/el-drag-dialog'
|
||||
import GroupTree from '../common/GroupTree.vue'
|
||||
|
||||
export default {
|
||||
name: 'ChooseCivilCode',
|
||||
directives: { elDragDialog },
|
||||
components: { GroupTree },
|
||||
props: {},
|
||||
data() {
|
||||
return {
|
||||
showDialog: false,
|
||||
endCallback: false,
|
||||
groupDeviceId: '',
|
||||
businessGroup: ''
|
||||
}
|
||||
},
|
||||
computed: {},
|
||||
created() {},
|
||||
methods: {
|
||||
openDialog: function(callback) {
|
||||
this.showDialog = true
|
||||
this.endCallback = callback
|
||||
},
|
||||
onSubmit: function() {
|
||||
if (this.endCallback) {
|
||||
this.endCallback(this.groupDeviceId, this.businessGroup)
|
||||
}
|
||||
this.close()
|
||||
},
|
||||
close: function() {
|
||||
this.showDialog = false
|
||||
},
|
||||
treeNodeClickEvent: function(group) {
|
||||
if (group.deviceId === '' || group.deviceId === group.businessGroup) {
|
||||
return
|
||||
}
|
||||
this.groupDeviceId = group.deviceId
|
||||
this.businessGroup = group.businessGroup
|
||||
},
|
||||
onChannelChange: function(deviceId) {
|
||||
//
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user