You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
724 B
Vue
35 lines
724 B
Vue
<template>
|
|
<div class="buttonBox">
|
|
<el-button type="primary" @click="handleSetChannel">APP设置 </el-button>
|
|
<setAppDialog ref="setChannelDialog_ref"></setAppDialog>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import {} from "@/utils/api/index";
|
|
import setAppDialog from "./setAppDialog.vue";
|
|
export default {
|
|
components: { setAppDialog },
|
|
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>
|