天波h5前端应用
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

149 líneas
4.7KB

  1. <template>
  2. <div class="drown-white-list">
  3. <van-nav-bar title="免告警水域" :border="true" left-arrow @click-left="onNavBack"/>
  4. <div class="main">
  5. <div class="list" v-if="drownList.length > 0">
  6. <div class="item" v-for="(item, index) in drownList" :key="index">
  7. <p><span>poiId:{{ item.poiId }}</span></p>
  8. <p><span>水域类型:{{ item.title }}</span></p>
  9. <p><span>水域名称:{{ item.address }}</span></p>
  10. <p><span>设置时间:{{ item.createTime }}</span></p>
  11. <!-- <div class="btn-con">
  12. <div class="btn" @click="onDelete(item.imei, item.poiId)">
  13. <p>删除</p>
  14. </div>
  15. </div> -->
  16. </div>
  17. </div>
  18. <div class="noData" v-else>
  19. <p>暂无数据~</p>
  20. </div>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import { isNotNull} from "@/utils/index";
  26. import APICore from "@/api/core";
  27. export default {
  28. name:'',
  29. data(){
  30. return {
  31. drownList: [],
  32. }
  33. },
  34. computed: {
  35. imei() {
  36. return this.$store.getters.imei;
  37. },
  38. },
  39. mounted() {
  40. this.getDrownReportFilterQuery();
  41. },
  42. methods: {
  43. onNavBack(){
  44. this.$router.push({
  45. name: 'deviceSetting'
  46. })
  47. },
  48. // 获取免告警水域
  49. getDrownReportFilterQuery() {
  50. this.$toast.loading({ message: '数据加载中' });
  51. APICore.getDrownReportFilterQuery({imei: this.imei}).then(res => {
  52. let data = res.data.data;
  53. console.log(data);
  54. if(data) {
  55. if(isNotNull(data)) {
  56. this.drownList = data;
  57. this.$toast.success({ message: '数据加载完成' });
  58. }
  59. }
  60. })
  61. },
  62. }
  63. }
  64. </script>
  65. <style scoped lang="scss">
  66. .drown-white-list {
  67. position: relative;
  68. height: 100vh;
  69. width: 100%;
  70. overflow: hidden;
  71. .main {
  72. /* height: calc(100vh - 88px);
  73. overflow: auto; */
  74. overflow: auto;
  75. .list {
  76. @media screen and (max-width: 1920px) and (min-width: 750px){
  77. padding: 2vh;
  78. height: 70vh;
  79. display: flex;
  80. justify-content: flex-start;
  81. align-content: center;
  82. align-items: center;
  83. flex-wrap: wrap;
  84. }
  85. @media screen and (max-width: 750px) and (min-width: 200px){
  86. display: flex;
  87. justify-content: flex-start;
  88. align-content: center;
  89. align-items: center;
  90. flex-direction: column;
  91. height: calc(100vh - 88px);
  92. }
  93. .item {
  94. @media screen and (max-width: 1920px) and (min-width: 750px){
  95. width: 25%;
  96. }
  97. @media screen and (max-width: 750px) and (min-width: 200px){
  98. width: 300px;
  99. font-size: 16px;
  100. }
  101. margin: 2vh;
  102. padding: 1vh;
  103. /* font-size: 16px; */
  104. border: 1px solid $border_color;
  105. border-radius: 8px;
  106. p {
  107. padding: 4px 0;
  108. }
  109. .btn-con {
  110. display: flex;
  111. justify-content: flex-end;
  112. align-items: center;
  113. .btn {
  114. height: 30px;
  115. width: 110px;
  116. @include center();
  117. border-radius: 15px;
  118. margin-top: 10px;
  119. background-color: red;
  120. color: #fff;
  121. }
  122. }
  123. }
  124. }
  125. .noData {
  126. @media screen and (max-width: 1920px) and (min-width: 750px){
  127. height: 100px;
  128. width: 100%;
  129. }
  130. @media screen and (max-width: 750px) and (min-width: 200px){
  131. height: 225px;
  132. width: 100%;
  133. }
  134. @include center();
  135. margin: 100px auto 0;
  136. background-size: 165px 120px;
  137. p {
  138. @include colorAndFont(#999, 28);
  139. margin: 100px auto 0;
  140. }
  141. }
  142. }
  143. }
  144. </style>