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
ac9ddd57
Commit
ac9ddd57
authored
Sep 18, 2023
by
shifangwuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
9/18(2)
parent
9f51e4ff
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
116 deletions
+0
-116
application1.js
src/api/production/application1.js
+0
-21
barcodegeneration1.js
src/api/production/barcodegeneration1.js
+0
-57
gxlog1.js
src/api/production/gxlog1.js
+0
-38
No files found.
src/api/production/application1.js
deleted
100644 → 0
View file @
9f51e4ff
import
request
from
'@/utils/request'
// 分页查询要处理的设备
export
function
queryList
(
params
)
{
return
request
({
url
:
'/wbjl/queryWbjls'
,
method
:
'get'
,
params
})
}
// 新增设备新增
export
function
add
(
data
)
{
return
request
({
url
:
'/wbjl/add'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
src/api/production/barcodegeneration1.js
deleted
100644 → 0
View file @
9f51e4ff
import
request
from
'@/utils/request'
// 查询列表
export
function
queryList
(
params
)
{
return
request
({
url
:
'/ysjbcode/queryysjbcodeByPagination'
,
method
:
'get'
,
params
})
}
// 添加基础信息接口
export
function
add
(
data
)
{
return
request
({
url
:
'/ysjbcode/add'
,
method
:
'post'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
// 根据id查询基础信息接口
export
function
getDetailById
(
id
)
{
return
request
({
url
:
'/ysjbcode/detail/'
+
id
,
method
:
'get'
})
}
// 编辑基础信息接口
export
function
updataInfo
(
data
)
{
return
request
({
url
:
'/ysjbcode/update'
,
method
:
'put'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
// 逻辑删除基础信息接口
export
function
deleteLogical
(
id
)
{
return
request
({
url
:
'/ysjbcode/deleteLogical/'
+
id
,
method
:
'delete'
})
}
// 导出信息接口
export
function
exporTable
(
params
)
{
return
request
({
url
:
'/ysjbcode/export'
,
method
:
'get'
,
params
,
responseType
:
'blob'
})
}
src/api/production/gxlog1.js
deleted
100644 → 0
View file @
9f51e4ff
import
request
from
'@/utils/request'
// TODO: 用来进行工序库的出入库记录的 分页+时间+普通字段的查询
export
function
queryList
(
queryParams
,
queryMaps
)
{
console
.
log
(
"queryParams"
,
queryParams
);
console
.
log
(
"queryMaps"
,)
return
request
({
url
:
'/ysgxlog/queryYsGxLogByPagination'
,
method
:
'get'
,
params
:
queryParams
,
data
:
queryMaps
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
/* TODO: 用来查询单项出入库记录的废弃详情信息 */
export
function
findSingleLogDetail
(
singleLogIdAndPn
)
{
return
request
({
url
:
'/wbchemistrylog/detail'
,
method
:
'post'
,
data
:
singleLogIdAndPn
,
headers
:
{
'Content-Type'
:
'application/json;charset=UTF-8'
}
})
}
/* TODO: 用来导出表单信息 */
export
function
exportInventoryRecord
(
params
)
{
return
request
({
url
:
'/wbchemistrylog/export'
,
method
:
'get'
,
params
,
responseType
:
'blob'
})
}
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