锦水居民端小程序
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.
 

28 lines
936 B

<cover-view class="tip-dialog" wx:if="{{visible}}" bindcatchmove="catchmove">
<cover-view class="content">
<cover-view class="close-dialog">
<cover-image bindtap="closeDialog" src="../../images/IC_guanbi@2x.png" />
</cover-view>
<cover-view class="title">{{title}}</cover-view>
<cover-view class="tip-content">
<cover-view
wx:for="{{content}}"
wx:for-index="index"
wx:for-item="item"
wx:key="{{index}}"
class="content-item">
{{item}}
</cover-view>
</cover-view>
<cover-view class="line"></cover-view>
<cover-view class="operation" wx:if="{{cancelText || confirmText }}">
<cover-view class="cancel" bindtap="closeDialog" wx:if="{{cancelText}}">{{cancelText}}</cover-view>
<cover-view class="confirm" bindtap="confirmDialog" wx:if="{{confirmText}}">{{confirmText}}</cover-view>
</cover-view>
</cover-view>
</cover-view>