Bläddra i källkod

修复消息中心跳转路径存在的问题

fanghuisheng 8 månader sedan
förälder
incheckning
f147f68de2

+ 13 - 1
src/pages/business/common/projectMange/record/details.vue

@@ -1,5 +1,5 @@
 <template>
-  <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="state.options.createBy + '的日报'" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
+  <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="state.options.createBy + '的日报'" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff" @leftClick="goRecordDataRefresh()">
     <template #left>
       <view class="u-navbar__content__left__item">
         <u-icon name="arrow-left" size="19" color="#000"></u-icon>
@@ -114,6 +114,18 @@ function init() {
     });
 }
 
+/** 返回列表页数据刷新 */
+function goRecordDataRefresh() {
+  projectApi()
+    .ReadFlag({ reportId: state.options.reportId })
+    .then((requset) => {
+      uni.$emit("projectMange_record", true); //监听器
+    })
+    .catch((err) => {
+      uni.$emit("projectMange_record", true); //监听器
+    });
+}
+
 onReady(() => {});
 
 onShow(() => {

+ 6 - 10
src/pages/business/common/projectMange/record/index.vue

@@ -134,15 +134,6 @@ function init() {
  */
 function goContentDetails(e) {
   proxy.$tab.navigateTo(`/pages/business/common/projectMange/record/details?reportId=${e.id}`);
-
-  projectApi()
-    .ReadFlag({ reportId: e.id })
-    .then((requset) => {
-      init();
-    })
-    .catch((err) => {
-      init();
-    });
 }
 
 /**
@@ -178,9 +169,14 @@ onShow(() => {
 
 onLoad((options) => {
   init();
+  uni.$on("projectMange_record", function (value) {
+    init();
+  });
 });
 
-onUnload(() => {});
+onUnload(() => {
+  uni.$off("projectMange_record"); //将值删除监听器
+});
 </script>
 
 <style lang="scss" scoped>

+ 12 - 7
src/pages/common/appMessage/index.vue

@@ -57,7 +57,9 @@ const state = reactive({
   size: 10,
   current: 1,
   total: 0,
-  options: {},
+  options: {
+    typeName: "",
+  },
 });
 
 const { scrollIntoView, noticeList } = toRefs(state);
@@ -77,7 +79,6 @@ function goContentDetails(e) {
   //是否已读
   if (!e.readFlag) {
     updateMceReceiveStatus({ id: e.id });
-    init(state.options);
   }
 }
 
@@ -85,16 +86,16 @@ function goContentDetails(e) {
  * @通知公告列表
  * @api接口调用
  */
-function init(options) {
+function init(obj) {
   uni.setNavigationBarTitle({
-    title: options?.typeName ? options?.typeName : "消息列表",
+    title: obj.typeName ? obj.typeName : "消息列表",
   });
 
   state.loading = true;
   getMceList({
     size: state.size,
     current: state.current,
-    infoType: options?.type,
+    infoType: obj?.type,
   })
     .then((requset) => {
       if (requset.status === "SUCCESS") {
@@ -106,9 +107,9 @@ function init(options) {
         scrollIntoView.value = "bottomInfo";
       }, 0);
 
-      if ("id" in options) {
+      if ("id" in obj) {
         state.noticeList.forEach((e) => {
-          if (e.id == options.id) {
+          if (e.id == obj.id) {
             goContentDetails(e);
           }
         });
@@ -138,6 +139,10 @@ function refresh() {
 onLoad((options) => {
   state.options = options;
   init(state.options);
+  uni.$on("projectMange_record", function (value) {
+    delete state.options.id;
+    init(state.options);
+  });
 });
 
 onReady(() => {});