app
This commit is contained in:
parent
8fcd4ac8c4
commit
47bb90fc4d
@ -77,6 +77,9 @@ export default {
|
|||||||
onShow() {
|
onShow() {
|
||||||
this.getAllData();
|
this.getAllData();
|
||||||
},
|
},
|
||||||
|
onPullDownRefresh () {
|
||||||
|
this.getAllData();
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* 跳转详情页面
|
* 跳转详情页面
|
||||||
@ -104,6 +107,7 @@ export default {
|
|||||||
this.$set(item,'type','学生想法');
|
this.$set(item,'type','学生想法');
|
||||||
})
|
})
|
||||||
this.noticeList = (res.data.parentAdvice.concat(res.data.schoolNoticeList, res.data.studentThinking)).sort(sortBy("release_time",false));
|
this.noticeList = (res.data.parentAdvice.concat(res.data.schoolNoticeList, res.data.studentThinking)).sort(sortBy("release_time",false));
|
||||||
|
uni.startPullDownRefresh();
|
||||||
this.noData = this.noticeList.length === 0 ? true : false;
|
this.noData = this.noticeList.length === 0 ? true : false;
|
||||||
console.log("首页数据",this.noticeList);
|
console.log("首页数据",this.noticeList);
|
||||||
},err=>{
|
},err=>{
|
||||||
|
@ -42,6 +42,9 @@
|
|||||||
onShow() {
|
onShow() {
|
||||||
this.getPersonalPrivateLetter();
|
this.getPersonalPrivateLetter();
|
||||||
},
|
},
|
||||||
|
onPullDownRefresh () {
|
||||||
|
this.getPersonalPrivateLetter();
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* 跳转到消息页面
|
* 跳转到消息页面
|
||||||
@ -85,6 +88,7 @@
|
|||||||
this.message.splice(index,1);
|
this.message.splice(index,1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
uni.startPullDownRefresh();
|
||||||
console.log("私信",res);
|
console.log("私信",res);
|
||||||
},err=>{
|
},err=>{
|
||||||
console.log("err",err);
|
console.log("err",err);
|
||||||
|
@ -83,6 +83,9 @@ export default {
|
|||||||
onShow() {
|
onShow() {
|
||||||
this.getAllData();
|
this.getAllData();
|
||||||
},
|
},
|
||||||
|
onPullDownRefresh () {
|
||||||
|
this.getAllData();
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
* 编辑页面
|
* 编辑页面
|
||||||
@ -114,6 +117,7 @@ export default {
|
|||||||
}).then(res=>{
|
}).then(res=>{
|
||||||
console.log("我的文章",res);
|
console.log("我的文章",res);
|
||||||
this.noticeList = res.data;
|
this.noticeList = res.data;
|
||||||
|
uni.startPullDownRefresh();
|
||||||
this.noData = this.noticeList.length === 0 ? true : false;
|
this.noData = this.noticeList.length === 0 ? true : false;
|
||||||
},err=>{
|
},err=>{
|
||||||
console.log("err",err);
|
console.log("err",err);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
const baseUrl = 'http://192.168.10.29:8048'; //服务器地址
|
const baseUrl = 'http://106.53.113.158:8048'; //服务器地址
|
||||||
|
|
||||||
const get = (url, data) => {
|
const get = (url, data) => {
|
||||||
let httpDefaultOpts = {
|
let httpDefaultOpts = {
|
||||||
|
Loading…
Reference in New Issue
Block a user