58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
<view class="tab">
|
|
<view class="tab-item active" wx:if="{{orderId == 5}}">创始会员</view>
|
|
<view class="tab-item active" wx:if="{{orderId == 6}}">合伙人</view>
|
|
</view>
|
|
<view class="rights">
|
|
<view class="card">
|
|
<image class="cardBack" src="{{orderId == 5 ? 'http://api.siyuankunlun.com/storage/materials/2022/08/30/memberBack_3.png':'http://api.siyuankunlun.com/storage/materials/2022/08/30/memberBack_4.png'}}" mode="widthFix"></image>
|
|
<view class="cardText">
|
|
<view class="card-title">
|
|
<image src="http://api.siyuankunlun.com/storage/materials/2022/09/14/memberOpen_icon.png"></image>{{identities.name}}
|
|
</view>
|
|
<view class="price">
|
|
<view class="price-serial">
|
|
{{identities.times.serial}}
|
|
</view>
|
|
<view class="price-left" wx:if="{{identities.is_open}}">
|
|
<view class="price-top">
|
|
到期时间:
|
|
</view>
|
|
<view class="price-times">
|
|
{{identities.times.ended_at}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<scroll-view scroll-x class="list" scroll-with-animation>
|
|
<view class="list-item" wx:for="{{rules}}" wx:key="rules">
|
|
<view class="list-img">
|
|
<image src="{{item.cover}}" mode=""></image>
|
|
</view>
|
|
<view class="list-rights">
|
|
{{item.value}}
|
|
</view>
|
|
<view class="list-name">
|
|
{{item.text}}
|
|
</view>
|
|
<view class="list-tips active" wx:if="{{orderId == 6}}">
|
|
现金
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="suggest">
|
|
<view class="suggest-cont">
|
|
<view class="suggest-title">
|
|
{{orderId == 5 ? '创始会员' : '合伙人'}}权益说明
|
|
</view>
|
|
<view class="suggest-item">
|
|
<view class="suggest-label" wx:for="{{rights}}" wx:key="index">
|
|
<text>{{index + 1}}</text>
|
|
<view class="suggest-text">
|
|
{{item.remark}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |