beefast-mini-deliveryman/components/modalView/index.wxml
2025-02-23 02:10:03 +08:00

17 lines
901 B
Plaintext

<page-container show="{{show}}" position="center" class="custom-modal-view"
custom-style="background-color:transparent;left:27px;width:calc(100vw - 54px);height:200px;{{dynamicsStyle}}">
<view class="modal-view-main">
<view class="title {{titleTextCenter?'center':''}}">{{titleText}}</view>
<textarea class="textarea {{contentMessage?'error':''}}" model:value="{{content}}" row="3" wx:if="{{editable}}"
placeholder="{{contentPlaceholder}}" style="height:{{textareaHeight*2}}rpx"
focus="{{contentFocus}}" animation="{{contentAnimation}}"></textarea>
<view class="text" wx:else>{{content}}</view>
<view class="btns">
<button class="button" plain vx:if="{{isShowCancel}}" bind:tap="cancelButtonTap">{{cancelButtonText}}</button>
<button class="button" type="primary" bind:tap="okButtonTap">{{okButtonText}}</button>
</view>
</view>
</page-container>