租房掌柜微信小程序Api以及小程序前端模板
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.
 
 
 
 
 
 

48 lines
1.4 KiB

<!--pages/clean/complete.wxml-->
<cu-custom bgColor="bg-blue" isBack="{{true}}">
<view slot="backText">返回</view>
<view slot="content">完成打扫</view>
</cu-custom>
<form>
<view class="cu-bar bg-white margin-top">
<view class="action">
图片上传
</view>
<view class="action">
{{imgList.length}}/9
</view>
</view>
<view class="cu-form-group">
<view class="grid col-3 grid-square flex-sub">
<view class="bg-img" wx:for="{{imgList}}" wx:for-index="index" bindtap="viewImage">
<image src="{{item}}" mode="aspectFill"></image>
<view class="cu-tag bg-red" bindtap="delImg" data-index="{{index}}">
<text class='cuIcon-close'></text>
</view>
</view>
<view class="solids" bindtap="chooseImage" wx:if="{{imgList.length < 9}}">
<text class='cuIcon-cameraadd'></text>
</view>
</view>
</view>
<view class="cu-form-group">
<view class="title">日期选择</view>
<picker mode="date" value="{{date}}" start="{{date}}" end="2020-09-01" bindchange="dateChange">
<view class="picker">
{{date}}
</view>
</picker>
</view>
<view class="padding flex flex-direction">
<block wx:if="{{imgList.length > 0}}">
<button class="cu-btn bg-red margin-tb-sm lg" bindtap="formSubmit">提交</button>
</block>
<block wx:else>
<button class="cu-btn bg-red margin-tb-sm lg" disabled>提交</button>
</block>
</view>
</form>