info.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <template>
  2. <u-navbar :autoBack="false" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
  3. <template #left>
  4. <view class="u-navbar__content__left__item">
  5. <view class="u-navbar__content__left__item__title" style="color: #fff"> 消息中心 </view>
  6. </view>
  7. <view class="u-navbar__content__left__item topBadge">
  8. <u-badge numberType="overflow" max="99" :value="infoList.total || 0"></u-badge>
  9. </view>
  10. <view class="u-navbar__content__left__item topImage" @click="clearMsg" v-if="infoList.total > 0">
  11. <image class="image-bg-top" src="/static/images/common/clear.png" />
  12. </view>
  13. </template>
  14. <template #right>
  15. <!-- <view class="u-navbar__content__right__item">
  16. <text class="iconfont oaIcon-qingchu" @click="handleIconClick('清除')"></text>
  17. </view>
  18. <view class="u-navbar__content__right__item">
  19. <text class="iconfont oaIcon-sousuo" @click="handleIconClick('搜索')"></text>
  20. </view> -->
  21. <view class="u-navbar__content__right__item">
  22. <text class="iconfont oaIcon-shezhi font20" @click="handleIconClick('设置')"></text>
  23. </view>
  24. </template>
  25. </u-navbar>
  26. <oa-scroll
  27. customClass="info-container scroll-height bg-white"
  28. :customStyle="{ height: `calc(100vh - (50px + ${proxy.$settingStore.barHightTop} + ${proxy.$settingStore.tabBarHeight}))`, position: 'relative' }"
  29. :refresherLoad="false"
  30. :refresherEnabled="true"
  31. :refresherEnabledTitle="false"
  32. :refresherDefaultStyle="'none'"
  33. :refresherThreshold="44"
  34. :refresherBackground="'#f5f6f7'"
  35. @refresh="init()"
  36. >
  37. <template #default>
  38. <view class="content-area list-cell list-cell-arrow" v-for="item in infoList.infoTypeStatic" :key="item" @tap="goAppMessage(item)">
  39. <view class="content-area-avatar">
  40. <image class="image-bg" :src="item.img" />
  41. <view class="uni_top_right font12" style="margin: auto 0">
  42. <u-badge numberType="overflow" max="99" :value="item.notReadCount"></u-badge>
  43. </view>
  44. </view>
  45. <view class="content-area-child">
  46. <view class="uni-item mb5 ml10">
  47. <view class="uni-item-text font14" style="color: #000000">{{ item.label }}</view>
  48. </view>
  49. <view class="uni-item">
  50. <view class="uni-item-text font12" style="color: #909399">{{ item.cont }}</view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. </oa-scroll>
  56. <oa-tabbar :tabbarValue="1" :tabbarList="proxy.$constData.homeTabbar"></oa-tabbar>
  57. </template>
  58. <script setup>
  59. /*----------------------------------依赖引入-----------------------------------*/
  60. import { onLoad, onShow } from "@dcloudio/uni-app";
  61. import { reactive, getCurrentInstance, toRefs } from "vue";
  62. /*----------------------------------接口引入-----------------------------------*/
  63. import { getMceReceiveStatic, updateMceReceiveStatus } from "@/api/mine/info.js";
  64. /*----------------------------------组件引入-----------------------------------*/
  65. /*----------------------------------store引入-----------------------------------*/
  66. /*----------------------------------公共方法引入-----------------------------------*/
  67. import { storageSystem } from "@/utils/storage";
  68. /*----------------------------------公共变量-----------------------------------*/
  69. const { proxy } = getCurrentInstance();
  70. const { message_type } = proxy.useDict("message_type");
  71. /*----------------------------------变量声明-----------------------------------*/
  72. const state = reactive({
  73. infoList: {
  74. infoTypeStatic: [],
  75. total: 0,
  76. },
  77. });
  78. const { infoList } = toRefs(state);
  79. function init() {
  80. getMceReceiveStatic().then((res) => {
  81. let receiveStatic = { infoTypeStatic: res.data.infoTypeStatic, total: res.data.notReadCount };
  82. let dictList = message_type.value;
  83. if (receiveStatic.infoTypeStatic.length > 0) {
  84. for (let i = 0; i < receiveStatic.infoTypeStatic.length; i++) {
  85. for (let j = 0; j < dictList.length; j++) {
  86. if (receiveStatic.infoTypeStatic[i].infoType == dictList[j].value) {
  87. receiveStatic.infoTypeStatic[i].label = dictList[j].label;
  88. receiveStatic.infoTypeStatic[i].type = dictList[j].value;
  89. if (receiveStatic.infoTypeStatic[i].infoType == 1) {
  90. receiveStatic.infoTypeStatic[i].img = "/static/images/common/noticeMessage.png";
  91. }
  92. if (receiveStatic.infoTypeStatic[i].infoType == 2) {
  93. receiveStatic.infoTypeStatic[i].img = "/static/images/common/inspectionMessage.png";
  94. }
  95. if (receiveStatic.infoTypeStatic[i].infoType == 3) {
  96. receiveStatic.infoTypeStatic[i].img = "/static/images/common/meetingMessage.png";
  97. }
  98. if (receiveStatic.infoTypeStatic[i].infoType == 4) {
  99. receiveStatic.infoTypeStatic[i].img = "/static/images/common/alarmMessage.png";
  100. }
  101. if (receiveStatic.infoTypeStatic[i].infoType == 5) {
  102. receiveStatic.infoTypeStatic[i].img = "/static/images/common/reportMessage.png";
  103. }
  104. }
  105. }
  106. }
  107. }
  108. proxy.$setting.setBadge(res.data.notReadCount); // 设置角标值
  109. state.infoList = receiveStatic;
  110. storageSystem.set("infoList", receiveStatic);
  111. });
  112. }
  113. /**
  114. * 清除消息
  115. */
  116. function clearMsg() {
  117. updateMceReceiveStatus({ id: 0 }).then(() => {
  118. proxy.$setting.setBadge(0); // 设置角标值
  119. init();
  120. });
  121. }
  122. function goAppMessage(item) {
  123. proxy.$tab.navigateTo(`/pages/common/appMessage/index?type=${item.type}&typeName=${item.label}`);
  124. }
  125. function handleIconClick(type) {
  126. if (type === "设置") {
  127. proxy.$tab.navigateTo("/pages/mine/msg/index");
  128. }
  129. }
  130. onShow(() => {
  131. init();
  132. });
  133. onLoad(() => {});
  134. </script>
  135. <style lang="scss" scoped>
  136. .topImage {
  137. display: flex;
  138. margin: 0 auto;
  139. }
  140. .topBadge {
  141. margin-top: -14px;
  142. margin-left: 0px;
  143. }
  144. .image-bg-top {
  145. width: 15px;
  146. height: 19px;
  147. }
  148. .info-container {
  149. .content-area {
  150. display: flex;
  151. padding: 13px 13px 13px 13px;
  152. &-avatar {
  153. display: flex;
  154. margin: auto 20upx auto 0;
  155. position: relative;
  156. .image-bg {
  157. width: 40px;
  158. height: 40px;
  159. }
  160. .uni_top_right {
  161. position: absolute;
  162. right: -10px;
  163. top: -4px;
  164. }
  165. }
  166. &-child {
  167. width: calc(100% - (32px + 0.625rem));
  168. justify-content: center;
  169. margin: auto;
  170. .uni-item {
  171. display: flex;
  172. white-space: nowrap;
  173. .uni-item-text {
  174. margin-right: auto;
  175. overflow: hidden;
  176. text-overflow: ellipsis;
  177. }
  178. .uni-item-right {
  179. width: auto;
  180. text-align: right;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. </style>