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
654 B
16 lines
654 B
<view class="notice" wx:if="{{visible}}" catchmove="catchmove">
|
|
<view class="box">
|
|
<view class="close">
|
|
<!-- <image bindtap="close" src="../../images/delete.png" /> -->
|
|
</view>
|
|
<view class="title">{{title}}</view>
|
|
<view class="content">
|
|
<parser html="{{content}}"></parser>
|
|
</view>
|
|
<view wx:if="{{cancelText !== '' || confirmText !== ''}}" class="border"></view>
|
|
<view class="operation">
|
|
<view wx:if="{{cancelText !== ''}}" class="cancel" bindtap="close">{{cancelText}}</view>
|
|
<view wx:if="{{confirmText !== ''}}" class="confirm" bindtap="confirm">{{confirmText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|