| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <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 class="visitor-form" >
- <view v-if="isLogin">
- <view class="form-item">
- <text class="label">姓名</text>
- <text class="value">{{user.nickName || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">手机号</text>
- <text class="value">{{user.phonenumber || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">公司名称</text>
- <text class="value">{{user.dept && user.dept.deptName || '-'}}</text>
- </view>
- <view class="form-item">
- <text class="label">部门</text>
- <text class="value">{{user.dept && user.dept.deptName || '-'}}</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 v-if="isLogin" class="logout-button" @tap="handlerLogout">
- <text class="logout-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 {
- getUserInfo, wxLogin,
- } from '../../config/api';
- import {
- 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.getUserInfo()
- },
- // 微信小程序分享配置
- 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)
- // }
- // },
- async getUserInfo() {
- const user = uni.getStorageSync('user');
- if (user) {
- this.user = user;
- }
- },
- // 登录处理
- async goLogin() {
- console.log(this.isLogin)
- if (!this.isLogin) {
- try {
- // 1. 尝试微信授权登录
- const loginRes = await new Promise((resolve, reject) => {
- uni.login({
- provider: 'weixin',
- success: (res) => {
- if (res.code) {
- resolve(res); // 成功获取 code
- } else {
- reject(new Error('未获取到微信授权码'));
- }
- },
- fail: (err) => {
- reject(new Error('微信授权失败'));
- }
- });
- });
- // 2. 调用微信登录接口
- const wxRes = await wxLogin({ code: loginRes.code });
- console.log('微信登录成功:', wxRes);
- // 3. 登录成功后的逻辑(如存储用户信息、跳转首页等)
- if (wxRes && wxRes.message === "登录成功"&& wxRes.user) {
- uni.setStorageSync('user', wxRes.data);
- if (wxRes.user) {
- uni.setStorageSync('user', wxRes.user);
- }
- // 更新store状态
- this.$store.commit('isLogin', true);
- this.isEmployeeLogin = true
- this.getUserInfo()
- // uni.switchTab({
- // url: '/pages/tabbar/home' // 替换为实际首页路径
- // });
- } else {
- console.log('微信登录接口返回异常');
- uni.navigateTo({
- url: '/pagesA/public/phone-login'
- });
- }
- } catch (error) {
- console.error('登录失败:', error);
- // 4. 微信授权或登录失败,跳转到手机号登录页
- // uni.navigateTo({
- // url: '/pagesA/public/phone-login'
- // });
- }
- // uni.navigateTo({
- // url: '/pagesA/public/login'
- // });
- } else {
- this.$route('/pagesA/public/login');
- }
- },
- // 跳转用户信息
- goUserDetail() {
- uni.navigateTo({
- url: '/pagesA/user/index'
- });
- },
- // 退出登录
- handlerLogout() {
- uni.showModal({
- title: '提示',
- content: '确定要退出登录吗?',
- success: (res) => {
- if (res.confirm) {
- // 清除缓存
- uni.removeStorageSync('access_token');
- uni.removeStorageSync('user');
- // 调用vuex的logout方法
- this.logout();
- uni.showToast({
- title: '退出成功',
- icon: 'success'
- });
- // 刷新当前页面
- this.user = {};
- }
- }
- });
- }
- },
- }
- </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;
- }
- .logout-button {
- margin: 30rpx 32rpx 0;
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #FF4748;
- border-radius: 44rpx;
- }
- .logout-text {
- color: #FFFFFF;
- font-size: 32rpx;
- }
- </style>
|