Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
mes
mes-ui
Commits
e1a1fcb9
Commit
e1a1fcb9
authored
Jan 25, 2024
by
jzc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增品牌报价js文件
parent
5ea92601
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
brandquotation.js
src/api/mes/dv/brandquotation.js
+44
-0
No files found.
src/api/mes/dv/brandquotation.js
View file @
e1a1fcb9
import
request
from
'@/utils/request'
// 查询品牌报价列表
export
function
listBrandQuotation
(
query
)
{
return
request
({
url
:
'/dv/brandQuotation/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询品牌报价详细
export
function
getBrandQuotation
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/dv/brandQuotation/'
+
brandOrderQuantityId
,
method
:
'get'
})
}
// 新增品牌报价
export
function
addBrandQuotation
(
data
)
{
return
request
({
url
:
'/dv/brandQuotation'
,
method
:
'post'
,
data
:
data
})
}
// 修改品牌报价
export
function
updateBrandQuotation
(
data
)
{
return
request
({
url
:
'/dv/brandQuotation'
,
method
:
'put'
,
data
:
data
})
}
// 删除品牌报价
export
function
delBrandQuotation
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/dv/brandQuotation/'
+
brandOrderQuantityId
,
method
:
'delete'
})
}
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