@@ -76,7 +76,8 @@
}
],
liSt: [
- '庆祝靖润物流小程序上线'
+ // '庆祝靖润物流小程序上线',
+ // '测试啊测试~'
meter: {
count: 0, //新订单
@@ -98,6 +99,7 @@
wx.hideHomeButton();
// #endif
+ this.getNotice()
},
onShow() {
this.statistics()
@@ -167,7 +169,25 @@
type: 'default',
position: 'bottom'
})
- }
+ },
+ // 获得公告功能
+ getNotice() {
+ request({
+ url: '/system/notice/list?pageNum=1&status=0',
+ method: 'get',
+ }).then(res => {
+ console.log(res)
+ res.data.rows.forEach(item => {
+ this.liSt.push(item.noticeTitle)
+ })
+ }).catch(err => {
+ uni.showToast({
+ icon: 'none',
+ title: '网络繁忙请稍后再试',
+ position: "bottom"
</script>