70 lines
2.8 KiB
Plaintext
70 lines
2.8 KiB
Plaintext
<view class="cont">
|
|
<view class="contBack">
|
|
<image class="classBack" src="/static/img/class_back_01.png" mode="scaleToFill"></image>
|
|
<view class="classCircle"></view>
|
|
<view class="rightsCont">
|
|
<view class="rightsCont-tips" wx:if="{{infoData.two_title != null}}">
|
|
{{infoData.two_title}}
|
|
</view>
|
|
<view class="nowrap rightsCont-title">
|
|
{{infoData.three_title == null ? '' : infoData.three_title}}
|
|
</view>
|
|
<view class="nowrap rightsCont-btn">
|
|
{{infoData.two_description}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 提示 -->
|
|
<view class="indexNews indexColor">
|
|
<image src="/static/icon/news_icon.png"></image>
|
|
<view class="marquee_container" style="--marqueeWidth--:-30em">
|
|
<view class="marquee_text {{ noticeData.length > 20 ? 'active' : ''}}">{{noticeData}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 卡券专区 -->
|
|
<view class="special">
|
|
<view class="special-title">卡券专区</view>
|
|
<view class="special-list">
|
|
<block wx:if="{{infoItems.length > 0}}">
|
|
<view bindtap="userNav" class="special-label" wx:for="{{infoItems}}" wx:key="infoItems"
|
|
data-id="{{item.right_config_id}}">
|
|
<view class="special-rebate" wx:if="{{item.label != ''}}">{{item.label}}</view>
|
|
<scroll-view scroll-x class="welfareCont-top" scroll-with-animation>
|
|
<view class="welfareCont-list-img" wx:for="{{item.logos}}" wx:key="logos" wx:for-item="items">
|
|
<image src="{{items}}" mode="aspectFill"></image>
|
|
</view>
|
|
</scroll-view>
|
|
<view class="special-text">
|
|
<view class="nowrap special-name">{{item.title}}</view>
|
|
<view class="special-tips">{{item.subtitle}}</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="legalTips">
|
|
<image src="/static/img/null_icon.png"></image>
|
|
<text>抱歉, 暂无内容</text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 购买须知 -->
|
|
<view class="notice indexColor">
|
|
<view class="noticeTitle" bindtap="noticeTap">
|
|
<view class="noticeTitle-flex">
|
|
<image class="noticeTitle-img" src="/static/icon/notice_icon.png"></image>
|
|
购买前请仔细阅读内容介绍
|
|
</view>
|
|
<image class="noticeTitle-row {{noticeShow ? 'active' : ''}}" src="/static/icon/arrow_right_black.png"></image>
|
|
</view>
|
|
<view class="noticeText {{noticeShow ? 'active' : ''}}">
|
|
<!-- <view class="noticeText-top">内容介绍</view> -->
|
|
<view class="noticeText-cont">
|
|
<rich-text nodes="{{content}}"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view> |