通知公告改回来

This commit is contained in:
wanglei
2021-12-13 14:06:38 +08:00
parent afbee5ede4
commit 65788ddf6e
2 changed files with 6 additions and 7 deletions

View File

@@ -71,9 +71,6 @@ import {mapActions} from "vuex";
export default {
name: "add",
props: {
params: Object
},
data() {
return {
show: false,

View File

@@ -18,15 +18,17 @@ import {mapActions} from "vuex";
export default {
name: "read",
props: {
params: [String, Number]
},
data() {
return {
current: 0,
list: [],
id:null,
}
},
onLoad(opt) {
this.id = opt.id;
this.getList();
},
created() {
document.title = "接收对象";
this.$loading()
@@ -39,7 +41,7 @@ export default {
getList() {
this.$http.post("/app/appannouncementreader/list-unread", null, {
params: {
id: this.params
id: this.id
}
}).then(res => {
if (res && res.data) {