Browse Source

ziliaorenzheng

邹能昇 2 tháng trước cách đây
mục cha
commit
91c2c1c063
2 tập tin đã thay đổi với 50 bổ sung5 xóa
  1. 11 0
      nova-werun/pages/index/index.js
  2. 39 5
      nova-werun/pages/my/my-profile/index.js

+ 11 - 0
nova-werun/pages/index/index.js

@@ -131,6 +131,7 @@ Page({
         break;
     }
   },
+  //朋友圈
   updateCom(){
     let componentPage = this.selectComponent(`#comp${this.data.active}`)
     if (!componentPage) {
@@ -138,6 +139,7 @@ Page({
     }
     componentPage.getcircle2()
   },
+  //首页
   updateCom2(){
     let componentPage = this.selectComponent(`#comp${this.data.active}`)
     if (!componentPage) {
@@ -146,6 +148,15 @@ Page({
     componentPage.updatetoday()
     componentPage.gettarget()
   },
+  //我的页面
+  updateCom3(){
+    let componentPage = this.selectComponent(`#comp${this.data.active}`)
+    if (!componentPage) {
+      return
+    }
+    componentPage.getcircle()
+    componentPage.getname()
+  },
   /* 服务器是否需要续费 */
   async getRenew(){
     let query = new Parse.Query("Company")

+ 39 - 5
nova-werun/pages/my/my-profile/index.js

@@ -192,8 +192,8 @@ Page({
         if (dep) {
             if (dep[0].isCheck == true) {
                 this.setData({
-                    name:dep[0].name,
-                    phone:dep[0].mobile,
+                    name: dep[0].name,
+                    phone: dep[0].mobile,
                     departname: dep[0].department.name,
                     selectname: dep[0].center.name,
                     selectobjectid: dep[0].center.objectId,
@@ -234,7 +234,7 @@ Page({
     //上传信息
     async setinfo() {
         if (this.data.title == '资料认证') {
-            if (!this.data.name || !this.data.sex || !this.data.selectobjectid || !this.data.height||!this.data.phone) {
+            if (!this.data.name || !this.data.sex || !this.data.selectobjectid || !this.data.height || !this.data.phone) {
                 wx.showToast({
                     title: '请输入相关内容',
                     icon: 'none',
@@ -333,7 +333,37 @@ Page({
                 }
             }
         }
-
+        if (this.data.title == '完善资料') {
+            if (!this.data.avatar || !this.data.nickname) {
+                wx.showToast({
+                    title: '请输入相关内容',
+                    icon: 'none',
+                    duration: 2000
+                })
+                return
+            }
+            const currentUser = Parse.User.current();
+            let Userquery = new Parse.Query('_User');
+            Userquery.equalTo('company', company);
+            Userquery.equalTo('objectId', currentUser.id);
+            Userquery.notEqualTo('isDeleted', true)
+            let user = await Userquery.first();
+            user.set('avatar', this.data.avatar)
+            user.set('nickname', this.data.nickname)
+            try {
+                user.save()
+                wx.showToast({
+                    title: '提交成功',
+                    icon: 'success',
+                    duration: 2000
+                })
+                setTimeout(() => {
+                    this.goback()
+                }, 2000);
+            } catch {
+                console.log('保存失败');
+            }
+        }
     },
     // 获取部门信息
     async getDepartment() {
@@ -433,7 +463,11 @@ Page({
         });
     },
     //返回上一页
-    goback() {
+  async  goback() {
+        let pages = getCurrentPages(); //页面对象
+        let prevpage = pages[pages.length - 2]; //上一个页面对象
+        console.log(prevpage);
+        await prevpage.updateCom3()
         wx.navigateBack({
             delta: 1 // 返回上一页
         });