index.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
  3. <u-tabs :list="tabsList" :current="tabsCurrent" @click="tabsClick" lineColor="#333" :activeStyle="{ color: '#333' }" :inactiveStyle="{ color: '#909399' }" :scrollable="true"></u-tabs>
  4. </u-sticky>
  5. <scroll-view class="scroll-height" :scroll-y="true" :scroll-into-view="scrollIntoView" :data-theme="'theme-' + proxy.$settingStore.themeColor.name" style="padding-bottom: 44px">
  6. <view class="applicationInfo-container">
  7. <view class="content-area" v-show="tabsCurrent == 0">
  8. <u-empty v-show="allInfoList.length <= 0" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
  9. <view :id="index == allInfoList.length - 1 ? 'bottomInfo' : ''" v-for="(all, index) in allInfoList" :key="index" v-show="allInfoList.length > 0" @click="goContentDetails(all)">
  10. <view class="content-area-time text-sm">{{ all.listTime }}</view>
  11. <view class="content-area-center radius bg-white">
  12. <view class="content-area-center-title">{{ all.typeTitle }}</view>
  13. <view class="content-area-center-cont">{{ all.listTitle }}</view>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="content-area" v-show="tabsCurrent == 1">
  18. <u-empty v-show="noticeList.length <= 0" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
  19. <view :id="index == noticeList.length - 1 ? 'bottomInfo' : ''" v-for="(all, index) in noticeList" :key="index" v-show="noticeList.length > 0" @click="goContentDetails(all)">
  20. <view class="content-area-time text-sm">{{ all.listTime }}</view>
  21. <view class="content-area-center radius bg-white">
  22. <view class="content-area-center-title">{{ all.typeTitle }}</view>
  23. <view class="content-area-center-cont">{{ all.listTitle }}</view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </scroll-view>
  29. </template>
  30. <script setup>
  31. import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  32. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  33. import { publicStores, useStores } from "@/store/modules/index";
  34. import { infoList } from "@/api/common/applicationInfo.js";
  35. const useStore = useStores();
  36. const { proxy } = getCurrentInstance();
  37. const data = reactive({
  38. scrollIntoView: "",
  39. tabsList: [
  40. {
  41. name: "全部",
  42. },
  43. {
  44. name: "通知公告",
  45. },
  46. ],
  47. tabsCurrent: 0,
  48. allInfoList: [],
  49. noticeList: [],
  50. });
  51. const { scrollIntoView, scrollIntoViewBool, tabsList, tabsCurrent, allInfoList, noticeList } = toRefs(data);
  52. /**
  53. * @初始化
  54. */
  55. function init() {
  56. infoListApi();
  57. }
  58. /**
  59. * @tabs点击事件
  60. */
  61. function tabsClick(e) {
  62. tabsCurrent.value = e.index;
  63. }
  64. /**
  65. * @跳转
  66. */
  67. function goContentDetails(e) {
  68. if (e.type == "通知公告") {
  69. proxy.$tab.navigateTo(`/pages/common/textview/index1?title=${e.typeTitle}&content=${e.listContent}&contentTitle=${e.listTitle}`);
  70. }
  71. }
  72. /**
  73. * @通知公告列表
  74. * @api接口调用
  75. */
  76. function infoListApi() {
  77. proxy.$modal.loading("加载中");
  78. infoList({
  79. pageNum: 1,
  80. pageSize: 20000,
  81. }).then((requset) => {
  82. if (requset.status === "SUCCESS") {
  83. requset.data.rows.forEach((el) => {
  84. allInfoList.value.push({
  85. type: "通知公告",
  86. typeTitle: el.noticeType === "1" ? "系统通知" : el.noticeType === "2" ? "系统公告" : "系统消息",
  87. listTime: proxy.$common.jktTimes(el.createTime),
  88. listCreateTime: el.createTime,
  89. listTitle: el.noticeTitle,
  90. listContent: el.noticeContent,
  91. });
  92. noticeList.value.push({
  93. type: "通知公告",
  94. typeTitle: el.noticeType === "1" ? "系统通知" : el.noticeType === "2" ? "系统公告" : "系统消息",
  95. listTime: proxy.$common.jktTimes(el.createTime),
  96. listCreateTime: proxy.$common.jktTimes(el.createTime),
  97. listTitle: el.noticeTitle,
  98. listContent: el.noticeContent,
  99. });
  100. });
  101. setTimeout(() => {
  102. scrollIntoView.value = "bottomInfo";
  103. }, 0);
  104. setTimeout(() => {
  105. proxy.$modal.closeLoading();
  106. }, 100);
  107. }
  108. });
  109. }
  110. onLoad((options) => {
  111. init();
  112. });
  113. onReady(() => {});
  114. onShow(() => {
  115. //调用系统主题颜色
  116. proxy.$settingStore.systemThemeColor([1]);
  117. });
  118. // 自定义导航事件
  119. onNavigationBarButtonTap((e) => {
  120. if (e.float == "right") {
  121. proxy.$tab.navigateTo("/pages/mine/setting/index");
  122. }
  123. });
  124. </script>
  125. <style lang="scss" scoped>
  126. :deep(.uni-page-head__title) {
  127. opacity: 1 !important;
  128. }
  129. .applicationInfo-container {
  130. padding-bottom: 1px;
  131. .content-area {
  132. &-time {
  133. padding: 10px 0;
  134. text-align: center;
  135. color: #909399;
  136. }
  137. &-center {
  138. margin: 0 10px 20px 10px;
  139. padding: 15px;
  140. &-title {
  141. margin: 0 0 15px 0;
  142. color: #909399;
  143. }
  144. &-cont {
  145. font-weight: 600;
  146. }
  147. }
  148. }
  149. }
  150. </style>