Commit 6bb64fef by LJM

优化

parent 54bfdd72
......@@ -17,7 +17,7 @@
color: #c6c7cc;
}
.uni-input {
width: 80%;
width: 600rpx;
font-size: 18rpx;
color: #484b59;
margin-left: 13rpx;
......@@ -241,7 +241,7 @@
margin-bottom: 17rpx;
margin-top: 35rpx;
transition: all 0.2s ease;
&.pt{
&.pt {
margin-bottom: 35rpx;
}
text:first-child {
......
......@@ -2,7 +2,7 @@
"name" : "wms",
"appid" : "__UNI__655E80D",
"description" : "供应链仓储App",
"versionName" : "2.2.2",
"versionName" : "2.2.3",
"versionCode" : 100000000,
"transformPx" : false,
/* 5+App特有相关 */
......
......@@ -5,14 +5,18 @@
<view class="time-interval-box row verCenter bothSide">
<view class="row verCenter">
<text class="iconfont icon-juxing4"></text>
<picker mode="date" @change="bindTimeChange(1, $event)"><input type="text" class="uni-input" placeholder="请选择起始时间" placeholder-style="color:#919399" v-model="searchParams.create_time_begin" /></picker>
<picker mode="date" @change="bindTimeChange(1, $event)">
<input type="text" class="uni-input" placeholder="请选择起始时间" placeholder-style="color:#919399" v-model="searchParams.create_time_begin" />
</picker>
</view>
<text class="iconfont icon-a-juxing11" @click="clearInput('start')" v-if="searchParams.create_time_begin != ''"></text>
</view>
<view class="time-interval-box row verCenter bothSide">
<view class="row verCenter">
<text class="iconfont icon-juxing4"></text>
<picker mode="date" @change="bindTimeChange(2, $event)"><input type="text" class="uni-input" placeholder="请选择结束时间" placeholder-style="color:#919399" v-model="searchParams.create_time_end" /></picker>
<picker mode="date" @change="bindTimeChange(2, $event)">
<input type="text" class="uni-input" placeholder="请选择结束时间" placeholder-style="color:#919399" v-model="searchParams.create_time_end" />
</picker>
</view>
<text class="iconfont icon-a-juxing11" @click="clearInput('end')" v-if="searchParams.create_time_end != ''"></text>
</view>
......@@ -270,11 +274,15 @@
</view>
<view class="input-wrap column">
<text class="label-title">物流公司:</text>
<view class="input-box"><input type="text" class="uni-input" placeholder-style="color:#919399" placeholder="请输入物流公司(必填)" v-model="formParams.logistics_company" /></view>
<view class="input-box">
<input type="text" class="uni-input" placeholder-style="color:#919399" placeholder="请输入物流公司(必填)" v-model="formParams.logistics_company" />
</view>
</view>
<view class="input-wrap column">
<text class="label-title">物流单号:</text>
<view class="input-box"><input type="text" class="uni-input" placeholder-style="color:#919399" placeholder="请输入物流单号" v-model="formParams.logistics_sn" /></view>
<view class="input-box">
<input type="text" class="uni-input" placeholder-style="color:#919399" placeholder="请输入物流单号" v-model="formParams.logistics_sn" />
</view>
</view>
<view class="input-wrap column">
<text class="label-title">其它信息:</text>
......@@ -746,8 +754,8 @@
* @param {Object} event
*/
handleInput: debounce(function(type, event) {
this.resetChange();
var val = event.target.value;
this.resetChange();
this.searchParams.mobile_register_all_search = '';
this.searchParams.stock_in_with_stock_in_items_inhouse = '';
if (val) {
......
......@@ -65,7 +65,7 @@
</template>
<!--出库单状态为全部拣货-->
<template v-if="item.stock_out_status == 5 || item.stock_out_status == 8">
<template v-if="item.stock_out_status == 5 || item.stock_out_status == 8 || item.stock_out_status == 6 || item.stock_out_status == 7">
<navigator :url="'/pages/picking/record?stock_out_sn=' + item.stock_out_sn" hover-class="none" class="btn2 row rowCenter verCenter">详情</navigator>
</template>
</view>
......
......@@ -15,10 +15,10 @@
<text class="iconfont icon-juxing1"></text>
<template v-if="index == 0">
<template v-if="is_batch">
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="search_keyword" @input="handleInput(1, $event)" maxlength="16" ref="myInput" id="myInput" />
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="search_keyword" @input="handleInput(1, $event)" />
</template>
<template v-else>
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="searchParams.search_keyword" @input="handleInput(1, $event)" maxlength="16" ref="myInput" id="myInput" />
<input class="uni-input" placeholder="请扫描入库标签" placeholder-style="color:#919399" :focus="isFocus" v-model="searchParams.search_keyword" @input="handleInput(1, $event)" />
</template>
</template>
<template v-else-if="index == 1">
......@@ -369,7 +369,7 @@
this.getData();
},
/**
* 单号搜索
* 入库批次号 和 全量搜索函数监听
* @param {Object} event
*/
handleInput: debounce(function(type, event) {
......@@ -463,7 +463,7 @@
this.getData();
this.input_flag = false;
}
}, 500),
}, 800),
/**
* 监听库位编码
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment