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.
18 lines
1.1 KiB
18 lines
1.1 KiB
<!--other/pages/unableAccept/unableAccept.wxml-->
|
|
<view class="content">
|
|
<view class="content-list">
|
|
<view class="content-title-item"><text style="color: red;">*</text>无法验收原因:</view>
|
|
<textarea class="content-text-area" style="height: 100rpx;" auto-height="true" placeholder="请输入" auto-focus="true" maxlength="-1" model:value="{{reason}}" disabled="{{type == '0'}}"></textarea>
|
|
</view>
|
|
<view class="content-list">
|
|
<view class="content-title-item">上传凭证(最多可上传10张)</view>
|
|
<van-uploader file-list="{{imgPath}}" bind:after-read="afteruploadPhotoRead" data-name="imgPath" bind:delete="deleteImg" preview-size="150rpx" preview-image preview-full-image max-count="10" multiple deletable="{{type == '0'?false:true}}" disabled="{{type == '0'}}"></van-uploader>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 空白底 -->
|
|
<view class="buttom-margin"></view>
|
|
<view class="from-submit-buttom" wx:if="{{type == '1'}}">
|
|
<view class="from-submit-buttom-cancle" bindtap="cancel">取消</view>
|
|
<view class="from-submit-buttom-submit" bindtap="submitFrom" data-type="1">提交</view>
|
|
</view> |