You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<router-view />
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import useSettingsStore from '@/store/modules/settings'
|
|
|
|
import { handleThemeStyle } from '@/utils/theme'
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
nextTick(() => {
|
|
|
|
// 初始化主题样式
|
|
|
|
handleThemeStyle(useSettingsStore().theme)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.title{
|
|
|
|
text-align: left;
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-bottom: 1px solid #FFFFFF;
|
|
|
|
}
|
|
|
|
.title:before{
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
width: 4px;
|
|
|
|
height: 12px;
|
|
|
|
background: #286AED;
|
|
|
|
margin: 0 9px;
|
|
|
|
}
|
|
|
|
.fliter-box .el-date-editor.el-input, .fliter-box .el-date-editor.el-input__wrapper{ width: 192px;}
|
|
|
|
</style>
|