Authored by ccbikai

channel 自定义

@@ -8,6 +8,7 @@ @@ -8,6 +8,7 @@
8 8
9 <script> 9 <script>
10 const bus = require('common/vue-bus'); 10 const bus = require('common/vue-bus');
  11 + const channelMap = {};
11 12
12 module.exports = { 13 module.exports = {
13 props: { 14 props: {
@@ -29,8 +30,6 @@ @@ -29,8 +30,6 @@
29 $.ajax({ 30 $.ajax({
30 url: '/channel/channel.json' 31 url: '/channel/channel.json'
31 }).then(res => { 32 }).then(res => {
32 - const channelMap = {};  
33 -  
34 if (res.code === 200) { 33 if (res.code === 200) {
35 const channel = []; 34 const channel = [];
36 35