luobisheng
2022-11-16 0027df1e43c4e1bdfc2646987e85210a695647e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
}