Compare commits

..

5 Commits

Author SHA1 Message Date
038c616a52 update 2025-09-22 14:49:28 +08:00
6d195af85e update 2025-09-18 18:48:19 +08:00
c3907904ff update 2025-09-17 21:52:42 +08:00
6d29326dc4 update 2025-09-12 19:07:34 +08:00
efa521af56 'update' 2025-09-12 19:06:27 +08:00
12 changed files with 2450 additions and 5 deletions

2415
bun.lock Normal file

File diff suppressed because it is too large Load Diff

BIN
dist.zip

Binary file not shown.

View File

@@ -8,6 +8,11 @@ export default {
}, },
onShow: function () { onShow: function () {
// #ifndef MP-WEIXIN // #ifndef MP-WEIXIN
const ua = navigator.userAgent.toLowerCase();
if (ua.indexOf("micromessenger") !== -1) {
toPage('/pages/notSupported/index');
return;
}
const UserStore = useUserStore(); const UserStore = useUserStore();
if (!UserStore.isLogin && window.location.href.indexOf('/pages/register/index') < 0 && window.location.href.indexOf('/pages/fastInput/index') < 0) { if (!UserStore.isLogin && window.location.href.indexOf('/pages/register/index') < 0 && window.location.href.indexOf('/pages/fastInput/index') < 0) {
toPage('/pages/login/index'); toPage('/pages/login/index');

View File

@@ -114,7 +114,7 @@ const changeCur = ({detail: {current}}) => {
} }
.x-notice-box { .x-notice-box {
padding: 18rpx 24rpx; padding: 18rpx 24rpx 18rpx 36rpx;
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
} }

View File

@@ -190,6 +190,13 @@
"navigationBarTitleText": "投诉邀请人", "navigationBarTitleText": "投诉邀请人",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path": "pages/notSupported/index",
"style": {
"navigationBarTitleText": "前往浏览器",
"navigationStyle": "custom"
}
} }
// #endif // #endif
], ],

View File

@@ -135,7 +135,7 @@ onMounted(() => {
@click="OpenTypeFun(item)" @click="OpenTypeFun(item)"
:class="['!flex gap-[16rpx] py-[28rpx] box-border', index<vo.rows.length-1 ? 'border-b' : '']"> :class="['!flex gap-[16rpx] py-[28rpx] box-border', index<vo.rows.length-1 ? 'border-b' : '']">
<image <image
class="!w-[148rpx] !h-[120rpx] rounded-[12rpx]" class="!w-[148rpx] !h-[120rpx] rounded-[12rpx] flex-shrink-0"
mode="aspectFill" mode="aspectFill"
:src="item.files && item.files[0] || videoMask"> :src="item.files && item.files[0] || videoMask">
</image> </image>
@@ -173,12 +173,17 @@ onMounted(() => {
} }
.info { .info {
display: -webkit-box;
color: rgb(134, 144, 156); color: rgb(134, 144, 156);
font-size: 12px; font-size: 12px;
font-weight: 400; font-weight: 400;
line-height: 16px; line-height: 16px;
letter-spacing: 0; letter-spacing: 0;
text-align: left; text-align: left;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
} }
.tab { .tab {

View File

@@ -26,9 +26,9 @@ const nav = [
path: '/pages/beginnerTutorial/index', path: '/pages/beginnerTutorial/index',
}, },
{ {
title: '收益榜单', title: '账号管理',
icon: nav2, icon: nav2,
path: '/pages/comingSoon/index', path: '/pages/accountManagement/index',
}, },
{ {
title: '邀请好友', title: '邀请好友',

View 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>

View File

@@ -345,7 +345,8 @@ const scroll = ({detail: {scrollTop}}) => {
{{ details.duration }}分钟 {{ details.duration }}分钟
</view> </view>
</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-title">特殊要求:</view>
<view class="block-info gap-[20rpx]"> <view class="block-info gap-[20rpx]">
<view>{{ details.special_text }}</view> <view>{{ details.special_text }}</view>

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -20,6 +20,7 @@ export {BASEURL};
const request = axios.create({ const request = axios.create({
baseURL: BASEURL, baseURL: BASEURL,
timeout: 60000,
adapter: UniAdapter, adapter: UniAdapter,
}); });