1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "app",
- data() {
- return {};
- },
- watch: {},
- created() {},
- methods: {},
- computed: {},
- };
- </script>
- <style lang="scss">
- #app {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .avue--detail .el-col {
- margin-bottom: 0;
- }
- .boxswai {
- box-sizing: border-box;
- padding: 0px 14px 10px 14px;
- width: 100%;
- height: 100%;
- color: #303133;
- .boxnei {
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- background-color: #fff;
- padding: 14px;
- border: 1px solid #ebeef5;
- border-radius: 4px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
- overflow: auto;
- }
- }
- </style>
|