优化通道设置
parent
103c57accd
commit
807f655f27
@ -0,0 +1,34 @@
|
|||||||
|
<template>
|
||||||
|
<div class="buttonBox">
|
||||||
|
<el-button type="primary" @click="handleSetChannel">通道设置 </el-button>
|
||||||
|
<setChannelDialog ref="setChannelDialog_ref"></setChannelDialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import {} from "@/utils/api/index";
|
||||||
|
import setChannelDialog from "./setChannelDialog.vue";
|
||||||
|
export default {
|
||||||
|
components: { setChannelDialog },
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
watch: {},
|
||||||
|
mounted() {},
|
||||||
|
computed: {
|
||||||
|
termId() {
|
||||||
|
return this.$store.state.termId;
|
||||||
|
},
|
||||||
|
channelIdList() {
|
||||||
|
return this.$store.state.channelIdList;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
handleSetChannel() {
|
||||||
|
this.$refs.setChannelDialog_ref.display();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
destroyed() {},
|
||||||
|
beforeRouteLeave(to, from, next) {},
|
||||||
|
};
|
||||||
|
</script>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue