123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <template>
- <view>
- <u-navbar :border-bottom="false" :is-back="false" title="我的"></u-navbar>
- <view class="u-flex user-box u-p-l-30 u-p-r-20 u-p-t-30 u-p-b-30">
- <view class="u-flex" @click="profile">
- <view class="u-m-r-20">
- <u-avatar :src="avatar" size="140"></u-avatar>
- </view>
- <view class="u-flex-1">
- <view class="u-font-18 u-p-b-20">{{ vuex_user.user.userName }}</view>
- <view class="u-font-14 u-tips-color">昵称:{{ vuex_user.user.nickName }}</view>
- </view>
- </view>
- </view>
- <view class="center-nav">
- <u-row>
- <u-col v-for="(item,index) in navList" :key="index" span="3" text-align="center">
- <view v-if="item.name=='问题反馈'">
- <!-- 调用微信反馈功能 -->
- <button class="clearBtn" hover-class="none" open-type="feedback" style="background-color: #FFFFFF;"
- type="default">
- <u-icon :name="item.icon" color="#909399" size="50"></u-icon>
- <view class="tabName" style="padding-top: 15rpx;">{{ item.name }}</view>
- </button>
- </view>
- <view v-else @click="clickNav(item.url)">
- <u-icon :name="item.icon" color="#909399" size="50"></u-icon>
- <view class="tabName">{{ item.name }}</view>
- </view>
- </u-col>
- </u-row>
- </view>
- <view class="u-m-t-20">
- <u-cell-group>
- <!-- <u-cell-item icon="integral" title="实名认证" @click="setting"></u-cell-item> -->
- <u-cell-item icon="setting" title="个人中心" @click="setting"></u-cell-item>
- </u-cell-group>
- </view>
- <view class="u-m-t-20">
- <u-cell-group>
- <u-cell-item :arrow="false" icon="level" title="技术支持" value="18720989281"
- @click="callPhoneNumber"></u-cell-item>
- <u-cell-item icon="question-circle" title="常见问题" @click="problem"></u-cell-item>
- <u-cell-item icon="star" title="关于我们" @click="aboutMe"></u-cell-item>
- </u-cell-group>
- </view>
- </view>
- </template>
- <script>
- import config from "@/common/config.js" // 全局配置文件
- export default {
- data() {
- return {
- avatar: uni.getStorageSync('lifeData').vuex_user.user.avatar.includes(config.staticUrl) ? uni.getStorageSync('lifeData').vuex_user.user.avatar : config.staticUrl + uni.getStorageSync('lifeData').vuex_user.user.avatar,
- show: true,
- navList: [
- {name: "浏览记录", icon: "checkmark-circle", url: "pages/center/history"},
- {name: "我的收藏", icon: "heart", url: "pages/center/heart"},
- {name: "我的委托", icon: "order", url: "pages/center/order"},
- {name: "问题反馈", icon: "info-circle"}
- ],
- }
- },
- onLoad() {
- uni.$on('updateAvatar', (obj) => {
- // 获取数据
- this.updateAvatar();
- })
- },
- onUnload() {
- // 移除监听事件
- uni.$off('updateAvatar');
- },
- onShow() {
- // 检查token
- this.checkToken();
- },
- methods: {
- logout() {
- // 登录成功修改token与用户信息
- this.$u.vuex('vuex_token', '');
- this.$u.vuex('vuex_user', {});
- this.$u.route('/pages/login/login')
- },
- profile() {
- this.$u.route('/pages/profile/profile')
- },
- setting() {
- this.$u.route('/pages/profile/setting')
- },
- //拨打固定电话
- callPhoneNumber() {
- uni.makePhoneCall({
- phoneNumber: "18720989281",
- });
- },
- problem() {
- this.$u.route({
- url: 'pages/login/problem'
- })
- },
- // 关于作者
- aboutMe() {
- this.$u.route('/pages/profile/aboutMe')
- },
- checkToken() {
- // 判断是否有token
- let lifeData = uni.getStorageSync('lifeData');
- let token = lifeData.vuex_token
- if (!token) {
- // 没有token 则跳转到登录
- return uni.reLaunch({
- url: '../login/login'
- })
- } else {
- // 判断Token是否有效
- let url = "/api/profile/isExpiration";
- this.$u.get(url, {
- token: token
- }).then(obj => {
- if (obj.data) {
- // 没有token过期则跳转到登录
- return uni.reLaunch({
- url: '../login/login'
- })
- }
- });
- }
- },
- code() {
- this.$mytip.toast('敬请期待')
- },
- clickNav(url) {
- if (url) {
- this.$u.route(url);
- } else {
- this.$mytip.toast('敬请期待')
- }
- },
- updateAvatar() {
- this.avatar = uni.getStorageSync('lifeData').vuex_user.user.avatar.includes(config.staticUrl) ? uni.getStorageSync('lifeData').vuex_user.user.avatar : config.staticUrl + uni.getStorageSync('lifeData').vuex_user.user.avatar
- },
- }
- }
- </script>
- <style lang="scss">
- .user-box {
- background-color: #fff;
- justify-content: space-between;
- }
- .center-nav {
- background-color: #FFFFFF;
- margin-top: 30 rpx;
- padding: 30 rpx 0;
- border-radius: 8px;
- .tabName {
- color: #606266;
- font-size: 26 rpx;
- padding-top: 10 rpx;
- }
- }
- .qiandao {
- color: #606266;
- font-size: 24 rpx;
- margin-right: 24 rpx;
- margin-top: 54 rpx;
- justify-content: center;
- align-items: center;
- }
- .clearBtn {
- margin: 0;
- padding: 0;
- line-height: 1;
- background-color: #FFFFFF;
- }
- .clearBtn::after {
- position: unset !important;
- border: unset;
- }
- </style>
|