| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <template>
- <view class="page-container">
- <!-- 背景图片 -->
- <image class="bg-image " src="@/static/images/bg.png" mode="aspectFill"></image>
- <!-- 内容区域 -->
- <view class="content-area">
- <!-- 访客信息表单 -->
- <view class="visitor-form" @tap="goLogin">
- <view v-if="isLogin">
- <view class="form-item">
- <text class="label">姓名</text>
- <text class="value">{{user.account || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">手机号</text>
- <text class="value">{{user.phone || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">公司名称</text>
- <text class="value">{{user.company || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">部门</text>
- <text class="value">{{user.department || '-'}}</text>
- </view>
- </view>
- <view v-else class="login-container">
- <view class="login-prompt">
- <text class="login-title">欢迎使用知己访客</text>
- <text class="login-subtitle">登录后可使用更多功能</text>
- </view>
- <view class="login-button" @tap="goLogin">
- <text class="login-text">点击登录</text>
- <text class="login-arrow">></text>
- </view>
- </view>
- </view>
- <view v-if="isLogin" class="edit-button" @tap="goUserDetail">
- <text class="edit-text">编辑</text>
- </view>
- <!-- 功能菜单 -->
- </view>
- <uni-popup ref="checkLoginDialog" type="dialog">
- <uni-popup-dialog type="warn" cancelText="继续浏览" confirmText="确认" title="提示" content="体验更多功能,请先登录"
- @confirm="goLogin()"></uni-popup-dialog>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- memberDetail,
- memberPetList,
- carouselQueryAll,
- getOrderStatusCounts,
- } from '../../config/api';
- import {
- mapMutations,
- mapActions,
- mapGetters
- } from 'vuex';
- import store from '@/store';
- import customNavbar from '../../components/custom-navbar/custom-navbar.vue'
- import {
- shareImg
- } from '@/common/config.js'
- export default {
- data() {
- return {
- user: {}
- }
- },
- computed: {
- ...mapGetters(['isLogin', 'userInfo', 'access_token', 'refresh_token'])
- },
- onLoad() {
- },
- onShow() {
- this.detail()
- },
- // 微信小程序分享配置
- onShareAppMessage() {
- return {
- title: `邀请您加入知己访客`,
- path: `/pages/index/index`,
- imageUrl: shareImg // 分享图片,需要添加
- }
- },
- onShareTimeline(res) {
- let that = this;
- let shareInfo = store.state.vuex_shareInfo;
- let query = shareInfo.query;
- //携带当前页面资源ID参数
- let currentPage = getCurrentPages()[getCurrentPages().length - 1];
- let options = currentPage.options;
- if (JSON.stringify(options) != '{}' && options.id) {
- query += `&id=${options.id}`;
- }
- return {
- title: shareInfo.title,
- query: query,
- imageUrl: shareImg,
- success(res) {
- uni.showToast({
- title: '分享成功'
- })
- },
- fail(res) {
- uni.showToast({
- title: '分享失败',
- icon: 'none'
- })
- },
- complete() {}
- }
- },
- methods: {
- ...mapActions(['logout', 'setToken', 'setUserInfo']),
- async detail() {
- const data = await memberDetail()
- if (data.code == 200) {
- this.user = data.data
- uni.setStorageSync('user', this.user)
- }
- },
- // 登录处理
- goLogin() {
- if (!this.isLogin) {
- uni.navigateTo({
- url: '/pagesA/public/login'
- });
- } else {
- this.$route('/packageUser/pages/user-info/index');
- }
- },
- // 跳转用户信息
- goUserDetail() {
- uni.navigateTo({
- url: '/pagesA/user/index'
- });
- },
- handlerLogout() {
- this.logout()
- },
- },
- }
- </script>
- <style>
- /* 页面容器 */
- .page-container {
- min-height: 100vh;
- background-color: #F5F5F5;
- }
- /* 背景图片 */
- .bg-image {
- top: 0;
- left: 0;
- width: 100%;
- height: 300rpx;
- z-index: 0;
- }
- /* 内容区域 */
- .content-area {
- position: relative;
- z-index: 1;
- padding: 32rpx;
- }
- /* 访客信息表单 */
- .visitor-form {
- background: #FFFFFF;
- border-radius: 24rpx;
- padding: 0 32rpx;
- box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
- }
- .form-item {
- display: flex;
- align-items: center;
- min-height: 120rpx;
- border-bottom: 1rpx solid #F5F5F5;
- }
- .form-item:last-child {
- border-bottom: none;
- }
- .label {
- width: 140rpx;
- font-size: 28rpx;
- color: #999999;
- }
- .value {
- flex: 1;
- font-size: 28rpx;
- color: #333333;
- }
- /* 未登录状态样式 */
- .login-container {
- padding: 40rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 40rpx;
- }
- .login-prompt {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 16rpx;
- }
- .login-title {
- font-size: 36rpx;
- color: #333333;
- font-weight: 600;
- }
- .login-subtitle {
- font-size: 28rpx;
- color: #999999;
- }
- .login-button {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(90deg, #FF5B05 0%, #FF8E3C 100%);
- border-radius: 44rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8rpx;
- box-shadow: 0 4rpx 16rpx rgba(255, 91, 5, 0.2);
- }
- .login-text {
- color: #FFFFFF;
- font-size: 32rpx;
- font-weight: 500;
- }
- .login-arrow {
- color: #FFFFFF;
- font-size: 32rpx;
- font-weight: 500;
- margin-left: 8rpx;
- }
- .edit-button {
- margin: 80rpx 32rpx 0;
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border: 2rpx solid #FF5B05;
- border-radius: 44rpx;
- }
- .edit-text {
- color: #FF5B05;
- font-size: 32rpx;
- }
- </style>
|