Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsApp
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8421f127
authored
Dec 27, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
拣货图片优化
parent
43461798
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
73 additions
and
11 deletions
assets/css/picking/record.scss
assets/css/stockRecheck/record.scss
pages/arrivalRegister/index.vue
pages/picking/record.vue
pages/stockRecheck/record.vue
util/api.js
assets/css/picking/record.scss
View file @
8421f127
...
...
@@ -107,13 +107,37 @@
}
.pick_img_list
{
flex-wrap
:
wrap
;
.
img_lis
t
{
.
defaul
t
{
width
:
120rpx
;
height
:
120rpx
;
background
:
#f5f5f7
;
border-radius
:
10rpx
;
margin-right
:
15rpx
;
margin-bottom
:
15rpx
;
.iconfont
{
font-size
:
60rpx
;
color
:
#c6c7cc
;
}
}
.img_list
{
position
:
relative
;
width
:
120rpx
;
height
:
120rpx
;
background
:
#f5f5f7
;
border-radius
:
10rpx
;
margin-right
:
15rpx
;
margin-bottom
:
15rpx
;
image
{
width
:
120rpx
;
height
:
120rpx
;
}
.iconfont
{
position
:
absolute
;
right
:
0
;
top
:
0
;
font-size
:
30rpx
;
color
:
#ff3700
;
z-index
:
9
;
}
}
}
}
...
...
assets/css/stockRecheck/record.scss
View file @
8421f127
...
...
@@ -90,15 +90,39 @@
color
:
#1969f9
;
}
.pick_img_list
{
flex-wrap
:
wrap
;
.img_list
{
flex-wrap
:
wrap
;
.default
{
width
:
120rpx
;
height
:
120rpx
;
background
:
#f5f5f7
;
border-radius
:
10rpx
;
margin-right
:
15rpx
;
.iconfont
{
font-size
:
60rpx
;
color
:
#c6c7cc
;
}
}
.img_list
{
position
:
relative
;
width
:
120rpx
;
height
:
120rpx
;
background
:
#f5f5f7
;
border-radius
:
10rpx
;
margin-right
:
15rpx
;
margin-bottom
:
15rpx
;
image
{
width
:
120rpx
;
height
:
120rpx
;
background
:
#f5f5f7
;
border-radius
:
10rpx
;
margin-right
:
15rpx
;
margin-bottom
:
15rpx
;
}
.iconfont
{
position
:
absolute
;
right
:
0
;
top
:
0
;
font-size
:
30rpx
;
color
:
#ff3700
;
z-index
:
9
;
}
}
}
}
}
...
...
pages/arrivalRegister/index.vue
View file @
8421f127
...
...
@@ -43,7 +43,7 @@
<input
class=
"uni-input"
placeholder=
"请输入入仓号"
placeholder-style=
"color:#919399"
focus
v-model=
"searchParams.stock_in_with_stock_in_items_inhouse"
@
input=
"handleInput(2, $event)"
:maxlength=
"maxInputLength"
/>
</
template
>
<
template
v-else-if=
"index == 2"
>
<input
class=
"uni-input"
placeholder=
"请输入FedEx"
placeholder-style=
"color:#919399"
focus
v-model=
"searchParams.tracking_no"
@
input=
"handleInput(3, $event)"
style=
"width: 400rpx;"
/>
<input
class=
"uni-input"
placeholder=
"请输入FedEx"
placeholder-style=
"color:#919399"
focus
v-model=
"searchParams.tracking_no"
@
input=
"handleInput(3, $event)"
/>
</
template
>
<text
class=
"iconfont icon-a-juxing11"
@
click=
"clearInput()"
v-if=
"input_flag"
></text>
</view>
...
...
@@ -752,6 +752,7 @@
this
.
searchParams
.
stock_in_with_stock_in_items_inhouse
=
''
;
if
(
val
)
{
if
(
type
==
1
)
{
//全量搜索
this
.
searchParams
.
mobile_register_all_search
=
val
;
}
else
if
(
type
==
2
)
{
//入仓号
...
...
@@ -762,8 +763,13 @@
this
.
searchParams
.
stock_in_with_stock_in_items_inhouse
=
str
.
slice
(
0
,
-
1
);
}
}
else
if
(
type
==
3
)
{
var
last12
=
val
.
slice
(
22
);
// 截取后12位
this
.
searchParams
.
tracking_no
=
last12
;
//FedEx
if
(
val
.
length
>
22
)
{
let
last22
=
val
.
slice
(
22
);
// 截取后22位
this
.
searchParams
.
tracking_no
=
last22
;
}
else
{
this
.
searchParams
.
tracking_no
=
val
;
}
}
this
.
input_flag
=
true
;
}
else
{
...
...
pages/picking/record.vue
View file @
8421f127
This diff is collapsed.
Click to expand it.
pages/stockRecheck/record.vue
View file @
8421f127
This diff is collapsed.
Click to expand it.
util/api.js
View file @
8421f127
...
...
@@ -140,6 +140,14 @@ const API = {
* */
getAllPickedList
:
API_BASE
+
'/api/stockOut/getAllPickedList'
,
/**
* 拣货图片更新
* */
updatePickPics
:
API_BASE
+
'/api/stockOut/updatePickPics'
,
/**
* 复核图片更新
* */
updateCheckedPics
:
API_BASE
+
'/api/stockRecheck/updateCheckedPics'
,
/**
* 取消拣货
* */
cancelPicking
:
API_BASE
+
'/api/stockOut/cancelPicking'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment