index.vue 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <oa-scroll
  3. customClass="bg-white scroll-height"
  4. :pageSize="pageSize"
  5. :total="total"
  6. :isSticky="false"
  7. :refresherLoad="true"
  8. :refresherLoadTitle="false"
  9. :refresherEnabled="true"
  10. :refresherDefaultStyle="'none'"
  11. :refresherThreshold="44"
  12. :refresherBackground="'#f5f6f7'"
  13. @load="load"
  14. @refresh="refresh"
  15. :data-theme="'theme-' + proxy.$settingStore.themeColor.type"
  16. >
  17. <template #default>
  18. <view class="alarmManage" style="border-top:1px solid rgba(0,0,0,.1)">
  19. <u-grid :border="true">
  20. <u-grid-item v-for="(base, index) in dataList" :key="index" @click="handleToDetails(base.productCode, base.productName)">
  21. <u-badge type="primary" max="9999" :value="base.total" :showZero="true" :absolute="true" :offset="[10, 10, 0, 0]"></u-badge>
  22. <image class="mb15 mt35" style="width: 40px; height: 40px" :src="base.typeImg" mode="aspectFill"></image>
  23. <text class="mb15 grid-text text-ellipsis">{{ base.productName }}</text>
  24. </u-grid-item>
  25. </u-grid>
  26. </view>
  27. </template>
  28. </oa-scroll>
  29. </template>
  30. <script setup>
  31. import { onReady, onLoad, onShow, onNavigationBarButtonTap, onPullDownRefresh, onReachBottom } from "@dcloudio/uni-app";
  32. import { ref, onMounted, inject, shallowRef, reactive, getCurrentInstance } from "vue";
  33. import { useStores, commonStores } from "@/store/modules/index";
  34. import { dmpProductInfo, baseAlarmTypeList } from "@/api/business/fireIot/alarmManage.js";
  35. const { proxy } = getCurrentInstance();
  36. const dataList = ref([]);
  37. const pageSize = ref(20);
  38. const current = ref(1);
  39. const total = ref(0);
  40. /**
  41. * @页面初始化
  42. */
  43. function init() {
  44. baseAlarmTypeList({ productName: "", current: current.value, size: pageSize.value }).then((requset) => {
  45. if (requset.status === "SUCCESS") {
  46. dmpProductInfo({ current: current.value, size: 2000 }).then((requset1) => {
  47. if (requset1.status === "SUCCESS") {
  48. requset.data.records.forEach((e) => {
  49. requset1.data.records.forEach((el) => {
  50. if (e.productCode === el.productCode) {
  51. e.typeImg = el.typeImg ? el.typeImg : "/static/images/404.png";
  52. }
  53. });
  54. });
  55. dataList.value = requset.data.records;
  56. total.value = requset.data.total;
  57. }
  58. });
  59. }
  60. });
  61. }
  62. function handleToDetails(productCode, productName) {
  63. proxy.$tab.navigateTo(`/pages/business/fireIot/alarmManage/alarmDetailsList/index?productCode=${productCode}&productName=${productName}`);
  64. }
  65. /**
  66. * @scrollView加载数据
  67. */
  68. function load() {
  69. pageSize.value += 10;
  70. init();
  71. }
  72. /**
  73. * @scrollView刷新数据
  74. */
  75. function refresh() {
  76. pageSize.value = 20;
  77. init();
  78. }
  79. onShow(() => {
  80. //调用系统主题颜色
  81. proxy.$settingStore.systemThemeColor([1]);
  82. init();
  83. });
  84. </script>