|
@@ -71,16 +71,9 @@
|
|
|
<view class="module-com content_box user-open_bx">
|
|
<view class="module-com content_box user-open_bx">
|
|
|
<view class="input-line-wrap">
|
|
<view class="input-line-wrap">
|
|
|
|
|
|
|
|
- <!-- #ifdef APP-PLUS -->
|
|
|
|
|
- <tui-list-cell @click="pageTo({ url: '/admin/book/index' })" class="line-cell" :hover="false" :arrow="true">
|
|
|
|
|
- <view class="tui-title" style="color:green;font-weight:bold;">教学视频</view>
|
|
|
|
|
- </tui-list-cell>
|
|
|
|
|
- <!-- #endif -->
|
|
|
|
|
- <!-- #ifdef MP-WEIXIN -->
|
|
|
|
|
- <tui-list-cell @click="pageTo({ url: '/admin/book/index'})" class="line-cell" :hover="false" :arrow="true">
|
|
|
|
|
|
|
+ <tui-list-cell @click="getVideo()" class="line-cell" :hover="false" :arrow="true">
|
|
|
<view class="tui-title" style="color:green;font-weight:bold;">教学视频</view>
|
|
<view class="tui-title" style="color:green;font-weight:bold;">教学视频</view>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
- <!-- #endif -->
|
|
|
|
|
|
|
|
|
|
<tui-list-cell @click="pageTo({ url: '/admin/shop/changeShop' })" class="line-cell" :hover="false" :arrow="true" v-if="getLoginInfo.lookAllShop && getLoginInfo.lookAllShop == 1" >
|
|
<tui-list-cell @click="pageTo({ url: '/admin/shop/changeShop' })" class="line-cell" :hover="false" :arrow="true" v-if="getLoginInfo.lookAllShop && getLoginInfo.lookAllShop == 1" >
|
|
|
<view class="tui-title">商家列表</view>
|
|
<view class="tui-title">商家列表</view>
|
|
@@ -240,6 +233,20 @@ export default {
|
|
|
// #endif
|
|
// #endif
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ getVideo(){
|
|
|
|
|
+ const that = this;
|
|
|
|
|
+ uni.showActionSheet({
|
|
|
|
|
+ itemList: ['城市批发', '基地和昆明批发'],
|
|
|
|
|
+ success: e => {
|
|
|
|
|
+ if(e.tapIndex == 0){
|
|
|
|
|
+ that.$util.pageTo({ url: '/admin/book/index' })
|
|
|
|
|
+ }
|
|
|
|
|
+ if(e.tapIndex == 1){
|
|
|
|
|
+ that.$util.pageTo({ url: '/admin/book/jdIndex' })
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
goAdmin(){
|
|
goAdmin(){
|
|
|
this.$util.pageTo({ url: '/admin/staff/admin'})
|
|
this.$util.pageTo({ url: '/admin/staff/admin'})
|
|
|
},
|
|
},
|