Jelajahi Sumber

wansanziliao

邹能昇 2 bulan lalu
induk
melakukan
69e75fe671
2 mengubah file dengan 59 tambahan dan 50 penghapusan
  1. 47 44
      nova-werun/components/my/index.js
  2. 12 6
      nova-werun/pages/my/my-profile/index.js

+ 47 - 44
nova-werun/components/my/index.js

@@ -20,12 +20,12 @@ Component({
         bottomNavHeight: 0, // 底部导航栏高度
         contentHeight: 0, // 可用内容高度
         contentpadding: 0, //顶部padding高度
-        navheight:0,
+        navheight: 0,
 
         circlecount: 0,
-        likesCount:0,
-        User1List:[],
-        profile1List2:[]
+        likesCount: 0,
+        User1List: [],
+        profile1List2: []
     },
     lifetimes: {
 
@@ -44,10 +44,10 @@ Component({
 
             const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
             const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
-            const navheight = (statusBarHeight+customHeight) * 750 / systemInfo.windowWidth;
+            const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
             this.setData({
                 statusBarHeight,
-                screenHeight:(screenHeight-50-bottomNavHeight) * 750 / systemInfo.windowWidth,
+                screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
                 customHeight,
                 bottomNavHeight,
                 contentHeight,
@@ -70,10 +70,10 @@ Component({
             });
         },
         gourl2(e) {
-            const type =  e.currentTarget.dataset.type
+            const type = e.currentTarget.dataset.type
             const url = e.currentTarget.dataset.url
             wx.navigateTo({
-                url: `${url}?type=`+type // 目标页面的路径
+                url: `${url}?type=` + type // 目标页面的路径
             });
         },
         //查全部朋友圈
@@ -117,47 +117,50 @@ Component({
             this.setData({
                 profile1List2,
             })
-            console.log('信息',this.data.profile1List2);
-            let Profilequery = new Parse.Query('AIMoment');
-            Profilequery.equalTo('company', company);
-            Profilequery.equalTo('isVisible', true);
-            Profilequery.notEqualTo('isDeleted', true);
-            Profilequery.equalTo('profile', profile1List2[0].objectId);
-            Profilequery.descending('createdAt');
-        
-            let moments = await Profilequery.find(); // 查找所有动态
-        
-            if (moments.length) {
-                this.setData({
-                    circlecount: moments.length
-                });
-        
-                // 获取所有动态的ID
-                let momentIds = moments.map(moment => moment.id);
-        
-                // 创建对 AIMomentLike 表的查询
-                let LikeQuery = new Parse.Query('AIMomentLike');
-                LikeQuery.equalTo('isLiked', true);
-                LikeQuery.equalTo('company', company);
-                LikeQuery.notEqualTo('isDeleted', true);
-                LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
-        
-                // 统计点赞数量
-                let likesCount = await LikeQuery.count();
-        
-                // 这里可以进一步处理 likesCount,按动态分配点赞数量
-                console.log(`总点赞数量: ${likesCount}`);
-                this.setData({
-                    likesCount,
-                })
+            if (profile1List2.length != 0) {
+                console.log('信息', this.data.profile1List2);
+                let Profilequery = new Parse.Query('AIMoment');
+                Profilequery.equalTo('company', company);
+                Profilequery.equalTo('isVisible', true);
+                Profilequery.notEqualTo('isDeleted', true);
+                Profilequery.equalTo('profile', profile1List2[0].objectId);
+                Profilequery.descending('createdAt');
+
+                let moments = await Profilequery.find(); // 查找所有动态
+
+                if (moments.length) {
+                    this.setData({
+                        circlecount: moments.length
+                    });
+
+                    // 获取所有动态的ID
+                    let momentIds = moments.map(moment => moment.id);
+
+                    // 创建对 AIMomentLike 表的查询
+                    let LikeQuery = new Parse.Query('AIMomentLike');
+                    LikeQuery.equalTo('isLiked', true);
+                    LikeQuery.equalTo('company', company);
+                    LikeQuery.notEqualTo('isDeleted', true);
+                    LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
+
+                    // 统计点赞数量
+                    let likesCount = await LikeQuery.count();
+
+                    // 这里可以进一步处理 likesCount,按动态分配点赞数量
+                    console.log(`总点赞数量: ${likesCount}`);
+                    this.setData({
+                        likesCount,
+                    })
+                }
             }
+
         },
         //查看积分
-        async getpoint(){
+        async getpoint() {
 
         },
         //获取头像名称
-        async getname(){
+        async getname() {
             const currentUser = Parse.User.current();
             let Userquery = new Parse.Query('_User');
             Userquery.equalTo('company', company);
@@ -173,7 +176,7 @@ Component({
         gourl(e) {
             const url = e.currentTarget.dataset.url
             wx.navigateTo({
-                url: `${url}`// 目标页面的路径
+                url: `${url}` // 目标页面的路径
             });
         },
     }

+ 12 - 6
nova-werun/pages/my/my-profile/index.js

@@ -54,7 +54,7 @@ Page({
     /**
      * 生命周期函数--监听页面加载
      */
-    onLoad: function (options) {
+    onLoad: async function (options) {
         // 计算
         const systemInfo = wx.getSystemInfoSync();
         const statusBarHeight = systemInfo.statusBarHeight || 0;
@@ -76,8 +76,8 @@ Page({
         this.setData({
             title: options.type
         })
-        this.getname()
-        this.getdep()
+       await this.getname()
+       await this.getdep()
         // this.getDepartment()
         this.getwritedep()
         this.getUptoken()
@@ -214,7 +214,8 @@ Page({
         Userquery.include('department');
         let P2 = await Userquery.find();
         let dep = P2.map(item => item.toJSON());
-        if (dep) {
+        console.log('getdep', dep);
+        if (dep.length!=0) {
             if (dep[0].isCheck == true) {
                 this.setData({
                     name: dep[0].name,
@@ -239,8 +240,12 @@ Page({
                     duration: 2000
                 })
             }
+        }else{
+            this.setData({
+                phone:this.data.User1List[0].mobile
+            })
         }
-        console.log('getdep', dep);
+       
     },
     onSelect(event) {
         let {
@@ -574,11 +579,12 @@ Page({
         }
         console.log(this.data.phone);
     },
+    //身份证号码
     changeidnumber(e){
         const idnumber = e.detail;
         this.setData({
             idnumber,
         })
         console.log(idnumber);
-    }
+    },
 })