<view class="sort">
<block wx:if="{{showtop}}">
<view style="font-weight:600;font-size:28rpx" bindtap="ordertop">价格
<image src="/images/user/jiangxu.png"></image>
</view>
</block>
<block wx:if="{{showbottom}}">
<view style="font-weight:600;font-size:28rpx" bindtap="orderbottom">价格
<image src="/images/user/shengxu.png"></image>
</view>
</block>
</view>
//data中的数据
showtop:true,
showbottom:false,
ordertop(){
this.setData({
showtop:false,
showbottom:true,
})
},
orderbottom(){
this.setData({
showbottom:false,
showtop:true
})
},