yshop2.0发布

This commit is contained in:
hupeng
2020-03-07 11:29:36 +08:00
parent c493b3fc68
commit 150d7eb84f
41 changed files with 1339 additions and 149 deletions

34
src/api/yxSystemStore.js Normal file
View File

@ -0,0 +1,34 @@
import request from '@/utils/request'
export function get() {
return request({
url: 'api/yxSystemStore',
method: 'get'
})
}
export function getL(data) {
return request({
url: 'api/yxSystemStore/getL',
method: 'post',
data
})
}
export function del(ids) {
return request({
url: 'api/yxSystemStore/',
method: 'delete',
data: ids
})
}
export function update(data) {
return request({
url: 'api/yxSystemStore',
method: 'put',
data
})
}
export default { get, getL, update, del }