Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
Project
Project
Details
Activity
Releases
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
胡宝山
template_vue
Commits
a0d4be77
Commit
a0d4be77
authored
Oct 09, 2023
by
shifangwuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
20b88ee1
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
528 additions
and
0 deletions
+528
-0
outbound.js
src/api/outbound.js
+47
-0
index.vue
src/views/processManagement/equipmentOutbound/index.vue
+481
-0
No files found.
src/api/outbound.js
0 → 100644
View file @
a0d4be77
import
request
from
'@/utils/request'
// 查询设备列表
export
function
listdevice
(
query
)
{
return
request
({
url
:
'/wbwarehouse/queryWbWarehouseByPagination'
,
method
:
'get'
,
params
:
query
})
}
export
function
updatadevice
(
data
)
{
return
request
({
url
:
'/wbwarehouse/update'
,
method
:
'put'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
export
function
getDetailById
(
id
)
{
return
request
({
url
:
'/wbwarehouse/detail/'
+
id
,
method
:
'get'
})
}
export
function
add
(
data
)
{
return
request
({
url
:
'/wbwarehouse/add'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
// 出库操作接口
export
function
performOutbound
(
data
)
{
return
request
({
url
:
'/wbwarehouse/canceListByType'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
src/views/processManagement/equipmentOutbound/index.vue
0 → 100644
View file @
a0d4be77
This diff is collapsed.
Click to expand it.
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