luobisheng
2022-11-10 3286dd82b83adf92cc576300e9e73a4dfb2aa880
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);
}