city_card/packagecard/sharePage/cardcode.wxml
2023-07-15 14:25:28 +08:00

12 lines
540 B
Plaintext
Executable File

<view wx:if="{{cardImg!=''&&id!=''}}">
<view animation="{{animationData}}" class="content-box" style="height: {{contentHeight}}px;">
<image alt="" animation="{{translateDown}}" class="image2" mode="widthFix" src="{{imgUrl+cardImg}}"></image>
<view animation="{{translateUp}}" class="box">
<image class="image1" mode="widthFix" src="{{imgUrl+id}}"></image>
</view>
</view>
</view>
<view style="margin-top:200rpx;width:100%;" wx:else>
<van-empty description="暂无数据"></van-empty>
</view>