|
@@ -40,7 +40,7 @@
|
|
|
|
|
|
<script setup>
|
|
|
/*----------------------------------依赖引入-----------------------------------*/
|
|
|
-import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
+import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { getMceList, updateMceReceiveStatus } from "@/api/mine/info.js";
|
|
@@ -77,6 +77,7 @@ function goContentDetails(e) {
|
|
|
//是否已读
|
|
|
if (!e.readFlag) {
|
|
|
updateMceReceiveStatus({ id: e.id });
|
|
|
+ init(state.options);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -84,7 +85,7 @@ function goContentDetails(e) {
|
|
|
* @通知公告列表
|
|
|
* @api接口调用
|
|
|
*/
|
|
|
-function infoListApi(options) {
|
|
|
+function init(options) {
|
|
|
uni.setNavigationBarTitle({
|
|
|
title: options?.typeName ? options?.typeName : "消息列表",
|
|
|
});
|
|
@@ -123,7 +124,7 @@ function infoListApi(options) {
|
|
|
*/
|
|
|
function load() {
|
|
|
state.size += 10;
|
|
|
- infoListApi(state.options);
|
|
|
+ init(state.options);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -131,12 +132,12 @@ function load() {
|
|
|
*/
|
|
|
function refresh() {
|
|
|
state.size = 10;
|
|
|
- infoListApi(state.options);
|
|
|
+ init(state.options);
|
|
|
}
|
|
|
|
|
|
onLoad((options) => {
|
|
|
state.options = options;
|
|
|
- infoListApi(state.options);
|
|
|
+ init(state.options);
|
|
|
});
|
|
|
|
|
|
onReady(() => {});
|
|
@@ -146,6 +147,10 @@ onShow(() => {
|
|
|
proxy.$settingStore.systemThemeColor([1]);
|
|
|
});
|
|
|
|
|
|
+onUnload(() => {
|
|
|
+ uni.$off("projectMange_record"); //将值删除监听器
|
|
|
+});
|
|
|
+
|
|
|
// 自定义导航事件
|
|
|
onNavigationBarButtonTap((e) => {
|
|
|
if (e.float == "right") {
|
|
@@ -203,7 +208,7 @@ onNavigationBarButtonTap((e) => {
|
|
|
}
|
|
|
|
|
|
&-time {
|
|
|
- margin: auto 15px auto 0;
|
|
|
+ margin: auto 0.9375rem auto 0;
|
|
|
}
|
|
|
}
|
|
|
}
|