import http from "@/http";
|
|
export function addStoreInfo(params) {
|
return http.post('/sccg/store/storeinfo/add', params);
|
}
|
|
export function importStoreInfo(params) {
|
return http.post('/sccg/store/storeinfo/add/excel', params);
|
}
|
|
export function deleteStoreInfo(id) {
|
return http.get('/sccg/store/storeinfo/delete/' + id)
|
}
|
|
export function getStoreInfoList(params) {
|
return http.get('/sccg/store/storeinfo/list', params);
|
}
|
|
export function updateStoreInfo(params) {
|
return http.put('/sccg/store/storeinfo/update', params);
|
}
|
|
export function getStoreInfoById(id) {
|
return http.get('/sccg/store/storeinfo/' + id);
|
}
|
|
export function getVideoPoint(params) {
|
return http.get('/sccg/video_point/query', params);
|
}
|
|
export function getStoreScore(id) {
|
return http.get('/sccg/store/storeinfo/' + id + '/storeScore')
|
}
|