You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
487 B
22 lines
487 B
5 months ago
|
import {
|
||
|
req
|
||
|
} from '../../utils/req.js';
|
||
|
export default {
|
||
|
// 门店列表
|
||
|
storeList(param) {
|
||
|
return req.get("store/app/IndexStore/storeList", param)
|
||
|
},
|
||
|
// 门店详情
|
||
|
storeInfo(param) {
|
||
|
return req.get("store/app/IndexStore/storeInfo", param)
|
||
|
},
|
||
|
// 门店服务列表
|
||
|
storeServiceList(param) {
|
||
|
return req.get("store/app/IndexStore/storeServiceList", param)
|
||
|
},
|
||
|
// 门店评价列表
|
||
|
commentList(param) {
|
||
|
return req.get("store/app/IndexStore/commentList", param)
|
||
|
}
|
||
|
}
|