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.

37 lines
1.6 KiB

<!--pages/project/check/index.wxml-->
<view class="out">
<view class="up">
<view class="text">验收意见</view>
<view class="textarea">
<l-textarea border="{{false}}" style="width:100%" indicator="{{false}}" placeholder="请输入验收意见..." bind:lininput="inputValue" />
</view>
</view>
<view class="down">
<view class="text">验收单</view>
<view class="icon">
<l-button icon="order" icon-size="30" height="50" style="margin-right: 20rpx;" bind:lintap="uploadFile" plain>上传文件</l-button>
<l-button icon="picture" icon-size="30" height="50" bind:lintap="uploadImg" plain>上传图片</l-button>
</view>
<view class="fileItems">
<view class="fileItem" wx:for="{{fileList}}" wx:key="index">
<view class="fileIcon">
<l-icon name="{{fileList.type_id==1?'order':'picture'}}" size="40" style="margin: 0 20rpx;" />
<view class="fileInfo">
<text class="fileName">{{item.fileName}}</text>
<text class="fileSize">{{item.fileSize}}</text>
</view>
</view>
<l-icon data-fileid="{{fileList.fileId}}" bindtap="delFile" name="close" size="20" style="margin-right: 20rpx;" />
</view>
</view>
</view>
</view>
<view class="di">
<view style="width: 100%;height: 100%; display: flex;justify-content: center; align-items: center;">
<l-button size="large" bindtap="checkSubmit">提 交</l-button>
</view>
</view>
<l-toast id="submitToast" />