committed by
Gitee
22 changed files with 332 additions and 226 deletions
@ -1,33 +1,89 @@ |
|||||
<template> |
<template> |
||||
<div id="app"> |
<div id="app"> |
||||
<router-view></router-view> |
<router-view></router-view> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|
||||
<script> |
<script> |
||||
|
export default { |
||||
|
name: 'App', |
||||
|
components: {} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
@import './assets/style/global.css'; |
||||
|
|
||||
export default { |
#app { |
||||
name: 'App', |
font-family: 'Avenir', Helvetica, Arial, sans-serif; |
||||
components: { |
-webkit-font-smoothing: antialiased; |
||||
} |
-moz-osx-font-smoothing: grayscale; |
||||
|
color: #2c3e50; |
||||
|
position: absolute; |
||||
|
height: 100%; |
||||
|
width: 100%; |
||||
} |
} |
||||
</script> |
|
||||
|
|
||||
<style> |
.el-message { |
||||
@import './assets/style/global.css'; |
z-index: 99999999 !important; |
||||
|
} |
||||
#app { |
|
||||
font-family: 'Avenir', Helvetica, Arial, sans-serif; |
.el-scrollbar__thumb { |
||||
-webkit-font-smoothing: antialiased; |
background-color: #A0A8AF !important; |
||||
-moz-osx-font-smoothing: grayscale; |
} |
||||
color: #2c3e50; |
|
||||
position: absolute; |
.el-dialog { |
||||
height: 100%; |
border-radius: 8px !important; |
||||
width: 100%; |
overflow: hidden !important; |
||||
|
} |
||||
|
|
||||
|
.el-dialog__header { |
||||
|
background-color: #5870e6 !important; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
.el-dialog__title { |
||||
|
color: #f8f8f8 !important; |
||||
|
} |
||||
|
|
||||
|
.el-dialog__close { |
||||
|
color: white !important; |
||||
|
font-size: 20px; |
||||
|
} |
||||
|
|
||||
|
.el-checkbox__inner { |
||||
|
border-radius: 50% !important; |
||||
|
} |
||||
|
|
||||
|
.el-input__inner { |
||||
|
border-radius: 5px !important; |
||||
|
border: #587FF0 1px solid !important; |
||||
|
} |
||||
|
|
||||
|
.el-textarea__inner{ |
||||
|
border-radius: 5px !important; |
||||
|
border: #587FF0 1px solid !important; |
||||
|
} |
||||
|
|
||||
|
.el-icon-search { |
||||
|
color:#587FF0 !important; |
||||
|
} |
||||
|
|
||||
|
.el-button--primary { |
||||
|
background-color: #687Ff0 !important; |
||||
|
border-color: #687Ff0 !important; |
||||
|
} |
||||
|
|
||||
|
.el-button--success { |
||||
|
background-color: #4cae1b !important; |
||||
|
border-color: #4cae1b !important; |
||||
|
} |
||||
|
.el-button--danger { |
||||
|
background-color: #ea4949 !important; |
||||
|
border-color: #ea4949 !important; |
||||
} |
} |
||||
|
|
||||
.el-message { |
.el-button { |
||||
z-index: 99999999 !important; |
padding: 8px 15px !important; |
||||
} |
} |
||||
</style> |
</style> |
||||
Binary file not shown.
Loading…
Reference in new issue