Browse Source

始宁农业小程序:个人中心加下拉刷新功能

panyong 2 years ago
parent
commit
73aafac165

+ 7 - 0
htmldev/shiningWxMini/pages/mine/mine.js

@@ -70,6 +70,13 @@ Page({
    */
   onUnload() {
 
+  },
+  onPullDownRefresh() {
+    app.fetchUserData()
+    const timer = setTimeout(() => {
+      clearTimeout(timer)
+      wx.stopPullDownRefresh()
+    }, 1000)
   },
   async init() {
     // 更新用户信息

+ 4 - 1
htmldev/shiningWxMini/pages/mine/mine.json

@@ -2,5 +2,8 @@
   "usingComponents": {
     "van-uploader": "@vant/weapp/uploader/index",
     "van-popup": "@vant/weapp/popup/index"
-  }
+  },
+  "backgroundColor": "#F6F6F6",
+  "backgroundTextStyle": "dark",
+  "enablePullDownRefresh": true
 }