bug
This commit is contained in:
@@ -66,6 +66,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
emitShow(){
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
emitReachBottom(){
|
||||||
|
this.current = this.current + 1;
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
tag(status) {
|
tag(status) {
|
||||||
return {
|
return {
|
||||||
"1": this.$cdn + 'common/1wks.png',
|
"1": this.$cdn + 'common/1wks.png',
|
||||||
@@ -103,15 +110,6 @@
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
|
||||||
this.getList()
|
|
||||||
},
|
|
||||||
|
|
||||||
onReachBottom() {
|
|
||||||
this.current = this.current + 1;
|
|
||||||
this.getList()
|
|
||||||
},
|
|
||||||
|
|
||||||
filters: {
|
filters: {
|
||||||
formatTime(date) {
|
formatTime(date) {
|
||||||
return date.split(" ")[1]?.substr(0, 5)
|
return date.split(" ")[1]?.substr(0, 5)
|
||||||
|
|||||||
@@ -145,6 +145,12 @@
|
|||||||
};
|
};
|
||||||
this.showList = false;
|
this.showList = false;
|
||||||
}
|
}
|
||||||
|
this.current = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
emitReachBottom(){
|
||||||
|
this.current = this.current + 1;
|
||||||
|
this.getList()
|
||||||
},
|
},
|
||||||
changeState() {
|
changeState() {
|
||||||
this.$http.post(this.content == '删除' ? '/app/appannouncement/delete' : "/app/appannouncement/update-status", null, {
|
this.$http.post(this.content == '删除' ? '/app/appannouncement/delete' : "/app/appannouncement/update-status", null, {
|
||||||
@@ -246,16 +252,6 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onShow() {
|
|
||||||
this.current = 1;
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
|
|
||||||
onReachBottom() {
|
|
||||||
this.current = this.current + 1;
|
|
||||||
this.getList()
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user