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.
68 lines
1.0 KiB
68 lines
1.0 KiB
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.avue-form__menu--left{
|
|
padding: 0 10px !important;
|
|
}
|
|
// .avue-group{margin: 0 5px;}
|
|
.el-upload--picture-card{
|
|
--el-upload-picture-card-size:88px;
|
|
}
|
|
.el-upload-list--picture-card{
|
|
--el-upload-list-picture-card-size:88px;
|
|
}
|
|
.avue-crud__search .el-form-item{
|
|
margin-bottom: 0 !important;
|
|
}
|
|
// .avue-dialog{
|
|
// max-height: calc(100% - 8vh);
|
|
// margin: 4vh auto;
|
|
// }
|
|
.avue-dialog .el-dialog__body{
|
|
padding: 20px 20px 40px;
|
|
}
|
|
/*** 服务进程 ***/
|
|
.serviceProcess{
|
|
display: flex;
|
|
padding: 20px 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
flex-wrap: wrap;
|
|
li{
|
|
text-align: center;
|
|
width: 100px;
|
|
.pic{
|
|
width: 50px;
|
|
height: 50px;
|
|
background: url() no-repeat center;
|
|
background-size: contain;
|
|
display: inline-block;
|
|
}
|
|
.txt{
|
|
font-size: 14px;
|
|
}
|
|
.time{
|
|
font-size: 12px;
|
|
}
|
|
&.arrow{
|
|
width: 22px;
|
|
.pic{
|
|
width: 22px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|