12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- metaInfo() {
- return {
- title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
- titleTemplate: title => {
- return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
- }
- }
- }
- }
- </script>
- <style>
- .el-input__inner{
- height:28px !important;
- line-height: 28px !important;
- }
- .el-input-number--small{
- height:26px !important;
- line-height: 26px !important;
- }
- .el-textarea .el-input__count,.el-input .el-input__count .el-input__count-inner{
- font-size: 8px;
- height: 12px;
- line-height: 12px;
- background: transparent !important
- }
- .el-input-number--medium{
- width:auto;
- line-height:28px;
- }
- </style>
- <style lang="scss" scoped>
- ::v-deep {
- .el-table__body-wrapper::-webkit-scrollbar {
- /*width: 0;宽度为0隐藏*/
- width: 4px;
- }
- .el-table__body-wrapper::-webkit-scrollbar-thumb {
- border-radius: 6px;
- height: 50px;
- background: rgba(40, 190, 252, .6);//滚动条颜色
- }
- .el-table__body-wrapper::-webkit-scrollbar-track {
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 6px;
- background: #eee;//滚动条背景色
- }
- }
- </style>
|