186 lines
5.8 KiB
Vue
186 lines
5.8 KiB
Vue
<template>
|
|
<div class="p-2">
|
|
<el-row :gutter="20">
|
|
<el-col :span="6" :xs="24">
|
|
<el-card class="box-card">
|
|
<template #header>
|
|
<div class="clearfix">
|
|
<span>个人信息</span>
|
|
</div>
|
|
</template>
|
|
<div>
|
|
<div class="text-center">
|
|
<userAvatar />
|
|
</div>
|
|
<ul class="list-group list-group-striped">
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="my-copy" />
|
|
用户登录名
|
|
<div class="pull-right">{{ state.user.userName }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="user" />
|
|
用户名称
|
|
<div class="pull-right">{{ state.user.nickName }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="phone" />
|
|
手机号码
|
|
<div class="pull-right">{{ state.user.phonenumber }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="email" />
|
|
用户邮箱
|
|
<div class="pull-right">{{ state.user.email }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="company" />
|
|
地址
|
|
<div class="pull-right">{{ state.user.address }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="tree" />
|
|
所属部门
|
|
<div v-if="state.user.deptName" class="pull-right">{{ state.user.deptName }} / {{ state.postGroup }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="peoples" />
|
|
所属角色
|
|
<div class="pull-right">{{ state.roleGroup }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="date" />
|
|
创建日期
|
|
<div class="pull-right">{{ state.user.createTime }}</div>
|
|
</li>
|
|
<li class="list-group-item">
|
|
<svg-icon icon-class="wechat" />
|
|
微信
|
|
<div class="pull-right">
|
|
<div v-if="state.user.openId == null || state.user.openId == ''">
|
|
<el-link type="success" @click="authUrl('wechat')">绑定微信</el-link>
|
|
</div>
|
|
<div v-else>已经绑定</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="18" :xs="24">
|
|
<el-card>
|
|
<template #header>
|
|
<div class="clearfix">
|
|
<span>基本资料</span>
|
|
</div>
|
|
</template>
|
|
<el-tabs v-model="activeTab">
|
|
<el-tab-pane label="基本资料" name="userinfo">
|
|
<userInfo :user="userForm" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label="修改密码" name="resetPwd">
|
|
<resetPwd />
|
|
</el-tab-pane>
|
|
<!-- <el-tab-pane label="第三方应用" name="thirdParty">-->
|
|
<!-- <thirdParty :auths="state.auths" />-->
|
|
<!-- </el-tab-pane>-->
|
|
<el-tab-pane label="在线设备" name="onlineDevice">
|
|
<onlineDevice :devices="state.devices" />
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
<el-dialog v-model="dialogVisible" title="扫码绑定微信" width="360">
|
|
<vue-qr
|
|
:text="qrCodeValue"
|
|
:size="300"
|
|
:logoSrc="wechatLogo"
|
|
:logoScale="0.15"
|
|
:margin="5"
|
|
colorDark="#000000"
|
|
colorLight="#ffffff"
|
|
:correctLevel="3"
|
|
/>
|
|
<template #footer>
|
|
<div class="dialog-footer">
|
|
<el-button @click="dialogVisible = false">取消</el-button>
|
|
<el-button type="primary" @click="dialogVisible = false"> 确定</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Profile" lang="ts">
|
|
import UserAvatar from './userAvatar.vue';
|
|
import UserInfo from './userInfo.vue';
|
|
import ResetPwd from './resetPwd.vue';
|
|
import ThirdParty from './thirdParty.vue';
|
|
import OnlineDevice from './onlineDevice.vue';
|
|
import { authBindingWechat, getAuthList } from '@/api/system/social/auth';
|
|
import { getUserProfile } from '@/api/system/user';
|
|
import { getOnline } from '@/api/monitor/online';
|
|
import { UserVO } from '@/api/system/user/types';
|
|
import vueQr from 'vue-qr/src/packages/vue-qr.vue';
|
|
import wechatLogo from '@/assets/icons/png/wechat.png';
|
|
|
|
const activeTab = ref('userinfo');
|
|
|
|
const dialogVisible = ref(false);
|
|
|
|
const qrCodeValue = ref('https://example.com');
|
|
|
|
const qrCodeWidth = ref(250);
|
|
|
|
interface State {
|
|
user: Partial<UserVO>;
|
|
roleGroup: string;
|
|
postGroup: string;
|
|
auths: any;
|
|
devices: any;
|
|
}
|
|
|
|
const state = ref<State>({
|
|
user: {},
|
|
roleGroup: '',
|
|
postGroup: '',
|
|
auths: [],
|
|
devices: []
|
|
});
|
|
|
|
const userForm = ref({});
|
|
|
|
const getUser = async () => {
|
|
const res = await getUserProfile();
|
|
state.value.user = res.data.user;
|
|
userForm.value = { ...res.data.user };
|
|
state.value.roleGroup = res.data.roleGroup;
|
|
state.value.postGroup = res.data.postGroup;
|
|
};
|
|
|
|
const getAuths = async () => {
|
|
const res = await getAuthList();
|
|
state.value.auths = res.data;
|
|
};
|
|
const getOnlines = async () => {
|
|
const res = await getOnline();
|
|
state.value.devices = res.rows;
|
|
};
|
|
|
|
const authUrl = (source: string) => {
|
|
authBindingWechat().then((res: any) => {
|
|
if (res.code === 200) {
|
|
qrCodeValue.value = res.data;
|
|
dialogVisible.value = true;
|
|
}
|
|
});
|
|
};
|
|
|
|
onMounted(() => {
|
|
getUser();
|
|
getAuths();
|
|
getOnlines();
|
|
});
|
|
</script>
|