31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
<!--packageI/brand_resources/cardVoucherInfo/cardVoucherInfo.wxml-->
|
|
|
|
|
|
|
|
<view class="page-container">
|
|
<view class="voucher-list">
|
|
<view class="voucher-item" wx:for="{{cards}}">
|
|
<view class="item-content">
|
|
<view class="item-text">卡号:{{item.card_number}}</view>
|
|
<view class="item-text">卡密:{{item.card_secret}}</view>
|
|
</view>
|
|
<view class="item-btn" data-text="{{'卡号:'+item.card_number+'卡密:'+item.card_secret}}" bindtap="setClipboardData">复制</view>
|
|
</view>
|
|
<view class="voucher-btns">
|
|
<view class="voucher-btn" data-text="{{copy_text}}" bindtap="setClipboardData">一键复制</view>
|
|
</view>
|
|
</view>
|
|
<view class="operating">
|
|
<view class="p">*操作说明</view>
|
|
<view class="p" style="margin-bottom: 48rpx">{{info.description || "暂无"}}</view>
|
|
<view class="p">2.使用方式:</view>
|
|
<view class="p">
|
|
<mp-html content="{{info.content || '暂无'}}"></mp-html>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|