Commit 43ed46a2 authored by zhengke's avatar zhengke

修改

parent 3ab7d4c4
......@@ -436,7 +436,6 @@
companyId: 0,
searchKey: '', //搜索数据
priceOrderByField:2,
LineTeamIds: '',
PlaceIds: ''
},
time: '',
......@@ -532,7 +531,14 @@
},
onLoad(option) {
if(option&&option.LineTeamIds){
this.msg.LineTeamIds = option.LineTeamIds
// this.msg.LineTeamIds = option.LineTeamIds
let NewArr=[];
NewArr = option.LineTeamIds.split(",");
if(NewArr.length>0){
NewArr.forEach(x=>{
this.msg.team.push(parseInt(x));
})
}
}
if(option&&option.PlaceIds){
this.msg.PlaceIds = option.PlaceIds
......@@ -636,6 +642,9 @@
})
this.optionsTitle[1] = temp
}
if(this.optionsTitle[1]==''){
this.optionsTitle[1] = '线路玩法'
}
this.$forceUpdate()
this.$refs.uDropdown.close();
this.research();
......
......@@ -181,7 +181,7 @@
style="color: #ff3166; font-size: 26rpx"
>{{ item.b2CPrice }}</view
>
<view v-if="item.remainNum == 0" style="padding: 20rpx 0">
<view v-if="item.remainNum <= 0" style="padding: 20rpx 0">
<text style="font-size: 32rpx; font-weight: 600">已售罄</text>
</view>
</view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment