12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <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: 96%;
- 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>
|