This commit is contained in:
我是个攻城狮
2026-05-27 16:04:37 +08:00
commit b48708dbbf
1721 changed files with 625641 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import request from '@/utils/request'
let IndexApi = {
/*基础配置*/
base(data, errorback) {
return request._post('/shop/index/base', data, errorback);
},
/*商城首页*/
getCount(data, errorback) {
return request._post('/shop/Index/index', data, errorback);
},
}
export default IndexApi;