|
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
-
- <script>
- export default {
- name: 'App',
- data() {
- return {}
- },
- computed: {},
- watch: {},
- created() {
- },
- methods: {}
- }
- </script>
- <style lang="scss">
- #app {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .el-tooltip__popper {
- max-width: 300px;
- }
- .nulllist{
- width: 100%;
- height: 350px;
- display: flex;
- justify-content: center;
- align-items: center;
- .imgboxc{
- width: 100%;
- text-align: center;
- .imgboxc-img{
- width: 118px;
- height: 118px;
- }
- .nulltext{
- width: 100%;
- text-align: center;
- color: #999999;
- font-size: 14px;
- }
- }
- }
- </style>
|