yshop2.0发布
This commit is contained in:
34
src/api/yxSystemStore.js
Normal file
34
src/api/yxSystemStore.js
Normal 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 }
|
Reference in New Issue
Block a user