15 lines
672 B
Plaintext
15 lines
672 B
Plaintext
<!--component/confirmDialog/confirmDialog.wxml-->
|
|
<view class='box' catchtouchmove='unMove'>
|
|
<view class='body'>
|
|
<view class='title'>{{title}}</view>
|
|
<view class='message'>{{message}}</view>
|
|
<view class='btn-box'>
|
|
<button wx:if="{{showCancel}}" bindtap='cancel'>{{cancelBtnTitle}}</button>
|
|
<view class='line' wx:if="{{showCancel}}"></view>
|
|
<button open-type='openSetting' wx:if="{{isAuth}}" bindopensetting="openSetting">{{confirmBtnTitle}}</button>
|
|
<button wx:elif="{{isUserInfo}}" bindtap="openUserInfo">{{confirmBtnTitle}}</button>
|
|
<button wx:else bindtap='confirm'>{{confirmBtnTitle}}</button>
|
|
</view>
|
|
</view>
|
|
</view>
|