调整菜单结构,增加通道列表,支持节点搜索
This commit is contained in:
30
web/src/views/channel/edit.vue
Normal file
30
web/src/views/channel/edit.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div id="ChannelEdit" v-loading="locading" style="width: 100%">
|
||||
<div class="page-header">
|
||||
<div class="page-title">
|
||||
<el-page-header content="编辑通道" @back="close" />
|
||||
</div>
|
||||
</div>
|
||||
<CommonChannelEdit :id="id" ref="commonChannelEdit" :save-success="close" :cancel="close" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CommonChannelEdit from '../common/CommonChannelEdit'
|
||||
|
||||
export default {
|
||||
name: 'ChannelEdit',
|
||||
components: {
|
||||
CommonChannelEdit
|
||||
},
|
||||
props: ['id', 'closeEdit'],
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {
|
||||
close: function() {
|
||||
this.closeEdit()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user