36 lines
578 B
Vue
36 lines
578 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
// 更新
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.vue-treeselect__placeholder{
|
|
color: #dcdfe6 !important;
|
|
font-size: 14px !important;
|
|
}
|
|
.vue-treeselect__single-value{
|
|
color: #606266 !important;
|
|
font-size: 14px !important;
|
|
}
|
|
.vue-treeselect__label{
|
|
color: #606266 !important;
|
|
font-size: 14px !important;
|
|
font-weight: 500;
|
|
}
|
|
body{
|
|
font-family: '微软雅黑', "宋体", "Arial Narrow", Helvetica, sans-serif;
|
|
}
|
|
.el-dialog__body{
|
|
padding-top: 15px !important;
|
|
}
|
|
</style>
|