ソースを参照

公共连接到线上

lichao 3 年 前
コミット
2f9647b68a
1 ファイル変更22 行追加2 行削除
  1. 22 2
      pages/home/index.vue

+ 22 - 2
pages/home/index.vue

@@ -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>