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.
16 lines
449 B
16 lines
449 B
<!--components/modal/modal.wxml-->
|
|
<view class="mask" bindtap="cancel_fn">
|
|
<view class="container" catchtap="no_bubble">
|
|
<view>
|
|
<slot></slot>
|
|
</view>
|
|
<view class="btn">
|
|
<view bindtap="cancel_fn" wx:if="{{ show_cancel_btn }}">
|
|
<text>{{cencel_txt}}</text>
|
|
</view>
|
|
<view bindtap="confirm_fn" class="confirm_fn">
|
|
<text>{{ confirm_txt || '确定' }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|