Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-pda-scan
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ximai
mes-pda-scan
Commits
0b30b8ee
Commit
0b30b8ee
authored
Jul 09, 2024
by
何远江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
2583d394
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
211 additions
and
194 deletions
+211
-194
index.vue
pages/sendOutGoodsOff/index.vue
+10
-5
index.js
uview-ui/libs/request/index.js
+201
-189
No files found.
pages/sendOutGoodsOff/index.vue
View file @
0b30b8ee
...
...
@@ -3,6 +3,7 @@
<StickyNavBar>
<NavBar
title=
"发货下架"
></NavBar>
<view
class=
"btn"
>
<uni-easyinput
class=
"boxSelect"
prefixIcon=
"search"
v-model=
"lgort"
placeholder=
"请扫描目标仓位"
></uni-easyinput>
<uni-easyinput
prefixIcon=
"search"
:disabled=
"isDisabled"
v-model=
"wxparams"
:focus=
"isFocus"
placeholder=
"请扫描产品包装条码/外箱码"
@
input=
"handleInputPlnr"
></uni-easyinput>
</view>
...
...
@@ -40,6 +41,7 @@
data
()
{
return
{
wxparams
:
""
,
lgort
:
''
,
isDisabled
:
false
,
isFocus
:
false
,
goodsList
:
[],
...
...
@@ -108,10 +110,13 @@
if
(
!
this
.
goodsList
.
length
)
{
return
this
.
$u
.
toast
(
'请扫描需要下架的箱条码/外箱码'
)
}
const
DATUM
=
parseTime
(
new
Date
(),
'{y}{m}{d}'
),
UNAME
=
this
.
vuex_user
.
nickName
,
UZEIT
=
parseTime
(
new
Date
(),
'{h}{i}{s}'
);
const
arr
=
this
.
goodsList
if
(
!
this
.
lgort
)
{
return
this
.
$u
.
toast
(
'请选择目标仓位'
)
}
const
arr
=
this
.
goodsList
.
map
((
item
)
=>
{
item
.
LGORT
=
this
.
lgort
return
item
})
this
.
$u
.
api
.
sapApi
.
sapCasePlnr2
(
arr
)
.
then
((
res
)
=>
{
...
...
uview-ui/libs/request/index.js
View file @
0b30b8ee
import
deepMerge
from
"../function/deepMerge"
;
import
validate
from
"../function/test"
;
import
store
from
'@/store/index.js'
class
Request
{
// 设置全局默认配置
setConfig
(
customConfig
)
{
...
...
@@ -75,22 +76,33 @@ class Request {
}
}
// 处理sap接口
let
url
=
this
.
config
.
baseUrl
if
(
options
.
url
.
indexOf
(
'sap'
)
>
-
1
){
//
console.log('sap')
let
url
=
this
.
config
.
baseUrl
if
(
options
.
url
.
indexOf
(
'sap'
)
>
-
1
)
{
//
#ifdef APP-PLUS
url
=
'http://192.168.3.109:8000'
// #endif
options
.
header
=
{
...
options
.
header
,
'content-type'
:
'application/json;charset=UTF-8'
,
'Authorization'
:
'Basic cmVzdF91c2VyOkJzbjEyMzQ1Ng=='
,
'Authorization'
:
'Basic cmVzdF91c2VyOkJzbjEyMzQ1Ng=='
,
}
// 设置公共参数
if
(
Object
.
prototype
.
toString
.
call
(
options
.
data
)
!=
'[object Array]'
)
{
options
.
data
=
{
...
options
.
data
,
werks
:
store
.
state
.
vuex_user_factory
}
}
else
if
(
options
.
url
.
indexOf
(
'apiPda'
)
>
-
1
){
}
}
else
if
(
options
.
url
.
indexOf
(
'apiPda'
)
>
-
1
)
{
options
.
header
=
{
...
options
.
header
,
'content-type'
:
'application/json;charset=UTF-8'
,
}
url
=
'http://192.168.3.91:8100'
}
else
{
}
else
{
// console.log('mobile')
url
=
'http://192.168.3.91:8100'
}
...
...
@@ -110,7 +122,7 @@ class Request {
this
.
config
.
timer
=
null
;
},
this
.
config
.
loadingTime
);
}
console
.
log
(
'请求参数'
,
options
)
console
.
log
(
'请求参数'
,
options
)
uni
.
request
(
options
);
})
// .catch(res => {
...
...
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