| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div class="common-warp">
- <div class="left">
- <div class="c-w">
- <Jxdxqk></Jxdxqk>
- </div>
- </div>
- <div class="right">
- <div class="r-c-w">
- <Zydbsx :data="rightData"></Zydbsx>
- </div>
- </div>
- </div>
- </template>
- <script>
- import Jxdxqk from "@/views/dashboard-screen/jxdxqk/index.vue";
- import Zydbsx from "@/views/dashboard-screen/zydbsx/index.vue";
- export default {
- name: 'ScreenJxdxqk',
- data() {
- return {
- rightData: [
- {value: 4, name: '本月已完成站数'},
- {value: 3, name: '本月未完成站数'},
- {
- value: '', name: '未完成站名', children: [
- {name: '长春西牵引变电所'},
- {name: '英安河AT所'},
- {name: '珲春分区所'},
- ]
- },
- {value: 0, name: '下月计划完成站数'},
- {value: 0, name: '年度剩余站数'}
- ]
- }
- },
- components: {Zydbsx, 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;
- }
- }
- .right {
- .r-c-w {
- width: 30vw;
- height: 50vh;
- ::v-deep * {
- font-size: 1.6vw !important;
- }
- }
- }
- }
- </style>
|