23 lines
417 B
Plaintext
23 lines
417 B
Plaintext
<t-popup
|
|
visible="{{visible}}"
|
|
usingCustomNavbar
|
|
bind:visible-change="onVisibleChange"
|
|
placement="{{cur.value || 'top'}}"
|
|
>
|
|
<view class="block block--{{cur.value}}">{{cur.text}}</view>
|
|
</t-popup>
|
|
|
|
<t-button
|
|
wx:for="{{position}}"
|
|
wx:key="index"
|
|
block
|
|
size="large"
|
|
variant="outline"
|
|
theme="primary"
|
|
bind:tap="handlePopup"
|
|
data-item="{{item}}"
|
|
t-class="wrapper"
|
|
>
|
|
{{item.text}}
|
|
</t-button>
|