Files
FreeERP.Applet/miniprogram/pages/components/popup-plugin/popup-plugin.wxml

11 lines
329 B
Plaintext
Raw Normal View History

<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" />
</view>
<view style="max-height: 70vh;overflow: auto;">
<slot/>
</view>
2026-01-08 17:13:44 +08:00
</t-popup>