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
c6961f10
Commit
c6961f10
authored
Jan 18, 2024
by
全洪江
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
品牌拜访,订单信息
parent
099ae42b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
877 additions
and
0 deletions
+877
-0
quantity.js
src/api/mes/md/quantity.js
+59
-0
visit.js
src/api/mes/md/visit.js
+55
-0
index.vue
src/views/mes/md/quantity/index.vue
+369
-0
index.vue
src/views/mes/md/visit/index.vue
+394
-0
No files found.
src/api/mes/md/quantity.js
0 → 100644
View file @
c6961f10
import
request
from
'@/utils/request'
// 查询【请填写功能名称】列表
export
function
listQuantity
(
query
)
{
return
request
({
url
:
'/md/quantity/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询【请填写功能名称】详细
export
function
getQuantity
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/md/quantity/'
+
brandOrderQuantityId
,
method
:
'get'
})
}
// 新增【请填写功能名称】
export
function
addQuantity
(
data
)
{
return
request
({
url
:
'/md/quantity'
,
method
:
'post'
,
data
:
data
})
}
// 修改【请填写功能名称】
export
function
updateQuantity
(
data
)
{
return
request
({
url
:
'/md/quantity'
,
method
:
'put'
,
data
:
data
})
}
// 删除【请填写功能名称】
export
function
delQuantity
(
brandOrderQuantityId
)
{
return
request
({
url
:
'/md/quantity/'
+
brandOrderQuantityId
,
method
:
'delete'
})
}
//商品id下拉框
export
function
listAllbrand
(){
return
request
({
url
:
'/mes/md/quantity/listBrand'
,
method
:
'get'
})
}
// 查询品牌列表
export
function
listBrand
(
query
)
{
return
request
({
url
:
'/md/quantity/listBrand'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/api/mes/md/visit.js
0 → 100644
View file @
c6961f10
import
request
from
'@/utils/request'
// 查询【请填写功能名称】列表
export
function
listVisit
(
query
)
{
return
request
({
url
:
'/md/visit/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询【请填写功能名称】详细
export
function
getVisit
(
brandVisitId
)
{
return
request
({
url
:
'/md/visit/'
+
brandVisitId
,
method
:
'get'
})
}
// 新增【请填写功能名称】
export
function
addVisit
(
data
)
{
return
request
({
url
:
'/md/visit'
,
method
:
'post'
,
data
:
data
})
}
// 修改【请填写功能名称】
export
function
updateVisit
(
data
)
{
return
request
({
url
:
'/md/visit'
,
method
:
'put'
,
data
:
data
})
}
// 删除【请填写功能名称】
export
function
delVisit
(
brandVisitId
)
{
return
request
({
url
:
'/md/visit/'
+
brandVisitId
,
method
:
'delete'
})
}
// 查询品牌列表
export
function
listBrand
(
query
)
{
return
request
({
url
:
'/md/visit/listBrand'
,
method
:
'get'
,
params
:
query
})
}
\ No newline at end of file
src/views/mes/md/quantity/index.vue
0 → 100644
View file @
c6961f10
This diff is collapsed.
Click to expand it.
src/views/mes/md/visit/index.vue
0 → 100644
View file @
c6961f10
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