zhanghua
2025-04-14 829f5116884f98643ffc5b2a548a600d40c0cedb
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
30
31
32
33
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')
}