You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
400 B
13 lines
400 B
<view class="m-modal" hidden="{{ hidden }}">
|
|
<view class="wrap">
|
|
<view class="title">{{ title }}</view>
|
|
<view class="hint">{{ content }}</view>
|
|
<slot></slot>
|
|
<view class="operate">
|
|
<view class="btn btn-off"
|
|
bind:tap="cancel">取消</view>
|
|
<button class="btn" plain="{{false}}"
|
|
bind:tap="confirm">确认</button>
|
|
</view>
|
|
</view>
|
|
</view>
|