123456789101112131415161718192021222324252627 |
- <view class="ab-owner-card-content">
- <view class="card-position">
- <view class="card-flex" onTap="onJumpAreaSelect">
- <view class="pub-icon">
- <view class="card-icon"></view>
- </view>
- <view class="card-title" a:if="{{currentCourt && currentCourt.name}}">{{currentCourt.name}}</view>
- <view class="card-title" a:else>选择小区</view>
- </view>
- </view>
- <view class="card-image" a:if="{{!componentData.componentExtInfo.memberInfo.flag}}"
- style="{{
- componentData.componentExtInfo.noGetCardImg ?
- `backgroundImage: url(${ componentData.componentExtInfo.noGetCardImg.length ==32 ? imgSrcPrefix + componentData.componentExtInfo.noGetCardImg : componentData.componentExtInfo.noGetCardImg})` :
- `backgroundColor: #fff`}}">
- <button-auth item="{{componentData.serviceList[0]}}">
- <view class="get-cards">立即领卡</view>
- </button-auth>
- </view>
- <view a:else
- class="card-image"
- onTap="goToCardDetail"
- data-memberInfo="{{componentData.componentExtInfo.memberInfo}}">
- <!-- 轮播广告 -->
- <advert-wheel componentData="{{componentData}}" showFirst="{{false}}"/>
- </view>
- </view>
|