|
@@ -3,7 +3,7 @@
|
|
|
<el-row>
|
|
|
<el-col :span="24" class="style">
|
|
|
<el-col :span="24" class="top">
|
|
|
- <NavBar v-show="navShow" :title="title" :isleftarrow="isleftarrow" @click.native="back()"> </NavBar>
|
|
|
+ <NavBar v-show="navShow" :title="title" :isleftarrow="isleftarrow" @onClickLeft="onClickLeft"> </NavBar>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="main">
|
|
|
<el-col :span="24" class="video">
|
|
@@ -88,8 +88,9 @@ export default {
|
|
|
this.$set(this, `form`, res.data);
|
|
|
}
|
|
|
},
|
|
|
- back() {
|
|
|
- this.$router.push({ path: 'index' });
|
|
|
+ // 返回
|
|
|
+ onClickLeft() {
|
|
|
+ this.$router.push({ path: '/channel/index' });
|
|
|
},
|
|
|
change(index, item) {
|
|
|
this.changeColor = index;
|