xiaofeijilu.wxml 3.2 KB
<view class="xiaofeipage">
  <view class="xiaofeibox" wx:for="{{xiaofeilist}}" wx:key=''>
    <view class="xiaofeiboxitemtop">{{item.times}}</view>

    <view wx:for="{{item.info}}" wx:key="">

      <view wx:if="{{item.pic_id!=null}}">
        <view class="xiaofeiboxitem" wx:for="{{item.pic_id}}" wx:key="">


          <view class="xiaofeipic">
            <image src="{{item.thumbnail}}"></image>
          </view>

          <view class="xiaofeibottom">
            <view class="xiaofeibotname">{{item.title}}</view>
            <view class="xiaofeimoney" wx:if="{{item.vipprice}}">¥{{item.vipprice}}</view>
            <view class="xiaofeimoney" wx:else>¥{{item.price}}</view>
          </view>
        </view>
      </view>

      <view wx:if="{{item.video_id!=null}}">
        <view class="xiaofeiboxitem" wx:for="{{item.video_id}}" wx:key="">


          <view class="xiaofeipicvideo">
            <image src="{{item.info.thumbnail}}"></image>
            <view class="anniu">
              <image src="/img/anniu.png"></image>
            </view>

          </view>

          <view class="xiaofeibottom">

            <view class="xiaofeivideotop">
              <view class="xiaofeibotname">{{item.info.title}}</view>
              <view class="xiaofeivideotype" wx:if="{{item.info.attr==1}}">2k</view>
              <view class="xiaofeivideotype" wx:if="{{item.info.attr==2}}">4k</view>
              <view class="xiaofeivideotype" wx:if="{{item.info.attr==3}}">8k</view>
            </view>

            <view wx:if="{{item.info.vipprice}}">
              <view class="xiaofeimoney" wx:if="{{item.info.attr==1}}">¥{{item.info.vipprice}}</view>
              <view class="xiaofeimoney" wx:if="{{item.info.attr==2}}">¥{{item.info.four_vipprice}}</view>
              <view class="xiaofeimoney" wx:if="{{item.info.attr==3}}">¥{{item.info.eight_vipprice}}</view>
            </view>
            <view wx:else>
              <view class="xiaofeimoney" wx:if="{{item.info.attr==1}}">¥{{item.info.price}}</view>
              <view class="xiaofeimoney" wx:if="{{item.info.attr==2}}">¥{{item.info.four_price}}</view>
              <view class="xiaofeimoney" wx:if="{{item.info.attr==3}}">¥{{item.info.eight_price}}</view>
            </view>


          </view>
        </view>
      </view>

    </view>

  </view>

  <!-- <view class="xiaofeibox">
    <view class="xiaofeiboxitemtop">2019年10月11日</view>
    <view class="xiaofeiboxitem">


      <view class="xiaofeipic">
        <image src="/img/picimg.png"></image>
      </view>

      <view class="xiaofeibottom">
        <view class="xiaofeibotname">这是图片的名字</view>
        <view class="xiaofeimoney">¥215</view>
      </view>
    </view>

    <view class="xiaofeiboxitem">


      <view class="xiaofeipicvideo">
        <image src="/img/videoimg.png"></image>

        <view class="anniu">
          <image src="/img/anniu.png"></image>
        </view>
      </view>

      <view class="xiaofeibottom">

        <view class="xiaofeivideotop">
          <view class="xiaofeibotname">这是视频的名字的名字</view>
          <view class="xiaofeivideotype">2k</view>
        </view>

        <view class="xiaofeimoney">¥215</view>
      </view>
    </view>
  </view> -->
</view>