123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template>
- <view class="userLayout pageBg" v-if="userinfo">
- <view :style="{height:getNavBarHeight()+'px'}"></view>
- <view class="userInfo">
- <view class="avatar">
- <image src="../../static/images/xxmLogo.png" mode="aspectFill"></image>
- </view>
- <view class="ip">{{userinfo.IP}}</view>
- <view class="address">来自于:
- {{ userinfo.address.city || userinfo.address.province || userinfo.address.country}}
-
- </view>
- </view>
-
-
- <view class="section">
- <view class="list">
- <navigator
- url="/pages/classlist/classlist?name=我的下载&type=download"
- class="row">
- <view class="left">
- <uni-icons type="download-filled" size="20" ></uni-icons>
- <view class="text">我的下载</view>
- </view>
- <view class="right">
- <view class="text">{{userinfo.downloadSize}}</view>
- <uni-icons type="right" size="15" color="#aaa"></uni-icons>
- </view>
- </navigator>
-
- <navigator
- url="/pages/classlist/classlist?name=我的评分&type=score"
- class="row">
- <view class="left">
- <uni-icons type="star-filled" size="20"></uni-icons>
- <view class="text">我的评分</view>
- </view>
- <view class="right">
- <view class="text">{{userinfo.scoreSize}}</view>
- <uni-icons type="right" size="15" color="#aaa"></uni-icons>
- </view>
- </navigator>
-
- <view class="row">
- <view class="left">
- <uni-icons type="chatboxes-filled" size="20"></uni-icons>
- <view class="text">联系客服</view>
- </view>
- <view class="right">
- <view class="text"></view>
- <uni-icons type="right" size="15" color="#aaa"></uni-icons>
- </view>
- <!-- #ifdef MP -->
- <button open-type="contact">联系客服</button>
- <!-- #endif -->
- <!-- #ifndef MP -->
- <button @click="clickContact">拨打电话</button>
- <!-- #endif -->
-
-
- </view>
- </view>
- </view>
-
- <view class="section">
- <view class="list">
- <navigator url="/pages/notice/detail?id=653507c6466d417a3718e94b" class="row">
- <view class="left">
- <uni-icons type="notification-filled" size="20"></uni-icons>
- <view class="text">订阅更新</view>
- </view>
- <view class="right">
- <view class="text"></view>
- <uni-icons type="right" size="15" color="#aaa"></uni-icons>
- </view>
- </navigator>
-
- <navigator url="/pages/notice/detail?id=6536358ce0ec19c8d67fbe82" class="row">
- <view class="left">
- <uni-icons type="flag-filled" size="20"></uni-icons>
- <view class="text">常见问题</view>
- </view>
- <view class="right">
- <view class="text"></view>
- <uni-icons type="right" size="15" color="#aaa"></uni-icons>
- </view>
- </navigator>
- </view>
- </view>
-
- </view>
-
- <view class="loadingLayout" v-else>
- <view :style="{height:getNavBarHeight()+'px'}"></view>
- <uni-load-more status="loading"></uni-load-more>
- </view>
- </template>
- <script setup>
- import {getNavBarHeight} from "@/utils/system.js"
- import {apiUserInfo} from "@/api/apis.js"
- import { ref } from "vue";
- const userinfo = ref(null)
- const clickContact = ()=>{
- uni.makePhoneCall({
- phoneNumber:"114"
- })
- }
- const getUserInfo = ()=>{
- apiUserInfo().then(res=>{
- console.log(res);
- userinfo.value = res.data
- })
- }
- getUserInfo();
- </script>
- <style lang="scss" scoped>
- .userLayout{
- .userInfo{
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding:50rpx 0;
- .avatar{
- width: 160rpx;
- height: 160rpx;
- border-radius: 50%;
- overflow: hidden;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .ip{
- font-size: 44rpx;
- color:#333;
- padding:20rpx 0 5rpx;
- }
- .address{
- font-size: 28rpx;
- color:#aaa;
- }
- }
-
- .section{
- width: 690rpx;
- margin:50rpx auto;
- border:1px solid #eee;
- border-radius: 10rpx;
- box-shadow: 0 0 30rpx rgba(0,0,0,0.05);
- .list{
- .row{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding:0 30rpx;
- height: 100rpx;
- border-bottom: 1px solid #eee;
- position: relative;
- background: #fff;
- &:last-child{border-bottom:0}
- .left{
- display: flex;
- align-items: center;
- :deep(){
- .uni-icons{
- color:$brand-theme-color !important;
- }
- }
- .text{
- padding-left: 20rpx;
- color:#666
- }
- }
- .right{
- display: flex;
- align-items: center;
- .text{
- font-size: 28rpx;
- color:#aaa;
-
- }
- }
- button{
- position: absolute;
- top:0;
- left:0;
- height: 100rpx;
- width:100%;
- opacity: 0;
- }
- }
- }
- }
- }
- </style>
|