Browse Source

新增部门名称字段,优化用户信息展示

master
parent
commit
1a70eebcbf
  1. 7
      src/layout/components/UserInfo/src/UserInfo.vue
  2. 8
      src/store/modules/user.ts
  3. 1
      src/views/Home/Index.vue
  4. 148
      src/views/Login/components/QrCodeForm.vue

7
src/layout/components/UserInfo/src/UserInfo.vue

@ -24,7 +24,8 @@ const { getPrefixCls } = useDesign()
const prefixCls = getPrefixCls('user-info')
const avatar = computed(() => userStore.user.avatar || avatarImg)
const realName=computed(()=>userStore.user.realName ?? '管理员')
const realName = computed(() => userStore.user.realName ?? '管理员')
const deptName = computed(() => userStore.user.deptName ?? '管理员')
//
const lockStore = useLockStore()
const getIsLock = computed(() => lockStore.getLockInfo?.isLock ?? false)
@ -56,9 +57,9 @@ const toDocument = () => {
<template>
<ElDropdown class="custom-hover" :class="prefixCls" trigger="click">
<div class="flex items-center gap-4px">
<ElAvatar :src="avatar" alt="" :size="32" class=" rounded-[50%]" />
<ElAvatar :src="avatar" alt="" :size="32" class="rounded-[50%]" />
<span class="text-14px color-#303133 font-500 line-height-22px">
{{ realName }}|{{}}
{{ realName }} | {{ deptName }}
</span>
</div>
<template #dropdown>

8
src/store/modules/user.ts

@ -11,7 +11,8 @@ interface UserVO {
avatar: string
nickname: string
deptId: number,
realName:string
realName:string,
deptName:string,
}
interface UserInfoVO {
@ -33,6 +34,7 @@ export const useUserStore = defineStore('admin-user', {
nickname: '',
deptId: 0,
realName: '',
deptName:''
}
}),
getters: {
@ -58,7 +60,6 @@ export const useUserStore = defineStore('admin-user', {
let userInfo = wsCache.get(CACHE_KEY.USER)
if (!userInfo) {
userInfo = await getInfo()
console.log(userInfo)
}
this.permissions = userInfo.permissions
this.roles = userInfo.roles
@ -96,7 +97,8 @@ export const useUserStore = defineStore('admin-user', {
avatar: '',
nickname: '',
deptId: 0,
realName:''
realName:'',
deptName:''
}
}
}

1
src/views/Home/Index.vue

@ -491,7 +491,6 @@ const getPieData = async () => {
// 6
const getS3Data = async () => {
const res = await HomeApi.getTaskNumDoing(queryParams)
console.log(res)
let data1 = [] as any
let data2 = [] as any
res.forEach((item: any) => {

148
src/views/Login/components/QrCodeForm.vue

@ -3,15 +3,30 @@
<el-col :span="24" style="padding-right: 10px; padding-left: 10px">
<img class="topImg" src="@/assets/imgs/screen/login-top.png" alt="logo" />
</el-col>
<el-col :span="24" style="padding-right: 10px; padding-left: 10px; margin-bottom:20px; text-align: center">
<img width="320px" height="320px" :src="imageUrl" alt="Converted Image" v-if="imageUrl" />
<el-col
:span="24"
style="padding-right: 10px; padding-left: 10px; margin-bottom: 20px; text-align: center"
>
<img width="320px" height="320px" :src="imageUrl" alt="Converted Image" v-if="imageUrl" />
</el-col>
<el-col v-if="!refreshQR" :span="24" style="padding-right: 10px; padding-left: 10px; text-align: center">
<img class="bottomImg" src="@/assets/imgs/screen/login-bottom.png" alt="logo" />
<el-col
v-if="!refreshQR"
:span="24"
style="padding-right: 10px; padding-left: 10px; text-align: center"
>
<img class="bottomImg" src="@/assets/imgs/screen/login-bottom.png" alt="logo" />
</el-col>
<el-col v-if="refreshQR" :span="24" style="padding-right: 10px; padding-left: 10px; text-align: center">
<img class="bottomImg" src="@/assets/imgs/screen/qrsx.png" alt="logo" @click="handleRefresh" />
<el-col
v-if="refreshQR"
:span="24"
style="padding-right: 10px; padding-left: 10px; text-align: center"
>
<img
class="bottomImg"
src="@/assets/imgs/screen/qrsx.png"
alt="logo"
@click="handleRefresh"
/>
</el-col>
</el-row>
</template>
@ -24,104 +39,103 @@ import { LoginStateEnum, useLoginState } from './useLogin'
import router from '@/router'
defineOptions({ name: 'QrCodeForm' })
const imageUrl = ref('');
const uuuid =ref('')
const imageUrl = ref('')
const uuuid = ref('')
const refreshQR = ref(false)
const { t } = useI18n()
const { handleBackLogin, getLoginState } = useLoginState()
const getShow = computed(() => true)
// ID
let intervalId = ref();
let intervalId = ref()
const handleRefresh = () => {
window.location.reload()
}
const getimg =async ()=>{
const array = new Uint32Array(4);
crypto.getRandomValues(array);
let result = '';
const getimg = async () => {
const array = new Uint32Array(4)
crypto.getRandomValues(array)
let result = ''
array.forEach((value) => {
result += value.toString(16).padStart(8, '0');
});
uuuid.value = result;
result += value.toString(16).padStart(8, '0')
})
uuuid.value = result
var mockBinaryData = await LoginApi.getCodeWebPic({
scene:uuuid.value,
var mockBinaryData = await LoginApi.getCodeWebPic({
scene: uuuid.value,
path: 'sub/common/waiting',
checkPath: false
});
})
// Base64
const binaryString = atob(mockBinaryData);
const len = binaryString.length;
const bytes = new Uint8Array(len);
for (let i = 0; i < len; i++) {
bytes[i] = binaryString.charCodeAt(i);
}
const binaryString = atob(mockBinaryData)
const len = binaryString.length
const bytes = new Uint8Array(len)
for (let i = 0; i < len; i++) {
bytes[i] = binaryString.charCodeAt(i)
}
// Blob
const blob = new Blob([bytes], { type: 'image/png' });
const blob = new Blob([bytes], { type: 'image/png' })
// URL
imageUrl.value = URL.createObjectURL(blob);
imageUrl.value = URL.createObjectURL(blob)
//
refaulst();
refaulst()
}
//
const startTime = Date.now();
const startTime = Date.now()
// 10
const tenMinutes = 10 *60 * 10000 ;
const tenMinutes = 10 * 60 * 10000
//
const refaulst = ()=>{
refreshQR.value = false;
//
if (intervalId) {
clearInterval(intervalId.value);
const refaulst = () => {
refreshQR.value = false
//
if (intervalId) {
clearInterval(intervalId.value)
}
// 5
intervalId.value = setInterval(async () => {
try {
// 10
if (Date.now() - startTime >= tenMinutes) {
clearInterval(intervalId.value);
console.log('定时器已停止,已过去 10 分钟。');
refreshQR.value = true;
if (Date.now() - startTime >= tenMinutes) {
clearInterval(intervalId.value)
console.log('定时器已停止,已过去 10 分钟。')
refreshQR.value = true
return;
}
return
}
const res = await LoginApi.qrLoginCode({code:uuuid.value})
if(res){
clearInterval(intervalId.value);
authUtil.setToken(res)
router.push({ path: '/' })
const res = await LoginApi.qrLoginCode({ code: uuuid.value })
if (res) {
clearInterval(intervalId.value)
authUtil.setToken(res)
router.push({ path: '/' })
}
} catch (error) {
console.error('获取扫码状态失败:', error);
console.error('获取扫码状态失败:', error)
}
}, 5000);
}, 5000)
}
onMounted(() => {
// getCookie()
getimg()
})
onUnmounted(() => {
//
clearInterval(intervalId.value)
})
</script>
<style lang="scss" scoped>
.expired-text{
color: #ff0000;
margin-top: 40px;
margin-right: 10px;
}
.bottomImg{
width:320px;
}
.topImg{
height: 200px;
}
</style>
.expired-text {
color: #ff0000;
margin-top: 40px;
margin-right: 10px;
}
.bottomImg {
width: 320px;
}
.topImg {
height: 200px;
}
</style>

Loading…
Cancel
Save