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.
17 lines
549 B
17 lines
549 B
<view class="m-modal" hidden="{{ hidden }}">
|
|
<view class="wrap">
|
|
<view class="title">{{ title }}</view>
|
|
<view class="hint">{{ content }}</view>
|
|
<slot></slot>
|
|
<view wx:if="{{showCancel}}" class="operate">
|
|
<view class="btn btn-off"
|
|
bind:tap="cancel">{{ cancelText }}</view>
|
|
<view class="btn"
|
|
bind:tap="confirm">{{ confirmText }}</view>
|
|
</view>
|
|
<view wx:else class="operate">
|
|
<view class="btn2"
|
|
bind:tap="confirm">{{ confirmText }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|