luobisheng
2022-11-18 655698fc92c698766083d3f80fdf2a8e2875ea80
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
26
27
28
29
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);
}