123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- name: 'app',
- components: {
-
- },
- methods:{
- },
- }
- </script>
- <style>
- .cube-picker-wheel-item{
- font-size: 12px!important;
- }
- *{
- font-family: "微软雅黑"
- }
- .noDataFont{
- height: .5rem;
- line-height: .5rem;
- color: #666666;
- text-align: center
- }
- </style>
|