bug
This commit is contained in:
@@ -16,10 +16,11 @@
|
||||
<script>
|
||||
import AiBack from "../../../components/AiBack";
|
||||
import AiTopFixed from "../../../components/AiTopFixed";
|
||||
|
||||
import AiOpenData from "../../../components/AiOpenData";
|
||||
import {mapActions} from "vuex";
|
||||
export default {
|
||||
name: "read",
|
||||
components: {AiBack, AiTopFixed},
|
||||
components: {AiBack, AiTopFixed, AiOpenData},
|
||||
props:{
|
||||
params:[String,Number]
|
||||
},
|
||||
@@ -31,9 +32,13 @@
|
||||
},
|
||||
created() {
|
||||
document.title = "接收对象";
|
||||
this.getList();
|
||||
this.$loading()
|
||||
this.injectJWeixin().then(() => {
|
||||
this.getList();
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['previewFile', 'injectJWeixin']),
|
||||
getList() {
|
||||
this.$http.post("/app/appannouncementreader/list-unread",null,{
|
||||
params:{
|
||||
@@ -42,6 +47,7 @@
|
||||
}).then(res => {
|
||||
if (res && res.data) {
|
||||
this.list = res.data;
|
||||
this.$hideLoading()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user