123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <!-- @format -->
- <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>
- <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 class="u_title"> 单 位: {{ userInfo.mechanism.name }} </view>
- </view>
- </view>
- </view>
- </view>
- <view class="btn"><u-button v-if="isWeixin" shape="circle" type="primary"
- @click="showModal = true">微信用户解绑</u-button></view>
- <view class="btn"><u-button shape="circle" @click="handleOut" type="primary">退出登录</u-button></view>
- <u-modal showCancelButton cancelText="取消" @cancel="showModal = false" @close="showModal = false"
- confirmText="确认" @confirm="handleUnBind" :show="showModal" :title="'提示'"
- :content="'解除当前微信登录用户会返回登录页重新登录'"></u-modal>
- </view>
- </template>
- <script>
- import storage from "@/utils/storage";
- import {
- unBindWeixin
- } from "@/api/system/user";
- export default {
- data() {
- return {
- showModal: false,
- isWeixin: this.$store.state.user.isWeixin,
- name: this.$store.state.user.name,
- version: getApp().globalData.config.appInfo.version,
- userInfo: null,
- };
- },
- onLoad() {
- this.userInfo = JSON.parse(uni.getStorageSync("userInfo"));
- console.log(this.userInfo);
- },
- computed: {
- avatar() {
- return this.$store.state.user.avatar;
- },
- windowHeight() {
- return uni.getSystemInfoSync().windowHeight - 50;
- },
- },
- methods: {
- //退出登录
- handleOut() {
- this.$store.dispatch("LogOut").then((res) => {
- this.$tab.reLaunch("/pages/login");
- uni.clearStorageSync();
- });
- },
- //微信用户解绑
- async handleUnBind() {
- try {
- uni.showLoading({
- title: "提交中...",
- });
- let unionId = uni.getStorageSync("unionId");
- await unBindWeixin({
- unionId: unionId
- });
- uni.showToast({
- title: "提交成功",
- //显示持续时间为 2秒
- duration: 2000,
- });
- this.$store.dispatch("LogOut").then((res) => {
- this.$tab.reLaunch("/pages/login");
- uni.clearStorageSync();
- this.$store.state.user.isWeixin = false;
- });
- } catch (error) {}
- },
- handleToInfo() {
- this.$tab.navigateTo("/pages/mine/info/index");
- },
- handleToEditInfo() {
- this.$tab.navigateTo("/pages/mine/info/edit");
- },
- handleToSetting() {
- this.$tab.navigateTo("/pages/mine/setting/index");
- },
- handleToLogin() {
- this.$tab.reLaunch("/pages/login");
- },
- handleToAvatar() {
- this.$tab.navigateTo("/pages/mine/avatar/index");
- },
- handleLogout() {
- this.$modal.confirm("确定注销并退出系统吗?").then(() => {
- this.$store.dispatch("LogOut").then(() => {
- this.$tab.reLaunch("/pages/index");
- });
- });
- },
- handleHelp() {
- this.$tab.navigateTo("/pages/mine/help/index");
- },
- handleAbout() {
- this.$tab.navigateTo("/pages/mine/about/index");
- },
- handleJiaoLiuQun() {
- this.$modal.showToast("QQ群:①133713780、②146013835");
- },
- handleBuilding() {
- this.$modal.showToast("模块建设中~");
- },
- },
- };
- </script>
- <style lang="scss">
- page {
- background-color: #f5f6f7;
- }
- .btn {
- width: 90%;
- margin: 30rpx auto 0;
- }
- .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: 16px;
- 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;
- }
- }
- }
- }
- }
- </style>
|