初始化

This commit is contained in:
2023-06-06 17:11:04 +08:00
commit 4fff04b095
113 changed files with 11291 additions and 0 deletions

11
request/public.js Normal file
View File

@@ -0,0 +1,11 @@
// import $http from "@/common/http/index";
import { myRequest } from "@/util/api.js";
// 根据imei号获取店铺信息
export const getShopInfo = (params) => {
return myRequest({
method: "get",
url: `/machine/shop?imei=${params.machineId}`,
data: params,
});
};