You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class="market">
- <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
- <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
- </i-tabs>
- <view>
- <view wx:if="{{list.length!=0}}" class='section' wx:for='{{list}}' wx:key='{{index}}'>
- <view class='detail_msg'>
- <view class='logo'>
- <image src='{{item.coverImg}}'></image>
- </view>
- <view class='info'>
- <view>
- <text>{{item.title}}</text>
- <text wx:if="{{item.orderStatus==0}}">等待付款</text>
- <text wx:if="{{item.orderStatus==1}}">已付款</text>
- <text wx:if="{{item.orderStatus==2}}">取消</text>
- </view>
- <view>{{item.subTitle}}</view>
- <view>
- <text>下单时间:</text>2018-07-10 11:30
- </view>
- </view>
- </view>
- <view class='payment'>
- <view>
- <text>¥{{item.salePrice/100}}</text>
- <text>¥{{item.price/100}}</text>
- </view>
- <view class="btn" data-id="{{item.id}}" bindtap="gotopay">
- <text wx:if="{{item.orderStatus==1}}">查看详情</text>
- <text wx:if="{{item.orderStatus==0}}">支付</text>
- <text wx:if="{{item.orderStatus==2}}">支付</text>
- </view>
- </view>
- </view>
- <view class="dingdan" wx:if="{{list.length==0}}">
- <image src="../../../assets/img/dingdan.png" mode="widthFix"></image>
- <text>暂无订单</text>
- </view>
- </view>
- </view>
|