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