| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="common-warp">
- <div class="left">
- <div class="c-w">
- <Jxdxqk></Jxdxqk>
- </div>
- </div>
- <div class="right">
- 123
- </div>
- </div>
- </template>
- <script>
- import Jxdxqk from "@/views/dashboard-screen/jxdxqk/index.vue";
- export default {
- name: 'ScreenJxdxqk',
- components: {Jxdxqk}
- }
- </script>
- <style scoped lang="scss">
- .common-warp {
- width: 100%;
- height: 100%;
- display: flex;
- .left, .right {
- flex: 1;
- flex-shrink: 0;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .left {
- .c-w {
- width: 30vw;
- height: 30vw;
- }
- }
- }
- </style>
|