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.
39 lines
645 B
39 lines
645 B
![]()
1 year ago
|
import request from '@/utils/request'
|
||
|
export function fetchList(params) {
|
||
|
return request({
|
||
|
url: '/sys/sysStoreRank/list',
|
||
|
method: 'get',
|
||
|
params: params
|
||
|
})
|
||
|
}
|
||
|
export function createSysStoreRank(data) {
|
||
|
return request({
|
||
|
url: '/sys/sysStoreRank/create',
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export function deleteSysStoreRank(id) {
|
||
|
return request({
|
||
|
url: '/sys/sysStoreRank/delete/' + id,
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export function getSysStoreRank(id) {
|
||
|
return request({
|
||
|
url: '/sys/sysStoreRank/' + id,
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export function updateSysStoreRank(id, data) {
|
||
|
return request({
|
||
|
url: '/sys/sysStoreRank/update/' + id,
|
||
|
method: 'post',
|
||
|
data: data
|
||
|
})
|
||
|
}
|
||
|
|