index.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <template>
  2. <div class="datavScr box">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  5. >
  6. <div class="dataBox">
  7. <div class="top">
  8. <div style="width: 35%">
  9. <topLeft></topLeft>
  10. </div>
  11. <div style="width: 20%">
  12. <topCenter></topCenter>
  13. </div>
  14. <div
  15. style="width: 35%; "
  16. >
  17. <div style="width: 100%">
  18. <topRight1></topRight1>
  19. </div>
  20. <div style="width: 100%">
  21. <topRight2></topRight2>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="center">
  26. <div style="width: 30%">
  27. <centerLeft></centerLeft>
  28. </div>
  29. <div style="width: 30%">
  30. <centerCon></centerCon>
  31. </div>
  32. <div style="width: 30%">
  33. <centerRight></centerRight>
  34. </div>
  35. </div>
  36. <div class="bottom">
  37. <div style="width: 35%">
  38. <bottomLeft></bottomLeft>
  39. </div>
  40. <div style="width: 20%">
  41. <bottomCenter></bottomCenter>
  42. </div>
  43. <div style="width: 35%">
  44. <bottomRight></bottomRight>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <div v-else>
  50. <no-auth></no-auth>
  51. </div>
  52. </div>
  53. </template>
  54. <script>
  55. // import drawMixin from "../drawMixin";
  56. import { mapGetters } from "vuex";
  57. import resToken from "@/mixins/resToken";
  58. import topLeft from "./components/topLeft";
  59. import topCenter from "./components/topCenter";
  60. import topRight1 from "./components/topRight1";
  61. import topRight2 from "./components/topRight2";
  62. import centerLeft from "./components/centerLeft";
  63. import centerCon from "./components/centerCon";
  64. import centerRight from "./components/centerRight";
  65. import bottomLeft from "./components/bottomLeft";
  66. import bottomCenter from "./components/bottomCenter";
  67. import bottomRight from "./components/bottomRight";
  68. export default {
  69. mixins: [resToken],
  70. computed: {
  71. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  72. powers() {
  73. let tran =
  74. this.$store.getters.btnList.find(
  75. (item) => item.menu_route == "bigScreenNew"
  76. ) || {};
  77. if (tran && tran.action && tran.action.length > 0) {
  78. return tran.action;
  79. } else {
  80. return [];
  81. }
  82. },
  83. },
  84. data() {
  85. return {
  86. loading: true,
  87. };
  88. },
  89. components: {
  90. topLeft,
  91. topCenter,
  92. topRight1,
  93. topRight2,
  94. centerLeft,
  95. centerCon,
  96. centerRight,
  97. bottomLeft,
  98. bottomCenter,
  99. bottomRight
  100. },
  101. mounted() {},
  102. beforeDestroy() {},
  103. methods: {},
  104. };
  105. </script>
  106. <style lang="scss" scoped>
  107. .datavScr.box {
  108. width: 100%;
  109. // height: 100vh;
  110. // background: #000;
  111. // background: url("./img/pageBg.png");
  112. background: url("./img/1.jpeg");
  113. background-size: 100% 100%;
  114. margin: 0;
  115. padding: 20px 20px 70px;
  116. // color: #fff;
  117. }
  118. .dataBox {
  119. width: 100%;
  120. height: 100%;
  121. min-width: 1300px;
  122. }
  123. .top {
  124. width: 100%;
  125. display: flex;
  126. justify-content: space-between;
  127. }
  128. .center{
  129. width: 100%;
  130. display: flex;
  131. justify-content: space-between;
  132. margin-top: 30px;
  133. }
  134. .bottom{
  135. width: 100%;
  136. display: flex;
  137. justify-content: space-between;
  138. // margin-top: 30px;
  139. max-height: 400px;
  140. }
  141. </style>