智慧工地前端
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.
smart-factory/src/App.vue

34 lines
702 B

2 weeks ago
<template>
<router-view />
2 weeks ago
</template>
<script setup>
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
2 weeks ago
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>