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
790 B
16 lines
790 B
<view class="notice-verify" wx:if="{{visible}}" capture-catch:touchmove="move">
|
|
<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}}" bindinput="textareaInput" placeholder-class="textarea-placeholder" placeholder="屏蔽原因(必填 100字以内)" maxlength="100"/>
|
|
</view>
|
|
<view class="note" wx:if="{{tipVisible}}">{{tipValue}}</view>
|
|
<view class="footer">
|
|
<view class="unpass" wx:if="{{cancelText != ''}}" bindtap="close">{{cancelText}}</view>
|
|
<view class="pass" wx:if="{{confirmText != ''}}" bindtap="confirm">{{confirmText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|