index.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
  3. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="智能门禁" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  4. <template #left>
  5. <view class="u-navbar__content__left__item">
  6. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  7. </view>
  8. </template>
  9. </u-navbar>
  10. </u-sticky>
  11. <oa-scroll
  12. customClass="doorList-container scroll-height"
  13. :pageSize="state.pageSize"
  14. :total="state.total"
  15. :isSticky="true"
  16. :customStyle="{
  17. //#ifdef APP-PLUS || MP-WEIXIN
  18. height: `calc(100vh - (44px + 50px + ${proxy.$settingStore.StatusBarHeight}))`,
  19. //#endif
  20. //#ifdef H5
  21. height: `calc(100vh - (44px + 50px))`,
  22. //#endif
  23. }"
  24. :refresherLoad="true"
  25. :refresherEnabled="true"
  26. :refresherDefaultStyle="'none'"
  27. :refresherThreshold="44"
  28. :lowerThreshold="44"
  29. :refresherBackground="'#f5f6f7'"
  30. @load="load"
  31. @refresh="refresh"
  32. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  33. >
  34. <template #default>
  35. <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
  36. <u-grid class="p10" :border="true" :col="2" gap="10px">
  37. <u-grid-item class="p10 radius" bgColor="#FFF" v-for="(item, index) in dataList" :key="index" @click="doorSetting(item)">
  38. <view
  39. :style="{
  40. fontSize: '14px',
  41. fontWeight: 600,
  42. marginBottom: '20px',
  43. marginRight: 'auto',
  44. }"
  45. >
  46. {{ item.deviceName }}
  47. </view>
  48. <view
  49. class="flex"
  50. :style="{
  51. width: '100%',
  52. }"
  53. >
  54. <image style="width: 40px; height: 40px" :src="'/static/images/door/lock.png'" mode="aspectFill"></image>
  55. <view class="iconfont oaIcon-open_door ml-auto mtb-auto font30" @click.stop="controlStore.openDoor(item, true)"></view>
  56. </view>
  57. </u-grid-item>
  58. </u-grid>
  59. </template>
  60. </oa-scroll>
  61. <oa-tabbar :tabbarValue="0" :tabbarList="proxy.$constData.doorTabbar" :isSwitchTab="false"></oa-tabbar>
  62. </template>
  63. <script setup>
  64. /*----------------------------------依赖引入-----------------------------------*/
  65. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  66. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  67. /*----------------------------------接口引入-----------------------------------*/
  68. import { doorApi } from "@/api/business/door.js";
  69. /*----------------------------------组件引入-----------------------------------*/
  70. /*----------------------------------store引入-----------------------------------*/
  71. import { useStores, commonStores, controlStores } from "@/store/modules/index";
  72. /*----------------------------------公共方法引入-----------------------------------*/
  73. /*----------------------------------公共变量-----------------------------------*/
  74. const { proxy } = getCurrentInstance();
  75. const useStore = useStores();
  76. const controlStore = controlStores();
  77. /*----------------------------------变量声明-----------------------------------*/
  78. const state = reactive({
  79. loading: false,
  80. dataList: [],
  81. pageSize: 20,
  82. current: 1,
  83. total: 0,
  84. tabsList: [
  85. { name: "我收到的", value: 2 },
  86. { name: "我发出的", value: 3 },
  87. { name: "我负责的", value: 1 },
  88. ],
  89. tabsCurrent: 0,
  90. });
  91. const { tabsList, tabsCurrent, dataList } = toRefs(state);
  92. /**
  93. * @初始化
  94. */
  95. function init() {
  96. state.loading = true;
  97. doorApi()
  98. .MyPage({
  99. current: state.current, //页数
  100. size: state.pageSize, //条数
  101. })
  102. .then((requset) => {
  103. if (requset.data.records.length > 0) {
  104. state.dataList = requset.data.records;
  105. state.total = requset.data.total;
  106. state.loading = false;
  107. }
  108. })
  109. .catch((err) => {
  110. state.loading = false;
  111. });
  112. }
  113. /** 门禁设置 */
  114. function doorSetting(event) {
  115. proxy.$tab.navigateTo(`/pages/business/door/list/setting?pagesTitle=${event.deviceName}&id=${event.id}`);
  116. console.log(event);
  117. }
  118. /**
  119. * @scrollView加载数据
  120. */
  121. function load() {
  122. state.pageSize += 10;
  123. init();
  124. }
  125. /**
  126. * @scrollView刷新数据
  127. */
  128. function refresh() {
  129. state.pageSize = 20;
  130. init();
  131. }
  132. onReady(() => {});
  133. onShow(() => {});
  134. onLoad((options) => {
  135. init();
  136. });
  137. onUnload(() => {});
  138. </script>
  139. <style lang="scss" scoped>
  140. .content-area {
  141. }
  142. </style>