This commit is contained in:
hupeng
2020-04-06 23:19:51 +08:00
parent cbe0a6f592
commit b944b2b2d1
42 changed files with 373 additions and 130 deletions

View File

@ -20,3 +20,5 @@ export function getChartData() {
method: 'get'
})
}

View File

@ -34,3 +34,10 @@ export function chart() {
method: 'get'
})
}
export function getOrderCount() {
return request({
url: 'api/yxStoreOrder/orderCount',
method: 'get'
})
}

View File

@ -22,3 +22,10 @@ export function edit(data) {
data
})
}
export function get() {
return request({
url: 'api/yxSystemGroupData',
method: 'get'
})
}

View File

@ -15,6 +15,13 @@ export function get() {
})
}
export function getAll() {
return request({
url: 'api/yxSystemStore/all',
method: 'get'
})
}
export function getL(data) {
return request({
url: 'api/yxSystemStore/getL',
@ -39,4 +46,4 @@ export function edit(data) {
})
}
export default { getL, add, edit, del, get }
export default { getL, add, edit, del, get, getAll }