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
866 B
16 lines
866 B
<view class="notice-verify" wx:if="{{visible}}" catchmove="move" catchtouchmove='true'>
|
|
<view class="content">
|
|
<view class="close" bindtap="closeDialog">
|
|
<image src="../../images/delete.png" />
|
|
</view>
|
|
<view class="title">{{title}}</view>
|
|
<view class="textarea">
|
|
<textarea value="{{textareaValue}}" bindblur="textareaInput" bindinput="textareaInput" placeholder-class="textarea-placeholder" placeholder="请您填写取消报名的原因,提交后您无法参加本次活动"/>
|
|
</view>
|
|
<view class="note" wx:if="{{tipVisible}}">{{tipValue}}</view>
|
|
<view class="footer">
|
|
<view class="unpass" bindtap="unpass" wx:if="{{cancelText != ''}}" bindtap="close">{{cancelText}}</view>
|
|
<view class="pass" bindtap="pass" wx:if="{{confirmText != ''}}" bindtap="confirm">{{confirmText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|