2026-01-14 16:54:47 +08:00
|
|
|
<t-popup visible="{{visible}}" bind:visible-change="onVisibleChange" placement="{{placement || 'bottom'}}">
|
|
|
|
|
<view class="p-header">
|
|
|
|
|
<view class="title">{{title}}</view>
|
|
|
|
|
<t-icon name="close" size="60rpx" bind:tap="onClose" />
|
2026-01-09 17:15:08 +08:00
|
|
|
</view>
|
|
|
|
|
<view style="max-height: 70vh;overflow: auto;">
|
|
|
|
|
<slot/>
|
|
|
|
|
</view>
|
2026-01-08 17:13:44 +08:00
|
|
|
</t-popup>
|
2026-01-09 15:26:10 +08:00
|
|
|
|