ProblemArea.vue 817 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* 问题区 */
  2. <template>
  3. <div class="problem" >
  4. <AreaCard title="问题区" height="86"></AreaCard>
  5. </div>
  6. </template>
  7. <script>
  8. import AreaCard from "./areaCard.vue";
  9. import BackgroundData from 'utils/BackgroundData'
  10. export default {
  11. name: "ProblemArea",
  12. components: {
  13. AreaCard,
  14. },
  15. props: {},
  16. data() {
  17. return {
  18. ls: {
  19. maintain: { key: "维护", value: [] },
  20. malfunction: { key: "故障", value: [] },
  21. offline: { key: "离线", value: [] },
  22. lockd: { key: "挂牌", value: [] },
  23. },
  24. };
  25. },
  26. computed: {},
  27. created: function () {
  28. },
  29. methods: {
  30. },
  31. };
  32. </script>
  33. <style scoped>
  34. .problem {
  35. height: 97%;
  36. background-color: #000000;
  37. }
  38. </style>