Commit 2c5b995c authored by “yiyousong”'s avatar “yiyousong”

fix:修复样式冲突

parent 0dd8ea2e
......@@ -34,7 +34,7 @@
>
<!-- 动态组件渲染各自报表搜索 -->
<component
v-if="censusList.length"
v-if="censusList.length && curSearchForm"
:is="curSearchForm + '-search'"
></component>
<div v-else class="flex-1 flex items-center justify-center">
......@@ -113,7 +113,11 @@ export default {
let { path } = this.$route;
let index = path.lastIndexOf("/");
let str = path.slice(index + 1);
if (str == "dataManagement") {
return false;
} else {
return str;
}
},
},
created() {
......
......@@ -45,7 +45,7 @@
<p class="text-[14px]">返回门户</p>
</div>
<div v-if="isHomePage" class="show-time flex flex-col items-end">
<div class="time mb-1">{{ nowTime }}</div>
<div class="time mb-[4px]">{{ nowTime }}</div>
<div class="date">{{ nowDay }} {{ nowWeek }}</div>
</div>
<div class="line"></div>
......@@ -53,14 +53,14 @@
<a-dropdown>
<div class="flex items-center">
<div class="userInfo flex flex-col items-center cursor-pointer">
<span class="mb-1">
<span class="mb-[4px]">
{{ userData.loginName ? userData.loginName : "--" }}
</span>
<span>
{{ userData.realName ? userData.realName : "--" }}
</span>
</div>
<a-icon class="ml-1" type="down" />
<a-icon class="ml-[4px]" type="down" />
</div>
<a-menu slot="overlay">
<a-menu-item>
......
......@@ -51,11 +51,7 @@
</div>
</a-form-model-item>
<a-form-model-item>
<a-button
:loading="loading"
type="primary"
class="login-btn"
@click="handleSubmit"
<a-button :loading="loading" class="login-btn" @click="handleSubmit"
>登录</a-button
>
</a-form-model-item>
......
......@@ -26,7 +26,7 @@ html{
position: sticky;
top: 0;
/* height: 100vh; */
min-height: 932rem;
min-height: 930rem;
background-color: #031233;
perspective: 800px;
overflow: hidden;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment