You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

303 lines
7.2 KiB

3 years ago
<template>
<view class="wrap">
<view class="stabar"></view>
<view class="mainwrap2">
<view class="perinfo"> <span class="type-name"><img :src="avatarUrl"></img></span>
<view class="dycd"> <span class="myname">{{name}}</span>
3 years ago
<view class="myitem"> <span @click="showMedal()">勋章{{medalNum}}<i :style="{'background-color':active == 0 ?'red':'none'}"></i></span> <span>挑战历史{{challengeNum}}</span> </view>
</view>
</view>
<view class="banbox_sec perinfo">
<swiper style="height: 100%;" :indicator-dots="false" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
<swiper-item v-for="(item, i) in swiperList" :key="i">
<navigator style="height: 100%;" class="swiper-item">
<img :src="item"></img>
</navigator>
</swiper-item>
</swiper>
</view>
<view class="mset">
<ul>
<li v-for="(item,i) in functionList" :key="i">
<span @click="navClickHandler(item)" :style="'background-image:url('+item.uploadPath+');'">{{item.name}}</span>
</li>
</ul>
</view>
</view>
<view class="footbox">
<tabbar :page="page"></tabbar>
</view>
</view>
<!-- <view class="my-userinfo-container">
<view class="top-box">
<image :src="avatarUrl" class="avatar"></image>
<view class="nickname">{{name}}</view>
</view>
<view class="panel-list">
<view class="panel">
<view class="panel-body">
<view class="panel-item" @click="showMedal()">
<text>{{medalNum}}</text>
<text>勋章</text>
</view>
<view class="panel-item">
<text>0</text>
<text>挑战历史</text>
</view>
</view>
</view>
<view class="panel">
<swiper :indicator-dots="false" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
<swiper-item v-for="(item, i) in swiperList" :key="i">
<navigator class="swiper-item">
<image :src="item"></image>
</navigator>
</swiper-item>
</swiper>
</view>
<view class="panel">
<view class="function-list">
<view class="panel-list-item" v-for="(item,i) in functionList" :key="i" @click="navClickHandler(item)">
<image class="function-img" :src="item.uploadPath"></image>
<text style="margin-right: 220px;">{{item.name}}</text>
<uni-icons type="arrowright" size="15"></uni-icons>
</view>
</view>
</view>
</view>
<tabbar :page="page"></tabbar>
</view> -->
3 years ago
</template>
<script>
import tabbar from "@/components/tabbar/tabbar.vue";
import {mapState,mapMutations} from 'vuex'
3 years ago
export default {
data() {
return {
3 years ago
active:1,
medalNum:0,
3 years ago
challengeNum:0,
page: "",
name:"",
avatarUrl: uni.$http.baseUrl + "/profile//2024/01/18/6147d64a3b94d7b3d3cc35aaf8cbfe06.png",
//轮播图数据列表
swiperList: [],
//主页功能列表
functionList: []
3 years ago
};
},
onLoad() {
console.log(this.userinfo)
this.name = this.userinfo.nickName;
this.avatarUrl = this.userinfo.avatarUrl;
this.getSwiperList()
this.getFunctionList()
this.getMyMedalList()
3 years ago
this.getStatus()
},
onShow() {
this.page = "my"
},
computed: {
...mapState('m_user', ['userinfo','userId'])
},
methods: {
...mapMutations('m_user', ['updateAddress', 'updateUserInfo', 'updateToken']),
async logout() {
const [err, succ] = await uni.showModal({
title: '提示',
content: '确认退出登录吗?'
}).catch(err => err)
if (succ && succ.confirm) {
this.updateAddress({})
this.updateUserInfo({})
this.updateToken('')
}
},
async getMyMedalList() {
const {
data: res
} = await uni.$http.post('/small/wechat/showMyMedal',{guid:this.userId})
if (!res.success) return uni.$showMsg()
this.medalNum = res.data.length;
// uni.$showMsg('数据请求成功!')
},
3 years ago
async getStatus() {
const {
data: res
} = await uni.$http.post('/small/wechat/getActiveStatus',{guid:this.userId})
if (!res.success) return uni.$showMsg()
if(res.data!=null){
this.active = res.data.active;
}
// uni.$showMsg('数据请求成功!')
},
3 years ago
async getChallengeTotal() {
const {
data: res
} = await uni.$http.post('/small/questionFre/listAll',{userId:this.userId})
if (!res.success) return uni.$showMsg()
this.challengeNum = res.data.length;
// uni.$showMsg('数据请求成功!')
},
async getSwiperList() {
const {
data: res
} = await uni.$http.post('/small/customImage/listAll', {
page: "my"
})
if (!res.success) return uni.$showMsg()
res.data.forEach(item => {
item.uploadPath = uni.$http.baseUrl + item.uploadPath
this.swiperList.push(item.uploadPath)
})
// uni.$showMsg('数据请求成功!')
},
async getFunctionList() {
const {
data: res
} = await uni.$http.post('/small/project/home/listAll')
if (!res.success) return uni.$showMsg()
res.data.forEach(item => {
item.uploadPath = uni.$http.baseUrl + item.uploadPath
})
this.functionList = res.data;
// uni.$showMsg('数据请求成功!')
},
3 years ago
async showMedal(){
if (this.active == 0){
const {
data: res
} = await uni.$http.post('/small/wechat/editActiveStatus',{guid:this.userId,active:1})
if (!res.success) return uni.$showMsg()
this.active = 1;
}
uni.navigateTo({
url:'/subpkg/medal/medal'
})
},
navClickHandler(item) {
if(item !== ""){
uni.navigateTo({
url: item.pagePath
})
}
}
},
components: {
tabbar
}
3 years ago
}
</script>
<style lang="scss">
@import url("@/static/base_css.css");
// .my-userinfo-container {
// height: 100%;
// background-color: #F4F4F4;
// .top-box {
// height: 400rpx;
// background-color: #aba9d0;
// display: flex;
// justify-content: center;
// align-items: center;
// flex-direction: column;
// .avatar {
// width: 90px;
// height: 90px;
// border-radius: 45px;
// border: 2px solid #FFF;
// box-shadow: 0 1px 5px black;
// }
// .nickname {
// font-size: 16px;
// color: black;
// font-family: Georgia, 'Times New Roman', Times, serif;
// margin-top: 10px;
// }
// }
// }
// .panel-list {
// padding: 0 10px;
// position: relative;
// top: -10px;
// .panel {
// background-color: white;
// border-radius: 3px;
// margin-bottom: 8px;
// .panel-title {
// line-height: 45px;
// padding-left: 10px;
// font-size: 15px;
// border-bottom: 1px solid #F4F4F4;
// }
// .panel-body {
// display: flex;
// justify-content: space-around;
// .panel-item {
// display: flex;
// flex-direction: column;
// align-items: center;
// justify-content: space-around;
// padding: 10px 0;
// font-size: 13px;
// .icon {
// width: 35px;
// height: 35px;
// }
// }
// }
// }
// }
// .function-img {
// width: 30px;
// height: 30px;
// }
// .panel-list-item {
// display: flex;
// justify-content: space-between;
// align-items: center;
// font-size: 15px;
// padding: 0 10px;
// line-height: 45px;
// }
// swiper {
// height: 230rpx;
// .swiper-item,
// image {
// width: 100%;
// height: 100%;
// border-radius: 4px;
// }
// }
</style>