40 lines
1.7 KiB
Plaintext
40 lines
1.7 KiB
Plaintext
<!-- 头部 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
|
|
<!-- user/wardrobe/wardrobe.wxml -->
|
|
<view class="wardrobe">
|
|
<form report-submit bindsubmit="openWardrobe">
|
|
<view class="wardrobe_bac flex-con3">
|
|
<view class="flex-con4">
|
|
<view class="wardrobe_title">请输入衣物数量</view>
|
|
<input type="number" class="wardrobe_num" focus="{{true}}" bindinput="numInput" />
|
|
<view class="wardrobe_rem" bind:tap="openTips">
|
|
{{remarks || '添加备注:如洗护要求、衣物特殊污渍等'}}
|
|
</view>
|
|
<button form-type="submit" class="wardrobe_img">
|
|
<image src="/static/img/ygs.png" />
|
|
<span class="img_span"></span>
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</form>
|
|
</view>
|
|
<!-- 弹出层填写备注 -->
|
|
<view wx:if="{{isTips}}" class="tips flex-con3">
|
|
<view>
|
|
<view class="tips_cen">
|
|
<view class="tips_cen_tit">洗护备注</view>
|
|
<view class="flex-con3 mt30">
|
|
<view class="tips_cen_text">
|
|
<textarea maxlength="50" placeholder="添加备注:如洗护要求、衣物特殊污渍等" bindinput="remarksInput" value="{{remarks}}"></textarea>
|
|
<span class="tips_text_span">{{remarks.length}}/50个字</span>
|
|
</view>
|
|
</view>
|
|
<view class="tips_cen_sub" catchtap="closeTips">完成</view>
|
|
</view>
|
|
<view class="tips_img" catchtap="closeTips">
|
|
<image src="/static/img/icon/colse_tips.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |