+
+
{{ 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')
+ }
+ }
+ })
+ }
},
};