|
@@ -1,49 +1,46 @@
|
|
|
<template>
|
|
|
- <view class="mine-container" :style="{height: `${windowHeight}px`}">
|
|
|
- <!--顶部个人信息栏-->
|
|
|
- <view class="header-section">
|
|
|
- <view class="flex padding justify-between">
|
|
|
- <view class="flex align-center">
|
|
|
- <view v-if="!avatar" class="cu-avatar xl round bg-white">
|
|
|
- <view class="iconfont icon-people text-gray icon"></view>
|
|
|
- </view>
|
|
|
- <image v-if="avatar" @click="handleToAvatar" :src="avatar" class="cu-avatar xl round" mode="widthFix">
|
|
|
- </image>
|
|
|
- <view v-if="!name" @click="handleToLogin" class="login-tip">
|
|
|
- 点击登录
|
|
|
- </view>
|
|
|
- <view v-if="name" @click="handleToInfo" class="user-info">
|
|
|
- <view class="u_title">
|
|
|
- 用户名:{{ name }}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view @click="handleToInfo" class="flex align-center">
|
|
|
- <text>个人信息</text>
|
|
|
- <view class="iconfont icon-right"></view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="content-section">
|
|
|
- <view class="Wrapper-grid">
|
|
|
- <up-grid :border="false" col="4" @click="handleGridClick">
|
|
|
- <up-grid-item
|
|
|
- v-for="(item, index) in serviceList"
|
|
|
- :key="index"
|
|
|
- :custom-style="{ padding: '20rpx' }"
|
|
|
- >
|
|
|
- <!-- 图标 -->
|
|
|
- <image :src="item.icon" class="service-img" mode="aspectFit" />
|
|
|
-
|
|
|
- <!-- 文本 -->
|
|
|
- <text class="grid-text">{{ item.name }}</text>
|
|
|
- </up-grid-item>
|
|
|
- </up-grid>
|
|
|
-
|
|
|
- <up-toast ref="uToastRef" />
|
|
|
- </view>
|
|
|
-<!--
|
|
|
+ <view class="mine-container" :style="{height: `${windowHeight}px`}">
|
|
|
+ <!--顶部个人信息栏-->
|
|
|
+ <view class="header-section">
|
|
|
+ <view class="flex padding justify-between">
|
|
|
+ <view class="flex align-center">
|
|
|
+ <view v-if="!avatar" class="cu-avatar xl round bg-white">
|
|
|
+ <view class="iconfont icon-people text-gray icon"></view>
|
|
|
+ </view>
|
|
|
+ <image v-if="avatar" @click="handleToAvatar" :src="avatar" class="cu-avatar xl round"
|
|
|
+ mode="widthFix">
|
|
|
+ </image>
|
|
|
+ <view v-if="!name" @click="handleToLogin" class="login-tip">
|
|
|
+ 点击登录
|
|
|
+ </view>
|
|
|
+ <view v-if="name" @click="handleToInfo" class="user-info">
|
|
|
+ <view class="u_title">
|
|
|
+ 用户名:{{ name }}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view @click="handleToInfo" class="flex align-center">
|
|
|
+ <image :src="imagePath" mode="aspectFit" style="width: 50rpx;height: 50rpx;"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="content-section">
|
|
|
+ <view class="Wrapper-grid">
|
|
|
+ <up-grid :border="false" col="4" @click="handleGridClick">
|
|
|
+ <up-grid-item v-for="(item, index) in serviceList" :key="index"
|
|
|
+ :custom-style="{ padding: '20rpx' }">
|
|
|
+ <!-- 图标 -->
|
|
|
+ <image :src="item.icon" class="service-img" mode="aspectFit" />
|
|
|
+
|
|
|
+ <!-- 文本 -->
|
|
|
+ <text class="grid-text">{{ item.name }}</text>
|
|
|
+ </up-grid-item>
|
|
|
+ </up-grid>
|
|
|
+
|
|
|
+ <up-toast ref="uToastRef" />
|
|
|
+ </view>
|
|
|
+ <!--
|
|
|
<view class="menu-list">
|
|
|
<view class="list-cell list-cell-arrow" @click="handleToEditInfo">
|
|
|
<view class="menu-item-box">
|
|
@@ -70,9 +67,9 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view> -->
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <!-- <view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!-- <view>
|
|
|
<uni-popup ref="popup" type="dialog">
|
|
|
<uni-popup-dialog type="info" cancelText="关闭" confirmText="退出"
|
|
|
title="通知" content="确定注销并退出系统吗"
|
|
@@ -84,193 +81,199 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
- import storage from '@/utils/storage'
|
|
|
- import store from '@/store'
|
|
|
- import { ref } from "vue";
|
|
|
- import config from '@/config.js'
|
|
|
- const name=store.state.user.name;
|
|
|
- const version= config.appInfo.version;
|
|
|
- const avatar=ref(store.state.user.avatar);
|
|
|
- const windowHeight=ref(uni.getSystemInfoSync().windowHeight - 50);
|
|
|
- const popup = ref(null);
|
|
|
-
|
|
|
- uni.$on('refresh', () => {
|
|
|
- avatar.value=store.state.user.avatar;
|
|
|
- })
|
|
|
-
|
|
|
-
|
|
|
- const serviceList = ref([
|
|
|
- {
|
|
|
- icon: '/static/my/待付款.png',
|
|
|
- name: '待付款'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/待服务.png',
|
|
|
- name: '待服务'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/已完成.png',
|
|
|
- name: '已完成'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/评论.png',
|
|
|
- name: '评论'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/钱包.png',
|
|
|
- name: '钱包'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/浏览记录.png',
|
|
|
- name: '浏览记录'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/收藏.png',
|
|
|
- name: '收藏'
|
|
|
- },
|
|
|
- {
|
|
|
- icon: '/static/my/客服.png',
|
|
|
- name: '帮助与客服'
|
|
|
- },
|
|
|
- ]);
|
|
|
-
|
|
|
- function handleToInfo() {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages_mine/pages/info/index'
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- function handleToAvatar() {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages_mine/pages/avatar/index'
|
|
|
- });
|
|
|
- };
|
|
|
- function handleLogout() {
|
|
|
- popup.value.open();
|
|
|
- };
|
|
|
- function dialogConfirm() {
|
|
|
- //console.log('----------------点击确认------------')
|
|
|
- store.dispatch('LogOut').then(() => {
|
|
|
+ import storage from '@/utils/storage'
|
|
|
+ import store from '@/store'
|
|
|
+ import {
|
|
|
+ ref
|
|
|
+ } from "vue";
|
|
|
+ import config from '@/config.js'
|
|
|
+ const name = store.state.user.name;
|
|
|
+ const version = config.appInfo.version;
|
|
|
+ const avatar = ref(store.state.user.avatar);
|
|
|
+ const windowHeight = ref(uni.getSystemInfoSync().windowHeight - 50);
|
|
|
+ const popup = ref(null);
|
|
|
+ const imagePath = '/static/设置.png';
|
|
|
+
|
|
|
+ uni.$on('refresh', () => {
|
|
|
+ avatar.value = store.state.user.avatar;
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ const serviceList = ref([{
|
|
|
+ icon: '/static/my/待付款.png',
|
|
|
+ name: '待付款'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/待服务.png',
|
|
|
+ name: '待服务'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/已完成.png',
|
|
|
+ name: '已完成'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/评论.png',
|
|
|
+ name: '评论'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/钱包.png',
|
|
|
+ name: '钱包'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/浏览记录.png',
|
|
|
+ name: '浏览记录'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/收藏.png',
|
|
|
+ name: '收藏'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ icon: '/static/my/客服.png',
|
|
|
+ name: '帮助与客服'
|
|
|
+ },
|
|
|
+ ]);
|
|
|
+
|
|
|
+ function handleToInfo() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages_mine/pages/info/index'
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+
|
|
|
+ function handleToAvatar() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages_mine/pages/avatar/index'
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ function handleLogout() {
|
|
|
+ popup.value.open();
|
|
|
+ };
|
|
|
+
|
|
|
+ function dialogConfirm() {
|
|
|
+ //console.log('----------------点击确认------------')
|
|
|
+ store.dispatch('LogOut').then(() => {
|
|
|
uni.reLaunch({
|
|
|
url: '/pages/login'
|
|
|
});
|
|
|
- })
|
|
|
- };
|
|
|
- function dialogClose() {
|
|
|
- //console.log('点击关闭')
|
|
|
- };
|
|
|
- function handleHelp() {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages_mine/pages/help/index'
|
|
|
- });
|
|
|
- };
|
|
|
- function handleAbout() {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages_mine/pages/about/index'
|
|
|
- });
|
|
|
- };
|
|
|
- function handleJiaoLiuQun() {
|
|
|
- uni.showToast({
|
|
|
- title: 'QQ群:133713780',
|
|
|
- mask: false,
|
|
|
- icon:"none",
|
|
|
- duration: 1000
|
|
|
- });
|
|
|
- };
|
|
|
- function handleBuilding() {
|
|
|
- uni.showToast({
|
|
|
- title: '模块建设中~',
|
|
|
- mask: false,
|
|
|
- icon:"none",
|
|
|
- duration: 1000
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
+ })
|
|
|
+ };
|
|
|
+
|
|
|
+ function dialogClose() {
|
|
|
+ //console.log('点击关闭')
|
|
|
+ };
|
|
|
+
|
|
|
+ function handleHelp() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages_mine/pages/help/index'
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ function handleAbout() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages_mine/pages/about/index'
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ function handleJiaoLiuQun() {
|
|
|
+ uni.showToast({
|
|
|
+ title: 'QQ群:133713780',
|
|
|
+ mask: false,
|
|
|
+ icon: "none",
|
|
|
+ duration: 1000
|
|
|
+ });
|
|
|
+ };
|
|
|
+
|
|
|
+ function handleBuilding() {
|
|
|
+ uni.showToast({
|
|
|
+ title: '模块建设中~',
|
|
|
+ mask: false,
|
|
|
+ icon: "none",
|
|
|
+ duration: 1000
|
|
|
+ });
|
|
|
+ }
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
+ page {
|
|
|
+ background-color: #f5f6f7;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mine-container {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+
|
|
|
+ .header-section {
|
|
|
+ padding: 15px 15px 45px 15px;
|
|
|
+ background-color: #3c96f3;
|
|
|
+ color: white;
|
|
|
+
|
|
|
+ .login-tip {
|
|
|
+ font-size: 18px;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cu-avatar {
|
|
|
+ border: 2px solid #eaeaea;
|
|
|
+
|
|
|
+ .icon {
|
|
|
+ font-size: 40px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .user-info {
|
|
|
+ margin-left: 15px;
|
|
|
+
|
|
|
+ .u_title {
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .content-section {
|
|
|
+ position: relative;
|
|
|
+ top: -50px;
|
|
|
+
|
|
|
+ .mine-actions {
|
|
|
+ margin: 15px 15px;
|
|
|
+ padding: 20px 0px;
|
|
|
+ border-radius: 8px;
|
|
|
+ background-color: white;
|
|
|
+
|
|
|
+ .action-item {
|
|
|
+ .icon {
|
|
|
+ font-size: 28px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text {
|
|
|
+ display: block;
|
|
|
+ font-size: 13px;
|
|
|
+ margin: 8px 0px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .Wrapper-grid {
|
|
|
+ margin-top: 120rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 图标样式 */
|
|
|
+ .service-img {
|
|
|
+ width: 60rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
- page {
|
|
|
- background-color: #f5f6f7;
|
|
|
- }
|
|
|
-
|
|
|
- .mine-container {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
-
|
|
|
-
|
|
|
- .header-section {
|
|
|
- padding: 15px 15px 45px 15px;
|
|
|
- background-color: #3c96f3;
|
|
|
- color: white;
|
|
|
-
|
|
|
- .login-tip {
|
|
|
- font-size: 18px;
|
|
|
- margin-left: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .cu-avatar {
|
|
|
- border: 2px solid #eaeaea;
|
|
|
-
|
|
|
- .icon {
|
|
|
- font-size: 40px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .user-info {
|
|
|
- margin-left: 15px;
|
|
|
-
|
|
|
- .u_title {
|
|
|
- font-size: 18px;
|
|
|
- line-height: 30px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .content-section {
|
|
|
- position: relative;
|
|
|
- top: -50px;
|
|
|
-
|
|
|
- .mine-actions {
|
|
|
- margin: 15px 15px;
|
|
|
- padding: 20px 0px;
|
|
|
- border-radius: 8px;
|
|
|
- background-color: white;
|
|
|
-
|
|
|
- .action-item {
|
|
|
- .icon {
|
|
|
- font-size: 28px;
|
|
|
- }
|
|
|
-
|
|
|
- .text {
|
|
|
- display: block;
|
|
|
- font-size: 13px;
|
|
|
- margin: 8px 0px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- .Wrapper-grid{
|
|
|
- margin-top: 120rpx;
|
|
|
- }
|
|
|
-
|
|
|
- /* 图标样式 */
|
|
|
- .service-img {
|
|
|
- width: 60rpx;
|
|
|
- height: 60rpx;
|
|
|
- margin-bottom: 10rpx;
|
|
|
- }
|
|
|
-
|
|
|
- /* 文本样式 */
|
|
|
- .grid-text {
|
|
|
- font-size: 24rpx;
|
|
|
- color: #333;
|
|
|
- text-align: center;
|
|
|
- margin-top: 10rpx;
|
|
|
- }
|
|
|
-
|
|
|
-</style>
|
|
|
+ /* 文本样式 */
|
|
|
+ .grid-text {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #333;
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 10rpx;
|
|
|
+ }
|
|
|
+</style>
|