|
@@ -10,6 +10,7 @@ Page({
|
|
|
data: {
|
|
|
frameStyle: { useTop: false, name: '团队审核', leftArrow: true, useBar: false },
|
|
|
user_id: '',
|
|
|
+ user_name: '',
|
|
|
apply_time: '',
|
|
|
ids: '',
|
|
|
src: '/image/adimges.jpg',
|
|
@@ -30,9 +31,8 @@ Page({
|
|
|
team_id: obj.id,
|
|
|
team_name: obj.name,
|
|
|
apply_time: this.data.apply_time,
|
|
|
- apply_user: obj.user,
|
|
|
-
|
|
|
- apply_id: obj.cid
|
|
|
+ apply_user: this.data.user_id,
|
|
|
+ apply_id: this.data.user_name
|
|
|
}
|
|
|
wx.showModal({
|
|
|
title: '',
|
|
@@ -108,7 +108,7 @@ Page({
|
|
|
});
|
|
|
|
|
|
this.searchHeight()
|
|
|
- this.ids=options.id;
|
|
|
+ this.ids = options.id;
|
|
|
|
|
|
this.watchLogin();
|
|
|
},
|
|
@@ -121,6 +121,7 @@ Page({
|
|
|
success: res => {
|
|
|
this.setData({
|
|
|
user_id: res.data.id,
|
|
|
+ user_name: res.data.nickname
|
|
|
})
|
|
|
|
|
|
wx.request({
|