feat:小程序改造

This commit is contained in:
2026-07-23 14:00:03 +08:00
committed by charles
parent 3f335074ea
commit 553543b5b3
39 changed files with 1096 additions and 1231 deletions
+11 -11
View File
@@ -281,7 +281,7 @@
"navigationBarBackgroundColor": "#FFFFFF", "navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationStyle": "default" // 默认样式,会显示返回图标 "navigationStyle": "default"
} }
}, },
{ {
@@ -292,14 +292,14 @@
} }
}, },
{ {
"path": "setting/zhaopian", "path": "zhaopian/zhaopian",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/zhao", "path": "zhao/zhao",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
@@ -355,7 +355,7 @@
} }
}, },
{ {
"path": "setting/express", "path": "express/express",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
@@ -383,49 +383,49 @@
} }
}, },
{ {
"path": "setting/out-agreement", "path": "outAgreement/outAgreement",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/out-code", "path": "outCode/outCode",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/set-name", "path": "setName/setName",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/account-out", "path": "accountOut/accountOut",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/forgot-pass", "path": "forgotPass/forgotPass",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/account-safe", "path": "accountSafe/accountSafe",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
} }
}, },
{ {
"path": "setting/kefu", "path": "kefu/kefu",
"style": { "style": {
"navigationStyle": "custom", "navigationStyle": "custom",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
-94
View File
@@ -1,94 +0,0 @@
<template>
<view class="content">
<view class="lottery">
<dengbo-lotteryWheel :prizes="prizes" :size="626" :duration="5000" @run="Click" @done="Done"
ref="luckyWheel" :lightImgs="lightImages" customStyle="borderRadius: 50%;">
<template v-slot:bg>
<image src="https://static.tbmall.xin/static/turntable.png"
style="width: 100%; height: 100%" />
</template>
<template v-slot:pointer>
<up-image src="https://static.tbmall.xin/static/zz.png" width="40" height="40"
mode="widthFix" @click="startWheel"></up-image>
</template>
</dengbo-lotteryWheel>
</view>
</view>
</template>
<script>
export default {
data() {
return {
lightImages: ['https://static.tbmall.xin/static/zz.png', 'https://static.tbmall.xin/static/turntable.png'],
prizes: [{
name: '积分',
image: '/static/turntable/record.png',
pro: '50积分',
},
{
name: '积分',
image: '/static/turntable/record.png',
pro: '100积分',
},
{
name: '优惠券',
image: '/static/turntable/record.png',
pro: '15元优惠券',
},
{
name: '家用电器',
image: '/static/turntable/record.png',
pro: '微波炉',
},
{
name: '谢谢参与',
image: '/static/turntable/record.png',
pro: '15元优惠券',
},
{
name: '办公用品',
image: '/static/turntable/record.png',
pro: '机械键盘',
},
{
name: '生活用品',
image: '/static/turntable/record.png',
pro: '化妆刷',
},
],
}
},
onLoad() {
},
methods: {
startWheel() {
this.$refs.luckyWheel.run(2);
},
Click() {
console.log('用户点击了转盘');
this.$refs.luckyWheel.run(2);
},
Done(prize) {
console.log('抽奖结束,中奖奖品:', prize);
},
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
}
.lottery {
position: relative;
display: inline-block;
width: 626rpx;
height: 626rpx;
margin-top: 100rpx;
}
</style>
File diff suppressed because it is too large Load Diff
@@ -66,9 +66,13 @@
<script> <script>
import { getActivityList, raffleExecute } from '@/api/raffle.js'; import { getActivityList, raffleExecute } from '@/api/raffle.js';
import dengboLotteryWheel from "@/pages/other_package/components/dengbo-lotteryWheel/components/dengbo-lotteryWheel/dengbo-lotteryWheel.vue";
export default { export default {
components: {
dengboLotteryWheel,
},
data() { data() {
return { return {
lightImages: ['https://static.tbmall.xin/static/bg_bs.png', 'https://static.tbmall.xin/static/bg_hs.png'], lightImages: ['https://static.tbmall.xin/static/bg_bs.png', 'https://static.tbmall.xin/static/bg_hs.png'],
@@ -59,7 +59,7 @@ export default {
}, },
onJump(){ onJump(){
uni.navigateTo({ uni.navigateTo({
url:'/pages/rwa_package/setting/out-agreement' url:'/pages/rwa_package/outAgreement/outAgreement'
}) })
}, },
onZhu(){ onZhu(){
@@ -67,7 +67,7 @@ export default {
}, },
onConfirm(){ onConfirm(){
// uni.navigateTo({ // uni.navigateTo({
// url:'/pages/rwa_package/setting/out-code' // url:'/pages/rwa_package/outCode/outCode'
// }) // })
this.onCancel(); this.onCancel();
deleteAccount().then(res=>{ deleteAccount().then(res=>{
@@ -69,11 +69,11 @@ export default {
onHead(index){ onHead(index){
if(index == 1){ if(index == 1){
uni.navigateTo({ uni.navigateTo({
url:`/pages/rwa_package/setting/forgot-pass?type=1` url:`/pages/rwa_package/forgotPass/forgotPass?type=1`
}) })
}else if(index == 2){ }else if(index == 2){
uni.navigateTo({ uni.navigateTo({
url:`/pages/rwa_package/setting/forgot-pass?type=2` url:`/pages/rwa_package/forgotPass/forgotPass?type=2`
}) })
}else if(index == 3){ }else if(index == 3){
uni.navigateTo({ uni.navigateTo({
+26 -9
View File
@@ -16,7 +16,7 @@
</template> </template>
</Header> </Header>
<view class="top-line"></view> <view class="top-line"></view>
<view class="contract-view" v-if="topSelect == 0"> <scroll-view scroll-y="true" class="contract-view" v-if="topSelect == 0">
<view class="top-head"> <view class="top-head">
<text class="text-32 text-gray text-bold">股权分布</text> <text class="text-32 text-gray text-bold">股权分布</text>
<text class="text-28 text-fu">51%的股权回馈消费者(免费赠予)。<text v-if="currentUserData?.isNewUser">股权以积分形式发放</text></text> <text class="text-28 text-fu">51%的股权回馈消费者(免费赠予)。<text v-if="currentUserData?.isNewUser">股权以积分形式发放</text></text>
@@ -29,6 +29,7 @@
:canvas2d="isCanvas2d" :canvas2d="isCanvas2d"
:resshow="delayload" :resshow="delayload"
:opts="oneOps" :opts="oneOps"
:inScrollView="true"
:chartData="oneData"/> :chartData="oneData"/>
</view> </view>
@@ -44,6 +45,7 @@
:canvas2d="isCanvas2d" :canvas2d="isCanvas2d"
:resshow="delayload" :resshow="delayload"
:opts="twoOps" :opts="twoOps"
:inScrollView="true"
:chartData="twoData"/> :chartData="twoData"/>
</view> </view>
<view class="bottom-view" v-if="currentUserData?.isNewUser"> <view class="bottom-view" v-if="currentUserData?.isNewUser">
@@ -74,8 +76,8 @@
</view> </view>
</view> </view>
</view> </view>
</view> </scroll-view>
<view class="contract-view" v-if="topSelect == 1 && curData"> <scroll-view scroll-y="true" class="contract-view" v-if="topSelect == 1 && curData">
<view class="two-top-tab-view"> <view class="two-top-tab-view">
<view v-for="(item,index) in twoTopList" @click="onTwoTop(index)" :key="index" class="two-top-list"> <view v-for="(item,index) in twoTopList" @click="onTwoTop(index)" :key="index" class="two-top-list">
<text class="text-28 " :style="{ <text class="text-28 " :style="{
@@ -108,6 +110,7 @@
:canvas2d="isCanvas2d" :canvas2d="isCanvas2d"
:resshow="delayload" :resshow="delayload"
:opts="threeOps" :opts="threeOps"
:inScrollView="true"
:chartData="threeData"/> :chartData="threeData"/>
</view> </view>
<view class="bottom-view"> <view class="bottom-view">
@@ -162,7 +165,8 @@
/> />
</view> --> </view> -->
<qiun-data-charts <qiun-data-charts
type="area" :ontouch="true" :canvas2d="true" canvasId="scrolllineid" type="area" :ontouch="true" :canvas2d="isCanvas2d" canvasId="scrolllineid"
:inScrollView="true"
:opts="fourOps" :chartData="fourData"/> :opts="fourOps" :chartData="fourData"/>
</view> </view>
<view class="tab-view-two"> <view class="tab-view-two">
@@ -175,10 +179,11 @@
<text class="text-32 text-gray text-bold">已分配总额:{{fiveTotal}}</text> <text class="text-32 text-gray text-bold">已分配总额:{{fiveTotal}}</text>
</view> </view>
<view class="tu-view-one" style="margin:32rpx 0"> <view class="tu-view-one" style="margin:32rpx 0">
<qiun-data-charts type="area" :ontouch="true" :canvas2d="true" canvasId="scrolllineid1" <qiun-data-charts type="area" :ontouch="true" :canvas2d="isCanvas2d" canvasId="scrolllineid1"
:inScrollView="true"
:opts="fourOps" :chartData="fiveData"/> :opts="fourOps" :chartData="fiveData"/>
</view> </view>
</view> </scroll-view>
<up-toast ref="uToastRef"></up-toast> <up-toast ref="uToastRef"></up-toast>
</view> </view>
</template> </template>
@@ -186,14 +191,15 @@
<script> <script>
import Header from '@/components/common/header.vue'; import Header from '@/components/common/header.vue';
import TopSafe from '@/components/common/top-safe.nvue' import TopSafe from '@/components/common/top-safe.nvue'
import func from '@/utils/func.js';
import qiunDataCharts from '@/uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue'
import { getProfitSharingData } from '@/api/finance.js' import { getProfitSharingData } from '@/api/finance.js'
import qiunDataCharts from "@/pages/rwa_package/components/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue"
import { getUserInfo } from '@/api/auth.js'; import { getUserInfo } from '@/api/auth.js';
export default { export default {
components: { Header,TopSafe,qiunDataCharts }, components: { Header,TopSafe,qiunDataCharts },
data() { data() {
return { return {
isCanvas2d: false,
topSelect:0, topSelect:0,
twoTopList:['优选区','平价区'], twoTopList:['优选区','平价区'],
curTopTwo:0, curTopTwo:0,
@@ -468,7 +474,19 @@ export default {
} }
</script> </script>
<style lang="scss">
page {
height: 100%;
overflow: hidden;
}
</style>
<style lang="scss" scoped> <style lang="scss" scoped>
.content {
height: 100%;
display: flex;
flex-direction: column;
}
.top-view{ .top-view{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@@ -521,7 +539,6 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
overflow-y: auto;
box-sizing: border-box; box-sizing: border-box;
background-color: #fff; background-color: #fff;
position: relative; position: relative;
@@ -63,7 +63,7 @@ export default {
}, },
onJump(){ onJump(){
uni.navigateTo({ uni.navigateTo({
url:'/pages/rwa_package/setting/out-agreement' url:'/pages/rwa_package/outAgreement/outAgreement'
}) })
} }
+3 -3
View File
@@ -93,7 +93,7 @@ export default {
}); });
}else if(index == 1){ }else if(index == 1){
uni.navigateTo({ uni.navigateTo({
url:'/pages/rwa_package/setting/set-name' url:'/pages/rwa_package/setName/setName'
}) })
} }
}, },
@@ -171,13 +171,13 @@ export default {
let url = ''; let url = '';
switch(index){ switch(index){
case 0: case 0:
url = '/pages/rwa_package/setting/account-safe' url = '/pages/rwa_package/accountSafe/accountSafe'
break; break;
case 1: case 1:
url = '/pages/rwa_package/dongjian/index' url = '/pages/rwa_package/dongjian/index'
break; break;
case 2: case 2:
url = '/pages/rwa_package/setting/zhaopian' url = '/pages/rwa_package/zhaopian/zhaopian'
break; break;
case 3: case 3:
url = '/pages/mine_package/mine_user_agreement/mine_user_agreement' url = '/pages/mine_package/mine_user_agreement/mine_user_agreement'
@@ -27,7 +27,6 @@ import { getUserInfo,updateName } from '@/api/auth.js';
import Header from '@/components/common/header.vue'; import Header from '@/components/common/header.vue';
import TopSafe from '@/components/common/top-safe.nvue' import TopSafe from '@/components/common/top-safe.nvue'
import MyBtn from '@/components/common/my-btn.vue' import MyBtn from '@/components/common/my-btn.vue'
import func from '@/utils/func.js';
export default { export default {
components: { Header, TopSafe,MyBtn }, components: { Header, TopSafe,MyBtn },
@@ -49,7 +48,7 @@ export default {
}, },
onJump(index){ onJump(index){
uni.navigateTo({ uni.navigateTo({
url:`/pages/rwa_package/setting/zhao?type=${index}` url:`/pages/rwa_package//zhao/zhaopian?type=${index}`
}) })
} }
} }