From 4ffcf3e6373bebff219fae4ba127f4e448fe914e Mon Sep 17 00:00:00 2001
From: jscyl13849007907 <13849007907@163.com>
Date: Thu, 31 Jul 2025 18:07:43 +0800
Subject: [PATCH] no message
---
root/person/teamManage.vue | 50 ++++++++++++++++++++++++++++++++++++++++------
1 file changed, 44 insertions(+), 6 deletions(-)
diff --git a/root/person/teamManage.vue b/root/person/teamManage.vue
index 086e532..6254f7b 100644
--- a/root/person/teamManage.vue
+++ b/root/person/teamManage.vue
@@ -11,16 +11,40 @@
您有{{ applyNum }}条申请等待审核
- {{ agencyInfo.fullName || agencyInfo.userName }}
+
+
+
+
-
-
+
+
{{ item.aliasName || item.userName }}
-
{{ i }}
+
{{ i }}
-
@@ -129,6 +153,20 @@ export default {
that.applyNum = res;
});
},
+ openChoose(){
+ console.log('openChoose')
+ uni.showActionSheet({
+ itemList: ['添加团队成员', '修改企业资料'],
+ success: (res) => {
+ console.log(res)
+ if(res.tapIndex == 0){
+ this.goPage('/root/person/addOrUpdataMember')
+ }else if(res.tapIndex == 1){
+ this.goPage('/root/person/info?active=1')
+ }
+ }
+ })
+ }
},
};