index.ts 773 B

12345678910111213141516171819202122232425262728293031323334
  1. // @ts-nocheck
  2. import request from "@/utils/request";
  3. //生成门店平台授权地址
  4. export function generateStoreAuthUrl_Douyin(data) {
  5. return request({
  6. url: "/store/generateStoreAuthUrl_Douyin",
  7. method: "post",
  8. data: data,
  9. });
  10. }
  11. //新增门店品牌
  12. export function addStoreBrand(data) {
  13. return request({
  14. url: "/store/addStoreBrand",
  15. method: "post",
  16. data: data,
  17. });
  18. }
  19. //新增门店
  20. export function addStoreInfo(data) {
  21. return request({
  22. url: "/store/addStoreInfo",
  23. method: "post",
  24. data: data,
  25. });
  26. }
  27. //获取门店
  28. export function queryViewStoreInfo(data) {
  29. return request({
  30. url: "/store/queryViewStoreInfo",
  31. method: "get",
  32. data: data,
  33. });
  34. }