123
parent
e9baf27589
commit
322a0f8de3
|
@ -29,7 +29,8 @@
|
||||||
"pinia": "2.0.22",
|
"pinia": "2.0.22",
|
||||||
"vue": "3.2.45",
|
"vue": "3.2.45",
|
||||||
"vue-cropper": "1.0.3",
|
"vue-cropper": "1.0.3",
|
||||||
"vue-router": "4.1.4"
|
"vue-router": "4.1.4",
|
||||||
|
"dayjs": "^1.11.10"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vitejs/plugin-vue": "3.1.0",
|
"@vitejs/plugin-vue": "3.1.0",
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="navbar">
|
<div class="navbar">
|
||||||
<!-- <top-nav id="topmenu-container" class="topmenu-container" v-if="settingsStore.topNav" /> -->
|
<!-- <top-nav id="topmenu-container" class="topmenu-container" v-if="settingsStore.topNav" /> -->
|
||||||
<div class="flex">
|
<div class="left">
|
||||||
<img src="@/assets/logo/logo.png" alt="dark" />
|
<img src="@/assets/logo/logo.png" alt="dark" />
|
||||||
<span>
|
<span>
|
||||||
若依管理系统
|
若依管理系统
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="middle">
|
||||||
|
BIM运维管理系统
|
||||||
|
</div>
|
||||||
<div class="right-menu">
|
<div class="right-menu">
|
||||||
<template v-if="appStore.device !== 'mobile'">
|
<template v-if="appStore.device !== 'mobile'">
|
||||||
|
<p class="mr10">
|
||||||
|
{{ currentTime }}
|
||||||
|
</p>
|
||||||
<header-search id="header-search" class="right-menu-item" />
|
<header-search id="header-search" class="right-menu-item" />
|
||||||
|
|
||||||
<el-tooltip content="源码地址" effect="dark" placement="bottom">
|
<el-tooltip content="源码地址" effect="dark" placement="bottom">
|
||||||
|
@ -63,11 +69,18 @@ import RuoYiDoc from '@/components/RuoYi/Doc'
|
||||||
import useAppStore from '@/store/modules/app'
|
import useAppStore from '@/store/modules/app'
|
||||||
import useUserStore from '@/store/modules/user'
|
import useUserStore from '@/store/modules/user'
|
||||||
import useSettingsStore from '@/store/modules/settings'
|
import useSettingsStore from '@/store/modules/settings'
|
||||||
|
import dayjs from "dayjs";
|
||||||
|
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
const userStore = useUserStore()
|
const userStore = useUserStore()
|
||||||
const settingsStore = useSettingsStore()
|
const settingsStore = useSettingsStore()
|
||||||
|
|
||||||
|
const currentTime = ref("");
|
||||||
|
const interval = ref("");
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
interval = setInterval(updateTime, 1000);
|
||||||
|
});
|
||||||
function toggleSideBar() {
|
function toggleSideBar() {
|
||||||
appStore.toggleSideBar()
|
appStore.toggleSideBar()
|
||||||
}
|
}
|
||||||
|
@ -96,7 +109,9 @@ function logout() {
|
||||||
})
|
})
|
||||||
}).catch(() => { });
|
}).catch(() => { });
|
||||||
}
|
}
|
||||||
|
const updateTime = () => {
|
||||||
|
currentTime = dayjs().format("YYYY年 MM月 DD日");
|
||||||
|
};
|
||||||
const emits = defineEmits(['setLayout'])
|
const emits = defineEmits(['setLayout'])
|
||||||
function setLayout() {
|
function setLayout() {
|
||||||
emits('setLayout');
|
emits('setLayout');
|
||||||
|
@ -110,10 +125,28 @@ function setLayout() {
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
|
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
|
||||||
.flex {
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
.left {
|
||||||
|
width: 33%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
border: 1px solid red;
|
||||||
|
}
|
||||||
|
.middle {
|
||||||
|
width: 33%;
|
||||||
|
border: 1px solid red;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.right-menu {
|
||||||
|
width: 33%;
|
||||||
|
border: 1px solid red;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: end;
|
||||||
}
|
}
|
||||||
.hamburger-container {
|
.hamburger-container {
|
||||||
line-height: 46px;
|
line-height: 46px;
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
import 'dayjs/locale/zh-cn' // 导入中文语言包
|
||||||
|
import weekOfYear from 'dayjs/plugin/weekOfYear'
|
||||||
|
import weekday from 'dayjs/plugin/weekday'
|
||||||
|
|
||||||
|
dayjs.extend(weekOfYear)
|
||||||
|
dayjs.extend(weekday)
|
||||||
|
dayjs.locale('zh-cn') // 设置语言为中文
|
Loading…
Reference in New Issue