华西海圻ELN前端工程
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.
 
 
 
 

37 lines
611 B

<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker"
export default {
name: "App",
components: { ThemePicker }
}
</script>
<style rel="stylesheet/scss" lang="scss">
#app .theme-picker {
display: none;
}
/*搜索区域样式 */
.search-area {
input{
width: 150px;
}
}
/*详情 */
.detail-container{
.header{
height: 40px;
line-height: 40px;
display: flex;
justify-items:flex-end;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
}
}
</style>