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 }}
-
+
{{ item.tel }} - +
@@ -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') + } + } + }) + } }, };