123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <view class="page">
- <view class="outer1">
- <view class="layer5">
- <view class="section3">
- <text lines="1" class="word3">水洗码</text>
- <view class="group1">
- <view class="box1">
- <!-- <text lines="1" class="txt1">{{inputval}}</text> -->
- <input class="txt1" type="text" name="wnumber" placeholder="请扫描水洗码" bindinput="bindinput" value="{{inputval}}"></input>
- <view class="box2"></view>
- </view>
- <view class="box3" bindtap="getScancode">
- <view class="box4">
- <image src="/image/build/scan.png"></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="layer6">
- <view class="outer2-0">
- <van-cell title="衣物分类" is-link value="{{title}}" url="" center custom-class="lipinput" value-class="vstyle" url="/pages/sorting/seled/seled?wnumber={{inputval}}" />
- </view>
- </view>
- <view class="layer6">
- <view class="outer2-0">
- <!-- <van-cell-group>
- <van-field label="颜色" type="text" required clearable value="{{ color }}" placeholder-style="text-align: right;" placeholder="请输入颜色" border="{{ false }}" bind:input="inputw" input-class="lipinput" />
- </van-cell-group> -->
- <van-cell title="颜色" is-link value="{{ispick}}" center value-class="vstyle" custom-class="lipinput" bind:click="toPick" />
-
- <!-- <view class="main1-0">
- <text lines="1" class="word4-0">衣物分类</text>
- <input type="text" class="lipinput vstyle" name="color" value="{{color}}" bindinput="bindinputcolor" />
- </view> -->
- </view>
- </view>
- <view class="layer6">
- <view class="outer2-0">
- <van-cell title="瑕疵" is-link value="{{rustr}}" center value-class="vasty" custom-class="lipinput" bind:click="toShow" />
- </view>
- </view>
- <view class="layer6">
- <view class="outer2-0">
- <van-cell title="洗护标准" is-link value="{{str[results]}}" arrow-direction="down" value-class="vasty" center bind:click="toShows" custom-class="lipinput" />
- </view>
- </view>
- <view class="layer6">
- <view class="outer2-0">
- <van-cell title="是否加工" is-link value="{{isworkstr=='a'?'请选择':iswork[isworkstr]}}" bind:click="isshows" arrow-direction="down" center value-class="vasty" custom-class="lipinput" />
- </view>
- </view>
- <view class="layer7">
- <view class="mod1">
- <text lines="1" class="txt2">分拣拍照</text>
- <view class="group2">
- <van-uploader file-list="{{ fileList }}" bind:after-read="afterRead" bind:delete="delete" deletable="true" />
- </view>
- </view>
- </view>
- <view class="layer8">
- <view class="main2">
- <button bindtap="clos" class="section4">
- <text lines="1" class="word7">取消</text>
- </button>
- <button bindtap="addSoting" class="section5">
- <text lines="1" class="txt3">提交</text>
- </button>
- </view>
- </view>
- </view>
- </view>
- <!-- <van-popup show="{{ pick }}" bind:close="toPick" custom-style="height: 50%;padding-bottom:20rpx" position="bottom">
- <color-picker bindchangecolor="pickColor" initColor="{{rgb}}" show="{{pick}}" />
- </van-popup> -->
- <van-popup show="{{ show }}" bind:close="toShow" position="bottom" custom-style="height: 30%;">
- <van-checkbox-group value="{{ result }}" bind:change="onChange">
- <van-cell-group>
- <van-cell wx:for="{{ flaws }}" wx:key="index" title="{{ item.name }}" value-class="value-class" clickable data-index="{{ index }}">
- <van-checkbox catch:tap="noop" data-name="{{item.name}}" class="checkboxes-{{ index }}" name="{{ item.id }}" />
- </van-cell>
- </van-cell-group>
- </van-checkbox-group>
- </van-popup>
- <van-popup show="{{ shows }}" bind:close="toShows" position="bottom" custom-style="height: 30%;">
- <van-radio-group value="{{ standard_id }}" bind:change="Change">
- <van-cell-group>
- <van-cell wx:for="{{ standard }}" wx:key="index" title="{{ item.title }}" clickable data-name="{{item.title}}">
- <van-radio slot="right-icon" name="{{item.id}}" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- </van-popup>
- <van-popup show="{{ isshows }}" bind:close="isshows" position="bottom" custom-style="height: 30%;">
- <van-radio-group value="{{ is_machining }}" bind:change="isChange">
- <van-cell-group>
- <van-cell wx:for="{{ iswork }}" wx:key="index" title="{{ item }}" clickable data-name="{{item}}">
- <van-radio slot="right-icon" name="{{index}}" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- </van-popup>
- <van-popup show="{{ pick }}" bind:close="toPick" custom-style="height: 35%;padding-bottom:20rpx" position="bottom">
- <van-radio-group value="{{ ispick }}" bind:change="pickColor">
- <van-cell-group>
- <van-cell wx:for="{{ color }}" wx:key="index" title="{{ item.color }}" clickable data-name="{{item.color}}">
- <van-radio slot="right-icon" name="{{item.color}}"/>
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- </van-popup>
|