Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_pda_Web
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_pda_Web
Commits
55a6cf7b
Commit
55a6cf7b
authored
Jul 15, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
恢复原版(前面意外提交)
parent
4d021618
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
903 deletions
+0
-903
incomeBox.js
src/api/test/incomeBox.js
+0
-104
incomeLabel.js
src/api/test/incomeLabel.js
+0
-76
enterbound.vue
src/views/mytest/enterbound.vue
+0
-723
No files found.
src/api/test/incomeBox.js
deleted
100644 → 0
View file @
4d021618
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询库存管理列表
export
function
listIncomeBox
(
query
)
{
return
request
({
url
:
'/incomebox/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询库存管理详细信息
export
function
getIncomeBox
(
businessId
)
{
return
request
({
url
:
'/incomebox/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增库存管理
export
function
addIncomeBox
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomebox/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改库存管理
export
function
updateIncomeBox
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomebox/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除库存管理
export
function
delIncomeBox
(
businessId
)
{
return
request
({
url
:
'/incomebox/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出库存管理
export
function
exportIncomeBox
(
query
)
{
return
request
({
url
:
'/incomebox/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
// 7.获取单号
export
function
getJcCode
()
{
return
request
({
url
:
'/incomebox/getJcCode'
,
method
:
'get'
})
}
// 8. 查询满足条件的条数
export
function
queryPass
(
lot
)
{
return
request
({
url
:
'/incomebox/queryPass/'
+
lot
,
method
:
'get'
})
}
// 9. 批量新增库存管理
export
function
batchAddIncomeBox
(
data
)
{
return
request
({
url
:
'/incomebox/batchAdd'
,
method
:
'post'
,
data
:
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
// 接口修改传参类型
}
})
}
export
function
checkIsZero
(
data
)
{
return
request
({
url
:
'incomebox/checkIsZero'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
// 接口修改传参类型
}
})
}
src/api/test/incomeLabel.js
deleted
100644 → 0
View file @
4d021618
import
request
from
'@/utils/request'
import
Qs
from
'qs'
/**
* 1. 列表查询
* 2. 查询详细信息
* 3. 新增
* 4. 修改
* 5. 逻辑删除
* 6. 导出
*
*/
// 1. 查询标签管理列表
export
function
listIncomeLabel
(
query
)
{
return
request
({
url
:
'/incomelabel/list'
,
method
:
'get'
,
params
:
query
})
}
// 2. 查询标签管理详细信息
export
function
getIncomeLabel
(
businessId
)
{
return
request
({
url
:
'/incomelabel/detail/'
+
businessId
,
method
:
'get'
})
}
// 3. 新增标签管理
export
function
addIncomeLabel
(
data
)
{
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomelabel/add'
,
method
:
'post'
,
data
:
data
})
}
// 4. 修改标签管理
export
function
updateIncomeLabel
(
data
)
{
const
businessId
=
data
.
businessId
data
=
Qs
.
stringify
(
data
)
return
request
({
url
:
'/incomelabel/update/'
+
businessId
,
method
:
'put'
,
data
})
}
// 5. 逻辑删除标签管理
export
function
delIncomeLabel
(
businessId
)
{
return
request
({
url
:
'/incomelabel/deleteLogical/'
+
businessId
,
method
:
'delete'
})
}
// 6. 导出标签管理
export
function
exportIncomeLabel
(
query
)
{
return
request
({
url
:
'/incomelabel/export'
,
method
:
'get'
,
params
:
query
,
responseType
:
'blob'
})
}
// 7. 查询标签管理详细信息
export
function
findByLocation
(
location
)
{
return
request
({
url
:
'/incomelabel/findByLocation/'
+
location
,
method
:
'get'
})
}
src/views/mytest/enterbound.vue
deleted
100644 → 0
View file @
4d021618
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