123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <div id="app">
- <!-- 路由占位符 -->
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- name: 'app'
- }
- // 控制是否屏蔽全局console.log 日志;isDebug设为false即可屏蔽
- const isDebug = false;
- console.log = (function (oldLogFunc) {
- return function () {
- if (isDebug) {
- oldLogFunc.apply(this, arguments);
- }
- }
- })(console.log);
-
- </script>
- <style>
- #app {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin-top: 60px;
- }
-
- /* 表格样式 */
- .el-table{font-size: 12px;color:#333;}
- .el-table--border:after, .el-table--group:after, .el-table:before { background-color: #d1d9e9!important; }
- .el-table--border, .el-table--group { border-color: #d1d9e9!important; }
- .el-table--border th, .el-table--border th.gutter:last-of-type { border-bottom: 1px solid #d1d9e9!important; }
- .el-table--border td, .el-table--border th { border-right: 1px solid #d1d9e9!important; }
- .el-table td, .el-table th.is-leaf { border-bottom: 1px solid #d1d9e9!important; }
- .el-table td,.building-top .el-table th.is-leaf { border-bottom: 1px solid #d1d9e9!important; }
- .fixed-width{border-bottom: #d1d9e9!important ;}
- .el-table__fixed-right{height: 100%!important;border-bottom: 1px solid #d1d9e9!important;}
- .el-table__fixed{height: 100%!important;border-bottom: 1px solid #d1d9e9!important;}
- .el-table__footer{border-top: 1px solid #d1d9e9!important;}
- .has-gutter tr th{background-color: #e9eef9!important;color:#333; }
- .el-table tr th.is-leaf{background-color: #e9eef9!important;color:#333}
- .el-table__fixed-right-patch{background-color: #e9eef9!important;color:#333}
- .el-table .cell{line-height: 18px!important;}
- .box-card{padding:10px 20px}
- .g-txt-l{text-align: left ;}
- /* 搜索表单 */
- .search-bx1{ padding-top: 10px; clear: both;text-align: left;}
- .g-mr20{ margin-right:20px; }
- .g-mb20{ margin-bottom:20px; }
-
- /* 牛只信息卡片 */
- .cust-card-row{padding-bottom: 20px;}
- .cust-card-tt{text-align: right;float:right;font-weight: bold}
-
- .cust-line-bx{position:relative}
- .cust-ex-item{display:inline-block;width:33%;margin-bottom:10px;}
- .cust-ex-tt{width:200px;text-align:right;font-weight: bold}
- .cust-ex-ct{margin-bottom:10px;text-align:left!important;}
- .cust-rest{display: inline-block;width:33%;color:#FF4949}
- /* 按钮 搜索 大 */
- /* .btn-search{ background: #d1d9e9; border-color: $color8; color: $color3;padding: 7px 10px !important;font-size:14px;min-width:60px;}
- .miniPrimary:focus{background: $color8; border-color: $color8; color: $color3;padding: 7px 10px !important;font-size:14px;min-width:60px;}
- .miniPrimary:hover{color: $color3; border-color: $color9; background-color: $color9;padding: 7px 10px !important;font-size:14px;min-width:60px;} */
-
- </style>
|