index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <oa-scroll
  3. class="scroll-height"
  4. :refresherLoad="false"
  5. :refresherEnabled="true"
  6. :refresherDefaultStyle="'none'"
  7. :refresherThreshold="44"
  8. :refresherBackground="'#f5f6f7'"
  9. @refresh="refresh"
  10. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  11. >
  12. <template #default>
  13. <view class="flex padding-tb-sm bg-white">
  14. <view class="padding-lr-sm text-center" style="width: 50%">设施类型:{{ typeNum || 0 }}</view>
  15. <view class="divider-default"></view>
  16. <view class="padding-lr-sm text-center" style="width: 50%">设施总数:{{ facilityNum || 0 }}</view>
  17. </view>
  18. <view class="flex bg-white margin-lr-sm margin-top-sm padding-sm shadow-default radius" v-for="(data, index) in dataList" :key="index">
  19. <view class="margin-right-sm" style="margin-top: auto; margin-bottom: auto" @click="handleToDevice(data.id, data.typeName)">
  20. <image style="width: 40px; height: 40px" :src="data.typeImg ? data.typeImg : '/static/images/404.png'" mode="aspectFill"></image>
  21. </view>
  22. <view style="width: 100%" @click="handleToDevice(data.id, data.typeName)">
  23. <view class="flex margin-bottom-xl">
  24. <view class="text-dfl text-bold">{{ data.typeName }}</view>
  25. <view style="font-size: 14px; margin-top: auto; margin-right: auto">({{ data.typeFacilityNum || 0 }})</view>
  26. </view>
  27. <view>
  28. <view class="flex">
  29. <view style="font-size: 14px; width: 33.33%">正常:{{ data.normalFacilityNum || 0 }}</view>
  30. <view style="font-size: 14px; width: 33.33%">维修:{{ data.upkeepFacilityNum || 0 }}</view>
  31. <view style="font-size: 14px; width: 33.33%">关闭:{{ data.closeFacilityNum || 0 }}</view>
  32. </view>
  33. </view>
  34. </view>
  35. <view style="margin-top: auto; margin-bottom: auto" @click="handleToMap(data.id)">
  36. <view class="iconfont ucicon-app-map icon" :style="{ color: proxy.$settingStore.themeColor.color, fontSize: '22px' }"></view>
  37. </view>
  38. </view>
  39. </template>
  40. </oa-scroll>
  41. </template>
  42. <script setup>
  43. import { onLoad, onShow, onHide, onLaunch } from "@dcloudio/uni-app";
  44. import { ref, reactive, computed, onMounted, getCurrentInstance, toRefs, inject } from "vue";
  45. import { xunJianStores, publicStores } from "@/store/modules/index";
  46. import { baseFacilityType } from "@/api/business/fireIot/facilitiesView/index";
  47. const publicStore = publicStores(); //全局公共Store
  48. const xunJianStore = xunJianStores(); //全局变量值Store
  49. const { proxy } = getCurrentInstance();
  50. const typeNum = ref(0);
  51. const facilityNum = ref(0);
  52. const dataList = ref([]);
  53. /**
  54. * @页面初始化
  55. */
  56. function init() {
  57. baseFacilityType().then((requset) => {
  58. if (requset.status === "SUCCESS") {
  59. if (requset.data.length > 0) {
  60. dataList.value = requset.data[0].baseGgpFacilityTypeNumVO;
  61. typeNum.value = requset.data[0].typeNum;
  62. facilityNum.value = requset.data[0].facilityNum;
  63. }
  64. }
  65. });
  66. }
  67. /**
  68. * @scrollView刷新数据
  69. */
  70. function refresh() {
  71. init();
  72. }
  73. /**
  74. * @设施详情列表跳转点击事件
  75. */
  76. function handleToDevice(id, typeName) {
  77. proxy.$tab.navigateTo(`/pages/business/fireIot/facilitiesView/facilitiesDetailsList?id=${id}&typeName=${typeName}`);
  78. }
  79. /**
  80. * @设施地图查看
  81. */
  82. function handleToMap(id) {
  83. proxy.$tab.navigateTo(`/pages/business/fireIot/facilitiesView/mapGatherView?facilitiesId=${id}`);
  84. }
  85. onLoad(() => {
  86. init();
  87. });
  88. onShow(() => {
  89. //调用系统主题颜色
  90. proxy.$settingStore.systemThemeColor([1]);
  91. });
  92. </script>
  93. <style lang="scss"></style>