Browse Source

bug fixed

master
eternity 3 years ago
parent
commit
97de783802
  1. 14
      pages/club/createClub/createClub.js
  2. 9
      pages/index/editjoin/editjoin.js
  3. 17
      pages/index/editjoin/editjoin.wxml
  4. 10
      pages/index/history/history.js
  5. 19
      pages/index/myjoin/myjoin.js
  6. 2
      pages/release/editactive/editactive.js

14
pages/club/createClub/createClub.js

@ -448,13 +448,13 @@ setclub: function () {
duration: 1000 duration: 1000
}) })
} }
// else if(that.data.tagList.length==0){ else if(!that.data.clubLogo){
// wx.showToast({ wx.showToast({
// title: '主打项目必填', title: '俱乐部logo不能为空',
// icon: 'none', icon: 'none',
// duration: 1000 duration: 1000
// }) })
// } }
else { else {
re.request(Api.creatClub(),postData, header).then((res) => { re.request(Api.creatClub(),postData, header).then((res) => {
console.log(res) console.log(res)

9
pages/index/editjoin/editjoin.js

@ -13,12 +13,17 @@ Page({
*/ */
onLoad: function (options) { onLoad: function (options) {
this.setData({ this.setData({
data:JSON.parse(options.data) data:JSON.parse(options.data)[0]
}) })
console.log(this.data.data) console.log(this.data.data)
}, },
genderChange: function (e) {
let gender = e.detail.value;
this.setData({
gender: gender
});
},
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */

17
pages/index/editjoin/editjoin.wxml

@ -2,23 +2,30 @@
<view class="content"> <view class="content">
<view class="list"> <view class="list">
<view class="title">昵称</view> <view class="title">昵称</view>
<view class="inputbox"><input placeholder="宇航员飞行"/></view> <view class="inputbox"><input placeholder="宇航员飞行" value="{{data.nickname}}"/></view>
</view> </view>
<view class="list"> <view class="list">
<view class="title">手机号</view> <view class="title">手机号</view>
<view class="inputbox"><input placeholder="17222222222"/></view> <view class="inputbox"><input placeholder="17222222222" value="{{data.phone}}"/></view>
</view> </view>
<view class="list"> <view class="list">
<view class="title">性别</view> <view class="title">性别</view>
<view class="inputbox"><input placeholder="男"/></view> <radio-group name="gender" bindchange="genderChange" >
<label>
<radio value="0" color="#FFCB12" checked="{{data.gender==0}}" />女
</label>
<label>
<radio value="1" color="#FFCB12" checked="{{data.gender==1}}" />男
</label>
</radio-group>
</view> </view>
<view class="list"> <view class="list">
<view class="title">真实姓名</view> <view class="title">真实姓名</view>
<view class="inputbox"><input placeholder="李三"/></view> <view class="inputbox"><input placeholder="李三" value="{{data.realname}}"/></view>
</view> </view>
<view class="list"> <view class="list">
<view class="title">身份证号</view> <view class="title">身份证号</view>
<view class="inputbox"><input placeholder="451357199812053364"/></view> <view class="inputbox"><input placeholder="451357199812053364" value="{{data.idcard}}"/></view>
</view> </view>
</view> </view>

10
pages/index/history/history.js

@ -10,16 +10,12 @@ Page({
] ]
}, },
toedit:function(){ toedit:function(){
let data = JSON.stringify( wx.getStorageSync('stroe')) let datas = JSON.stringify( wx.getStorageSync('stroe'))
wx.navigateTo({ wx.navigateTo({
url: '/pages/index/history' url: '../editjoin/editjoin?data='+datas
}) })
console.log(data)
// wx.navigateTo({
// url: '/pages/index/editjoin/editjoin?data='+data
// })
}, },
NowIndex:function(e){ NowIndex:function(e){
// console.log(index); // console.log(index);
let id =e.currentTarget.dataset.id; let id =e.currentTarget.dataset.id;

19
pages/index/myjoin/myjoin.js

@ -70,6 +70,7 @@ Page({
}, },
init: function () { init: function () {
let that = this; let that = this;
console.log(new Info(),'11111')
this.setData({ this.setData({
info: new Info(), info: new Info(),
}); });
@ -88,7 +89,7 @@ Page({
} }
} }
console.log(info.details) console.log(info.details,'33333333')
}, },
addItem: function (e) { addItem: function (e) {
var that = this; var that = this;
@ -285,10 +286,18 @@ Page({
}) })
console.log(bl); console.log(bl);
if (!bl) { if (!bl) {
info.details.push(items) if(info.details.length>1){
this.setData({ info.details.push(items)
info, this.setData({
}) info,
})
}
if(info.details.length==1){
info.details.splice(0,1,items)
this.setData({
info,
})
}
wx.removeStorageSync('item') wx.removeStorageSync('item')
} else { } else {
wx.removeStorageSync('item') wx.removeStorageSync('item')

2
pages/release/editactive/editactive.js

@ -152,6 +152,8 @@ Page({
address:datas.activityAddr, address:datas.activityAddr,
content, content,
costName:costname, costName:costname,
nameInput:datas.activityName,
telInput:datas.clubPhone,
costExplain:datas.costExplain, costExplain:datas.costExplain,
cost:datas.lowestPrice, cost:datas.lowestPrice,
startT: datas.startRegisterTime, startT: datas.startRegisterTime,

Loading…
Cancel
Save