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
e1972a83
authored
Oct 27, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
移动端拣货打印标签显示异常
parent
9517a3e0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
19 deletions
pages/picking/me.vue
pages/picking/sort.vue
pages/picking/me.vue
View file @
e1972a83
...
...
@@ -56,12 +56,12 @@
<!-- 出库单状态为全部锁库,则显示【释放】、【选择】按钮 -->
<template
v-if=
"item.stock_out_status == 3"
>
<view
class=
"btn1 row rowCenter verCenter"
@
click=
"cancelTake(item.stock_out_id)"
>
释放
</view>
<navigator
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn"
hover-class=
"none"
class=
"btn3 row rowCenter verCenter"
>
选择
</navigator>
<navigator
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn
+'&warehouse_id='+item.warehouse_id
"
hover-class=
"none"
class=
"btn3 row rowCenter verCenter"
>
选择
</navigator>
</
template
>
<!--出库单状态为部分拣货-->
<
template
v-if=
"item.stock_out_status == 4"
>
<navigator
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn"
hover-class=
"none"
class=
"btn3 row rowCenter verCenter"
>
选择
</navigator>
<navigator
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id + '&stock_out_sn=' + item.stock_out_sn
+'&warehouse_id='+item.warehouse_id
"
hover-class=
"none"
class=
"btn3 row rowCenter verCenter"
>
选择
</navigator>
</
template
>
<!--出库单状态为全部拣货-->
...
...
@@ -80,9 +80,9 @@
</template>
<
script
>
import
{
API
}
from
'@/util/api.js'
;
import
debounce
from
'lodash/debounce'
;
export
default
{
import
{
API
}
from
'@/util/api.js'
;
import
debounce
from
'lodash/debounce'
;
export
default
{
data
()
{
return
{
input_flag
:
false
,
...
...
@@ -195,9 +195,9 @@ export default {
this
.
page
=
1
;
}
}
};
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
'@/assets/css/picking/me.scss'
;
@import
'@/assets/css/picking/me.scss'
;
</
style
>
\ No newline at end of file
pages/picking/sort.vue
View file @
e1972a83
...
...
@@ -130,7 +130,9 @@
<text
class=
"desc"
>
{{
item
.
remark
}}
</text>
</view>
<template
v-if=
"item.lock_qty !== item.pick_qty"
>
<view
class=
"row"
style=
"width: 100%;justify-content: flex-end;"
><view
class=
"btn row rowCenter verCenter"
@
click=
"showDrawer(1, item)"
>
拣货
</view></view>
<view
class=
"row"
style=
"width: 100%;justify-content: flex-end;"
>
<view
class=
"btn row rowCenter verCenter"
@
click=
"showDrawer(1, item)"
>
拣货
</view>
</view>
</
template
>
</view>
</view>
...
...
@@ -329,7 +331,7 @@
</view>
<!-- 拆货打印标签-->
<view
class=
"print row verCenter"
v-if=
"warehouse_id == 9"
>
<text
class=
"t1"
@
click=
"rePrintTag(1)"
>
拆
货打印标签
</text>
<text
class=
"t1"
@
click=
"rePrintTag(1)"
>
拣
货打印标签
</text>
<view
class=
"print-type-box row rowCenter verCenter"
>
<picker
@
change=
"bindPickerChange"
:value=
"print_style_index"
:range=
"print_style"
class=
"row rowCenter verCenter"
>
<view
class=
"row rowCenter verCenter"
>
...
...
@@ -339,7 +341,9 @@
</picker>
</view>
</view>
<view
class=
"btn row verCenter bothSide"
><view
class=
"btn1 row rowCenter verCenter"
@
click=
"pick(detail.lock_id, formParams.pick_qty, detail.stock_out_item_id)"
>
拣 货
</view></view>
<view
class=
"btn row verCenter bothSide"
>
<view
class=
"btn1 row rowCenter verCenter"
@
click=
"pick(detail.lock_id, formParams.pick_qty, detail.stock_out_item_id)"
>
拣 货
</view>
</view>
</view>
</uni-drawer>
<!-- 按容器拣货详情弹窗 -->
...
...
@@ -467,7 +471,9 @@
</view>
</scroll-view>
</view>
<view
class=
"btn row verCenter bothSide"
><view
class=
"btn1 row rowCenter verCenter"
@
click=
"makeMultiPickingFinish()"
>
拣 货
</view></view>
<view
class=
"btn row verCenter bothSide"
>
<view
class=
"btn1 row rowCenter verCenter"
@
click=
"makeMultiPickingFinish()"
>
拣 货
</view>
</view>
</view>
</uni-drawer>
<!-- 批量拣货弹窗 -->
...
...
@@ -520,11 +526,11 @@
</template>
<
script
>
import
{
API
}
from
'@/util/api.js'
;
import
debounce
from
'lodash/debounce'
;
import
{
createArray
}
from
'@/util/util.js'
;
import
{
API
}
from
'@/util/api.js'
;
import
debounce
from
'lodash/debounce'
;
import
{
createArray
}
from
'@/util/util.js'
;
export
default
{
export
default
{
data
()
{
return
{
isFocus
:
false
,
...
...
@@ -1121,12 +1127,13 @@ export default {
});
}
}
};
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
'@/assets/css/picking/sort.scss'
;
.disabled-color
{
@import
'@/assets/css/picking/sort.scss'
;
.disabled-color
{
background
:
#eaeaef
!important
;
}
}
</
style
>
\ No newline at end of file
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