update: 优化移动端查看审核状态按钮和面板最小高度;LOGO添加点击跳首页。
This commit is contained in:
parent
8ff9aa5f4a
commit
1ea0d351c2
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="logo">
|
<div class="logo" @click="toRouter('/index')">
|
||||||
<img src="@/assets/image/logo.png" />
|
<img src="@/assets/image/logo.png" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ const mobile = ref(userStore.mobilePhone);
|
|||||||
|
|
||||||
watch(userStore, (newVal)=>{
|
watch(userStore, (newVal)=>{
|
||||||
token.value = newVal.token
|
token.value = newVal.token
|
||||||
mobile.value = newVal.mobilePhone.replace(/(^\d{3})(\d+)(\d{4})/g, "$1****$2")
|
mobile.value = newVal.mobilePhone.replace(/(^\d{3})(\d+)(\d{4})/g, "$1****$3")
|
||||||
isLoggedIn.value = !!token.value;
|
isLoggedIn.value = !!token.value;
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -250,6 +250,7 @@ onUnmounted(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
cursor: pointer;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
img {
|
img {
|
||||||
height: 40px;
|
height: 40px;
|
||||||
@ -311,7 +312,7 @@ onUnmounted(() => {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.start {
|
.avatar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -837,7 +837,7 @@ onMounted(() => {
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
&.nodata {
|
&.nodata {
|
||||||
min-height: 300px;
|
min-height: calc(100vh - 220px);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -850,7 +850,7 @@ onMounted(() => {
|
|||||||
|
|
||||||
.form-submit {
|
.form-submit {
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
min-height: 300px;
|
min-height: calc(100vh - 220px);
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user