1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

通过微信开发者工具 商城模板 创建新小程序

This commit is contained in:
2023-03-06 23:52:24 +08:00
parent ada464a8cc
commit c21ff901d5
393 changed files with 52952 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
<t-popup
visible="{{show}}"
placement="bottom"
bind:visible-change="onCancel"
close-btn="{{showCloseButton}}"
>
<view class="popup-content">
<view class="header">
{{title}}
</view>
<view class="options">
<t-cell
wx:for="{{_options}}"
wx:key="title"
t-class="cell"
title="{{item.title}}"
bindclick="onOptionTap"
data-index="{{index}}"
border="{{false}}"
>
<view slot="right-icon">
<t-icon
name="check-circle-filled"
size="36rpx"
color="#fa4126"
wx:if="{{item.checked}}"
/>
<t-icon
name="circle"
size="36rpx"
color="#C7C7C7"
wx:else
/>
</view>
</t-cell>
</view>
<view class="button-bar" wx:if="{{showConfirmButton}}">
<t-button
class="btnWrapper"
wx:if="{{showConfirmButton}}"
t-class="btn"
bindtap="onConfirm"
>
{{confirmButtonText}}
</t-button>
</view>
</view>
</t-popup>
<t-toast id="t-toast" />