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
858 B
17 lines
858 B
<cover-view class="coverview-dialog" wx:if="{{visible}}" catchmove="catchmove">
|
|
<cover-view class="box">
|
|
<cover-view class="close">
|
|
<!-- <cover-image bindtap="close" src="../../images/delete.png" /> -->
|
|
</cover-view>
|
|
<cover-view class="title">{{title}}</cover-view>
|
|
<cover-view class="content">
|
|
<cover-view wx:for="{{content}}" wx:key="index" wx:for-item="item" wx:for-index="index">{{item}}
|
|
</cover-view>
|
|
</cover-view>
|
|
<cover-view wx:if="{{cancelText !== '' || confirmText !== ''}}" class="border"></cover-view>
|
|
<cover-view class="operation">
|
|
<cover-view wx:if="{{cancelText !== ''}}" class="cancel" bindtap="close">{{cancelText}}</cover-view>
|
|
<cover-view wx:if="{{confirmText !== ''}}" class="confirm" bindtap="confirm">{{confirmText}}</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|