index.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <template>
  2. <u-sticky class="shadow-default" 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="doorRecord-container scroll-height"
  13. :pageSize="state.size"
  14. :total="state.total"
  15. :isSticky="true"
  16. :customStyle="{
  17. //#ifdef APP-PLUS || MP-WEIXIN
  18. height: `calc(100vh - (44px + 50px + ${proxy.$settingStore.StatusBarHeight} + ${proxy.$settingStore.tabBarHeight}))`,
  19. //#endif
  20. //#ifdef H5
  21. height: `calc(100vh - (44px + 50px + ${proxy.$settingStore.StatusBarHeight} + ${proxy.$settingStore.tabBarHeight}))`,
  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. >
  33. <template #default>
  34. <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
  35. <view class="loginLog-container" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
  36. <view class="container-area">
  37. <view class="container-area-content bg-white" v-for="data in state.dataList" :key="data">
  38. <view class="container-area-content-img">
  39. <image style="width: 40px; height: 40px" :src="'/static/images/door/lock.png'" mode="aspectFill"></image>
  40. </view>
  41. <view class="container-area-content-center">
  42. <view
  43. :style="{
  44. fontSize: '14px',
  45. fontWeight: 600,
  46. }"
  47. >{{ data.egDevice?.deviceName }}</view
  48. >
  49. <view>通行时间:{{ data.passTime ? data.passTime.replace("T", " ") : "" }}</view>
  50. <view>
  51. 通行结果:
  52. <span :style="{ color: data.passResult == '成功' ? '#16bf00' : 'red' }">{{ data.passResult }}</span>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. </template>
  59. </oa-scroll>
  60. <oa-tabbar :tabbarValue="1" :tabbarList="proxy.$constData.doorTabbar" :isSwitchTab="false"></oa-tabbar>
  61. </template>
  62. <script setup>
  63. /*----------------------------------依赖引入-----------------------------------*/
  64. import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  65. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  66. /*----------------------------------接口引入-----------------------------------*/
  67. import { doorApi } from "@/api/business/door.js";
  68. /*----------------------------------组件引入-----------------------------------*/
  69. /*----------------------------------store引入-----------------------------------*/
  70. import { useStores, commonStores } from "@/store/modules/index";
  71. /*----------------------------------公共方法引入-----------------------------------*/
  72. /*----------------------------------公共变量-----------------------------------*/
  73. const { proxy } = getCurrentInstance();
  74. const useStore = useStores();
  75. /*----------------------------------变量声明-----------------------------------*/
  76. const state = reactive({
  77. dataList: [],
  78. current: 1, //页数
  79. size: 20, //条数
  80. total: 0,
  81. });
  82. /**
  83. * @初始化
  84. */
  85. function init() {
  86. selectListApi();
  87. }
  88. /**
  89. * @scrollView加载数据
  90. */
  91. function load() {
  92. state.size += 10;
  93. selectListApi();
  94. }
  95. /**
  96. * @scrollView刷新数据
  97. */
  98. function refresh() {
  99. state.size = 20;
  100. selectListApi();
  101. }
  102. /**
  103. * @通知公告列表
  104. * @api接口调用
  105. */
  106. function selectListApi() {
  107. state.loading = true;
  108. doorApi()
  109. .RecordSelect({
  110. current: state.current, //页数
  111. size: state.size, //条数
  112. userName: useStore.nickName,
  113. })
  114. .then((requset) => {
  115. if (requset.status === "SUCCESS") {
  116. state.dataList = requset.data.records;
  117. state.total = requset.data.total;
  118. state.loading = false;
  119. }
  120. })
  121. .catch((err) => {
  122. state.loading = false;
  123. });
  124. }
  125. onLoad((options) => {
  126. init();
  127. });
  128. onReady(() => {});
  129. onShow(() => {
  130. //调用系统主题颜色
  131. proxy.$settingStore.systemThemeColor([1]);
  132. });
  133. // 自定义导航事件
  134. onNavigationBarButtonTap((e) => {
  135. if (e.float == "right") {
  136. proxy.$tab.navigateTo("/pages/mine/setting/index");
  137. }
  138. });
  139. </script>
  140. <style lang="scss" scoped>
  141. :deep(.uni-page-head__title) {
  142. opacity: 1 !important;
  143. }
  144. .loginLog-container {
  145. padding-bottom: 1px;
  146. .container-area {
  147. &-content {
  148. display: flex;
  149. border-bottom: 0.5px solid #d6d7d9;
  150. &-img {
  151. margin: auto 15px auto 15px;
  152. }
  153. &-center {
  154. width: 100%;
  155. font-size: 12px;
  156. padding: 15px 0 15px 0;
  157. line-height: 20px;
  158. }
  159. }
  160. }
  161. }
  162. </style>