From 0b523220931d70aa752c3beaca5ed32ca85511c5 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期四, 28 三月 2024 11:36:05 +0800
Subject: [PATCH] Merge refs/remotes/origin/master into refs/heads/master

---
 pages/personalCenter/index.js |   46 +++++++++++++++++++++++++++-------------------
 1 files changed, 27 insertions(+), 19 deletions(-)

diff --git a/pages/personalCenter/index.js b/pages/personalCenter/index.js
index 190cc96..a6682bd 100644
--- a/pages/personalCenter/index.js
+++ b/pages/personalCenter/index.js
@@ -1,6 +1,5 @@
 const app = getApp()
-const menuData = [
-  {
+const menuData = [{
     title: '鎴戠殑璁㈠崟',
     icon: '/static/images/personal/order.png',
     url: '/packagePersonal/pages/myOrder/index',
@@ -49,8 +48,7 @@
     type: 'publishBooks',
   }
 ];
-const moreMenu = [
-  {
+const moreMenu = [{
     title: '鎴戠殑娑堟伅',
     icon: '/static/images/personal/notification.png',
     url: '/packagePersonal/pages/myMassage/index',
@@ -63,8 +61,7 @@
     type: 'feedback',
   }
 ];
-const moreMenu1 = [
-  {
+const moreMenu1 = [{
     title: '鍏充簬鎴戜滑',
     icon: '/static/images/personal/about.png',
     url: '/packagePersonal/pages/aboutUs/index?types=jsek_aboutUs',
@@ -77,8 +74,7 @@
     type: 'contact',
   }
 ];
-const userTypeList = [
-  {
+const userTypeList = [{
     lable: '涓亴鏁欏笀',
     value: 'vocSchoolTeachers'
   },
@@ -119,7 +115,11 @@
     visible: false,
     baseRefresh: {
       value: false
-    }
+    },
+    loadingProps: {
+      size: '50rpx',
+    },
+    scrollTop: 0,
   },
   /**
    * 鐢熷懡鍛ㄦ湡鍑芥暟--鐩戝惉椤甸潰鍔犺浇
@@ -165,8 +165,7 @@
   /**
    * 椤甸潰涓婃媺瑙﹀簳浜嬩欢鐨勫鐞嗗嚱鏁�
    */
-  onReachBottom() {
-  },
+  onReachBottom() {},
   // 鑾峰彇鐧诲綍鐢ㄦ埛韬唤
   getUserInfo() {
     app.MG.identity.getCurrentAppUser().then(res => {
@@ -281,20 +280,22 @@
     });
   },
   tabUserTypeClick(e) {
-    let { info } = e.currentTarget.dataset;
+    let {
+      info
+    } = e.currentTarget.dataset;
     this.setData({
       userTypeActive: info.value,
     });
   },
   submit() {
     let userTypeInfo = {
-      requests: [
-        {
-          data: JSON.stringify({ userType: this.data.userTypeActive }),
-          name: '鐢ㄦ埛绫诲瀷',
-          type: 'userType'
-        }
-      ]
+      requests: [{
+        data: JSON.stringify({
+          userType: this.data.userTypeActive
+        }),
+        name: '鐢ㄦ埛绫诲瀷',
+        type: 'userType'
+      }]
     }
     app.MG.identity.setAppUserInfo(userTypeInfo).then((res) => {
       if (res) {
@@ -337,8 +338,15 @@
     this.setData({
       isWhite: e.detail.scrollTop > 10 ? true : false
     })
+    const {
+      scrollTop
+    } = e.detail;
+    this.setData({
+      scrollTop
+    });
   },
 
+
   /**
    * 鐢ㄦ埛鐐瑰嚮鍙充笂瑙掑垎浜�
    */

--
Gitblit v1.9.1