You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
export function add(data) {
|
|
|
|
return request({
|
|
|
|
url: 'api/yxSystemStore',
|
|
|
|
method: 'post',
|
|
|
|
data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
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 edit(data) {
|
|
|
|
return request({
|
|
|
|
url: 'api/yxSystemStore',
|
|
|
|
method: 'put',
|
|
|
|
data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export default { getL, add, edit, del, get }
|