|
@@ -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(() => {});
|