Browse Source

2022-6-22修改

胡春雨
master
1913812@qq.com 3 years ago
parent
commit
e1c537a35a
  1. 4
      pages/club/manage/manage.wxml
  2. 8
      pages/index/activeDetail/activeDetail.js
  3. 10
      pages/index/activeDetail/activeDetail.wxml
  4. 3
      pages/index/join/join.wxml
  5. 2
      pages/login.js
  6. 4
      utils/common.js

4
pages/club/manage/manage.wxml

@ -5,10 +5,10 @@
<text>俱乐部名称</text> <text>俱乐部名称</text>
<input type="text" placeholder="请输入俱乐部名称" value="{{company.clubName}}" /> <input type="text" placeholder="请输入俱乐部名称" value="{{company.clubName}}" />
</view> </view>
<view class="formlist"> <!--<view class="formlist">
<text>俱乐部ID</text> <text>俱乐部ID</text>
<view>{{company.clubId}}</view> <view>{{company.clubId}}</view>
</view> </view>-->
<view class="formlistimg"> <view class="formlistimg">
<text>俱乐部logo</text> <text>俱乐部logo</text>
<view class="old" wx:if="{{old}}"> <view class="old" wx:if="{{old}}">

8
pages/index/activeDetail/activeDetail.js

@ -49,7 +49,6 @@ tojion:function(){
activeId:options.id, activeId:options.id,
}); });
that.getActiveDetail(); that.getActiveDetail();
that.getOtherActive();
that.addviews(options.id); that.addviews(options.id);
}, },
getActiveDetail:function(){ getActiveDetail:function(){
@ -80,6 +79,7 @@ tojion:function(){
content content
}) })
this.getclubInfo(datas.clubId); this.getclubInfo(datas.clubId);
this.getOtherActive();
}) })
}, },
Tomap:function(e){ Tomap:function(e){
@ -119,6 +119,11 @@ tojion:function(){
url: '../../club/clubDetail/clubDetail?id='+this.data.company.clubId, url: '../../club/clubDetail/clubDetail?id='+this.data.company.clubId,
}) })
}, },
otherJump: function(e){
wx.navigateTo({
url: 'activeDetail?id='+e.currentTarget.dataset.id
})
},
getclubInfo:function(id){ getclubInfo:function(id){
var that = this; var that = this;
const imgUrl = wx.getStorageSync('imgUrl'); const imgUrl = wx.getStorageSync('imgUrl');
@ -173,7 +178,6 @@ tojion:function(){
}; };
re.request(Api.getOtherActive(), postData, header).then((res) => { re.request(Api.getOtherActive(), postData, header).then((res) => {
let datas = res.data.data; let datas = res.data.data;
console.log(datas);
for(let i=0;i<datas.length;i++){ for(let i=0;i<datas.length;i++){
if(datas[i].activityLogo){ if(datas[i].activityLogo){
datas[i].activityLogo = imgUrl + datas[i].activityLogo datas[i].activityLogo = imgUrl + datas[i].activityLogo

10
pages/index/activeDetail/activeDetail.wxml

@ -113,14 +113,14 @@
</view> </view>
<view class="other-circle" wx:if="{{otheractive.length>0}}"> <view class="other-circle" wx:if="{{otheractive.length>0}}">
<block wx:for="{{otheractive}}" wx:key="otheractive"> <block wx:for="{{otheractive}}" wx:key="otheractive">
<view class="other-list"> <view class="other-list" bindtap="otherJump" data-id="{{item.activityId}}">
<view class="other-left"> <view class="other-left">
<image src="{{item.img}}" mode='aspectFill'></image> <image src="{{item.activityLogo}}" mode='aspectFill'></image>
</view> </view>
<view class="other-right"> <view class="other-right">
<view class="other-name">{{item.intro}}</view> <view class="other-name">{{item.activityName}}</view>
<view class="other-time">{{item.time}}</view> <view class="other-time">{{item.startRegisterTime+'至'+item.endRegisterTime}}</view>
<view class="other-people"><text>报名:{{item.people}}人</text></view> <view class="other-people"><text>报名:{{item.totalRegister}}人</text></view>
</view> </view>
</view> </view>
</block> </block>

3
pages/index/join/join.wxml

@ -19,7 +19,8 @@
<view class="name">{{item.nickname}}<text wx:if="{{item.help==1}}">{{item.helpname}}帮报名</text></view> <view class="name">{{item.nickname}}<text wx:if="{{item.help==1}}">{{item.helpname}}帮报名</text></view>
<view class="time">{{item.createdTime}}</view> <view class="time">{{item.createdTime}}</view>
</view> </view>
<view class="right-bottom">选择费用项</view> <!--<view class="right-bottom">选择费用项</view>-->
<view class="right-bottom">{{item.registerTime}}</view>
</view> </view>
</view> </view>
</block> </block>

2
pages/login.js

@ -22,6 +22,8 @@ Page({
// console.log(res.userInfo) // console.log(res.userInfo)
// } // }
// }) // })
}else{
} }
} }
}) })

4
utils/common.js

@ -1,7 +1,7 @@
// var HOST_URI = 'http://192.168.0.109:8088'; // var HOST_URI = 'http://192.168.0.109:8088';
// var HOST_URI = 'http://192.168.0.104:8088'; // var HOST_URI = 'http://192.168.0.104:8088';
var HOST_URI = 'https://api.tuleduo.cn'; //var HOST_URI = 'https://api.tuleduo.cn';
// var HOST_URI = 'http://127.0.0.1:8088'; var HOST_URI = 'http://127.0.0.1:8088';

Loading…
Cancel
Save