1、初步对接对接

This commit is contained in:
wangzimeng 2025-08-12 18:30:45 +08:00
parent 234af32a1a
commit d16f460fe8

View File

@ -190,7 +190,7 @@
</view> </view>
</view> </view>
<view style="padding:0rpx 30rpx;"> <!-- <view style="padding:0rpx 30rpx;">
<view style="padding-top: 0rpx;"> <view style="padding-top: 0rpx;">
<view style="display: flex;align-items: center;justify-content: space-between;"> <view style="display: flex;align-items: center;justify-content: space-between;">
<view> <view>
@ -201,9 +201,9 @@
</view> </view>
</view> </view>
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 40rpx;"></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;"> style="padding:0rpx 30rpx;">
<view style="padding-top: 40rpx;"> <view style="padding-top: 40rpx;">
<view style="display: flex;align-items: center;justify-content: space-between;"> <view style="display: flex;align-items: center;justify-content: space-between;">
@ -215,7 +215,7 @@
</view> </view>
</view> </view>
<view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 40rpx;"></view> <view style="height: 1px;background-color: #F0F0F0;width: 100%;margin-top: 40rpx;"></view>
</view> --> </view>
</view> </view>
<view style="width: 100%;height: 100rpx;"></view> <view style="width: 100%;height: 100rpx;"></view>
@ -470,7 +470,8 @@
return { return {
checkSortType: 0, checkSortType: 0,
sortTypeShow: false, sortTypeShow: false,
signPeopleList: [],// signPeopleList: [],//
peopleNum: 0,
peopleParams: { peopleParams: {
page: 1, page: 1,
limit: 15, limit: 15,
@ -561,7 +562,8 @@
this.pament() this.pament()
} }
console.log(options.id) console.log(options.id)
this.getDetail() this.getDetail();
this.getSignPeople();
// this.getPeople() // this.getPeople()
// this.getTime() // this.getTime()
this.getShare() this.getShare()
@ -850,8 +852,9 @@
// //
getSignPeople() { getSignPeople() {
uni.$u.http.get('/api/school.newactivity.activity_join/people_list', { uni.$u.http.get('/api/school.new_activity/people_list', {
params: { params: {
id: this.id,
page: this.peopleParams.page, page: this.peopleParams.page,
limit: this.peopleParams.limit, limit: this.peopleParams.limit,
order: this.peopleParams.order, order: this.peopleParams.order,
@ -860,6 +863,8 @@
}).then(res => { }).then(res => {
if (res.code == 1) { if (res.code == 1) {
console.log('peopleList',res.code,res.data); console.log('peopleList',res.code,res.data);
this.signPeopleList = res.data.list;
this.peopleNum = res.data.count;
} else { } else {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,