Compare commits
3 Commits
6d29326dc4
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 038c616a52 | |||
| 6d195af85e | |||
| c3907904ff |
@@ -8,6 +8,11 @@ export default {
|
||||
},
|
||||
onShow: function () {
|
||||
// #ifndef MP-WEIXIN
|
||||
const ua = navigator.userAgent.toLowerCase();
|
||||
if (ua.indexOf("micromessenger") !== -1) {
|
||||
toPage('/pages/notSupported/index');
|
||||
return;
|
||||
}
|
||||
const UserStore = useUserStore();
|
||||
if (!UserStore.isLogin && window.location.href.indexOf('/pages/register/index') < 0 && window.location.href.indexOf('/pages/fastInput/index') < 0) {
|
||||
toPage('/pages/login/index');
|
||||
|
||||
@@ -190,6 +190,13 @@
|
||||
"navigationBarTitleText": "投诉邀请人",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/notSupported/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "前往浏览器",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
}
|
||||
// #endif
|
||||
],
|
||||
|
||||
@@ -26,9 +26,9 @@ const nav = [
|
||||
path: '/pages/beginnerTutorial/index',
|
||||
},
|
||||
{
|
||||
title: '收益榜单',
|
||||
title: '账号管理',
|
||||
icon: nav2,
|
||||
path: '/pages/comingSoon/index',
|
||||
path: '/pages/accountManagement/index',
|
||||
},
|
||||
{
|
||||
title: '邀请好友',
|
||||
|
||||
11
src/pages/notSupported/index.vue
Normal file
11
src/pages/notSupported/index.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup>
|
||||
import ICON from "../../static/images/wxweb.png";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<image :src="ICON" mode="aspectFill" class="!w-full !h-screen"></image>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
@@ -345,7 +345,8 @@ const scroll = ({detail: {scrollTop}}) => {
|
||||
{{ details.duration }}分钟
|
||||
</view>
|
||||
</view>
|
||||
<view class="block" v-if="details.special_images_arr.length">
|
||||
<view class="block"
|
||||
v-if="details.special_images_arr.length || details.special_text?.length > 0">
|
||||
<view class="block-title">特殊要求:</view>
|
||||
<view class="block-info gap-[20rpx]">
|
||||
<view>{{ details.special_text }}</view>
|
||||
|
||||
BIN
src/static/icons/icon-收益榜单.png
Executable file → Normal file
BIN
src/static/icons/icon-收益榜单.png
Executable file → Normal file
Binary file not shown.
|
Before Width: | Height: | Size: 904 B After Width: | Height: | Size: 2.8 KiB |
BIN
src/static/images/wxweb.png
Normal file
BIN
src/static/images/wxweb.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
@@ -20,6 +20,7 @@ export {BASEURL};
|
||||
|
||||
const request = axios.create({
|
||||
baseURL: BASEURL,
|
||||
timeout: 60000,
|
||||
adapter: UniAdapter,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user