Bläddra i källkod

消息中心、工作报告功能优化

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

+ 10 - 1
src/api/business/project.js

@@ -2,7 +2,9 @@ import { request } from "@/utils/request";
 
 /**
  * 项目管理接口集合
- * @method Record 记录详情
+ * @method Record 记录列表
+ * @method Details 记录详情
+ * @method ReadFlag 记录已读
  */
 export function projectApi() {
     return {
@@ -20,5 +22,12 @@ export function projectApi() {
                 data: data,
             });
         },
+        ReadFlag(data){
+            return request({
+                url: "/service-iot/pmReceive/updateReadFlag",
+                method: "GET",
+                data: data,
+            });
+        }
     };
 }

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

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

@@ -134,6 +134,15 @@ 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();
+    });
 }
 
 /**
@@ -169,14 +178,9 @@ onShow(() => {
 
 onLoad((options) => {
   init();
-  uni.$on("projectMange_record", function (value) {
-    init();
-  });
 });
 
-onUnload(() => {
-  uni.$off("projectMange_record"); //将值删除监听器
-});
+onUnload(() => {});
 </script>
 
 <style lang="scss" scoped>

+ 11 - 6
src/pages/common/appMessage/index.vue

@@ -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;
     }
   }
 }