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

@ -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 }