1、初步对接对接
This commit is contained in:
parent
234af32a1a
commit
d16f460fe8
@ -190,7 +190,7 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view style="padding:0rpx 30rpx;">
|
||||
<!-- <view style="padding:0rpx 30rpx;">
|
||||
<view style="padding-top: 0rpx;">
|
||||
<view style="display: flex;align-items: center;justify-content: space-between;">
|
||||
<view>
|
||||
@ -201,9 +201,9 @@
|
||||
</view>
|
||||
</view>
|
||||
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 40rpx;"></view>
|
||||
</view>
|
||||
</view> -->
|
||||
|
||||
<!-- <view v-for="(item, index) in displayedList" @click="chickTeam(item, index)"
|
||||
<view v-for="(item, index) in signPeopleList" @click="chickTeam(item, index)"
|
||||
style="padding:0rpx 30rpx;">
|
||||
<view style="padding-top: 40rpx;">
|
||||
<view style="display: flex;align-items: center;justify-content: space-between;">
|
||||
@ -215,7 +215,7 @@
|
||||
</view>
|
||||
</view>
|
||||
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 40rpx;"></view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view style="width: 100%;height: 100rpx;"></view>
|
||||
@ -470,7 +470,8 @@
|
||||
return {
|
||||
checkSortType: 0,
|
||||
sortTypeShow: false,
|
||||
signPeopleList: [],//报名人信息
|
||||
signPeopleList: [],//报名人信息列表
|
||||
peopleNum: 0,
|
||||
peopleParams: {
|
||||
page: 1,
|
||||
limit: 15,
|
||||
@ -561,7 +562,8 @@
|
||||
this.pament()
|
||||
}
|
||||
console.log(options.id)
|
||||
this.getDetail()
|
||||
this.getDetail();
|
||||
this.getSignPeople();
|
||||
// this.getPeople()
|
||||
// this.getTime()
|
||||
this.getShare()
|
||||
@ -850,8 +852,9 @@
|
||||
|
||||
//报名人信息列表
|
||||
getSignPeople() {
|
||||
uni.$u.http.get('/api/school.newactivity.activity_join/people_list', {
|
||||
uni.$u.http.get('/api/school.new_activity/people_list', {
|
||||
params: {
|
||||
id: this.id,
|
||||
page: this.peopleParams.page,
|
||||
limit: this.peopleParams.limit,
|
||||
order: this.peopleParams.order,
|
||||
@ -860,6 +863,8 @@
|
||||
}).then(res => {
|
||||
if (res.code == 1) {
|
||||
console.log('peopleList',res.code,res.data);
|
||||
this.signPeopleList = res.data.list;
|
||||
this.peopleNum = res.data.count;
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
|
Loading…
x
Reference in New Issue
Block a user