hookehuyr

fix

...@@ -256,12 +256,4 @@ export default [{ ...@@ -256,12 +256,4 @@ export default [{
256 title: '我的视频' 256 title: '我的视频'
257 }, 257 },
258 children: [] 258 children: []
259 -}, {
260 - path: '/JSJIframe',
261 - name: 'JSJIframe',
262 - component: () => import('./views/JSJIframe.vue'),
263 - meta: {
264 - title: '作品上传'
265 - },
266 - children: []
267 }]; 259 }];
......
1 +const index = [{
2 + path: '/html2canvas',
3 + name: 'html2canvas',
4 + component: () => import('@/views/html2canvas.vue'),
5 + redirect: '',
6 + meta: {
7 + icon: '',
8 + title: 'DOM转image',
9 + },
10 + children: [],
11 +}];
12 +
13 +export default index;
...@@ -7,9 +7,6 @@ ...@@ -7,9 +7,6 @@
7 </transition> --> 7 </transition> -->
8 </div> 8 </div>
9 <div class="entry-wrapper"> 9 <div class="entry-wrapper">
10 - <!-- TEMP:临时取消授权,正式需要删除 -->
11 - <!-- <div @click="cancelAuth">取消授权</div> -->
12 - <!-- <p class="text">请选择您的身份</p> -->
13 <div class="control"> 10 <div class="control">
14 <div class="plain"> 11 <div class="plain">
15 <my-button type="custom" :custom-style="styleObject1" @on-click="goVisit">访客</my-button> 12 <my-button type="custom" :custom-style="styleObject1" @on-click="goVisit">访客</my-button>
......