123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'app',
- components: {
- },
- created() {
- },
- mounted(){
-
- },
- methods: {
- }
- }
- </script>
- <style lang="less">
- textarea {
- font-family: 微软雅黑;
- }
- html, body, #app {
- width: 100%;
- min-width: 1350px;
- height: 100%;
- padding: 0;
- margin: 0;
- background: #f4f4f4;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
- overflow: hidden;
- }
- .height_100{
- height:100% !important;
- }
- .margin-left_0 {
- margin-left: 0 !important;
- }
- .margin-top_10 {
- margin-top: 10px !important;
- }
- .margin-left_10 {
- margin-left: 10px !important;
- }
- .padding-left_10 {
- padding-left: 10px;
- }
- .padding-right_10 {
- padding-right: 10px;
- }
- .margin-left_20 {
- margin-left: 20px;
- }
- .container-white-no-padding {
- background: #fff !important;
- padding: 0 !important;
- }
- .container-common-main {
- background: #fff;
- padding: 5px 20px !important;
- margin-top: 20px !important;
- }
- .footer-common {
- height: 70px !important;
- text-align: right;
- }
- .margin-right_20 {
- margin-right: 20px !important;
- }
- .width_100 {
- width: 100% !important;
- }
- .margin-bottom_10 {
- margin-bottom: 10px;
- }
- .float_right {
- float: right
- }
- .float_left {
- float: left;
- }
- .color-red {
- color: red !important;
- }
- .color-black {
- color: black;
- }
- .padding_0_5 {
- padding: 0 5px;
- }
- .color-primary {
- color: #409eff;
- }
- .margin-right_10 {
- margin-right: 10px !important;
- }
- .text-align_center {
- text-align: center !important;
- }
- .position_relative {
- position: relative;
- }
- .no-body-padding-dialog {
- .el-dialog__body {
- padding: 0 !important;
- }
- }
- .custom-table-header > th {
- word-break: break-word;
- background-color: #f8f8f9 !important;
- color: #515a6e;
- height: 40px;
- font-size: 13px;
- }
- .el-header {
- padding: 13px 0 !important;
- .el-form {
- .el-form-item {
- margin-bottom: 0 !important
- }
- }
- }
- .custom-drawer-form {
- .el-drawer__header {
- padding: 0 20px !important;
- margin: 15px 0 !important;
- span {
- font-size: 18px;
- color: #303133;
- }
- }
- .el-drawer__body {
- border-top: 1px solid #e6e6e6;
- }
- }
- .upload-file {
- width: 100% !important;
- .el-upload, .el-upload-dragger {
- width: 100% !important;
- }
- .el-upload-dragger .el-icon-refresh {
- font-size: 67px;
- color: #C0C4CC;
- margin: 40px 0 16px;
- line-height: 50px;
- }
- }
- .scrollable {-webkit-overflow-scrolling: touch;}
- ::-webkit-scrollbar {width: 8px;height: 8px;}
- ::-webkit-scrollbar-thumb {background-color: rgba(50, 50, 50, 0.3);border-radius: 20px;}
- ::-webkit-scrollbar-thumb:hover {background-color: rgba(50, 50, 50, 0.6);}
- ::-webkit-scrollbar-track {background-color: rgba(50, 50, 50, 0.1);}
- ::-webkit-scrollbar-track:hover {background-color: rgba(50, 50, 50, 0.2);}
- .el-aside {border-right: 1px solid #e6e6e6;background: #fff;}
- .el-header {background: #fff;border-bottom: 1px solid #e6e6e6;padding:13px 15px;display: flex;justify-content: space-between;align-items: center;}
- .el-header .left-panel {display: flex;align-items: center;}
- .el-header .right-panel {display: flex;align-items: center;}
- .el-header .right-panel > * + * {margin-left:10px;}
- .el-footer {background: #fff;border-top: 1px solid #e6e6e6;padding:13px 15px !important;}
- .el-main {padding:15px;}
- .el-main.nopadding {padding:0;background: #fff;}
- .el-main {flex-basis: 0}
- .el-container {height: 100%;}
- </style>
|