| 12345678910111213141516171819202122232425262728293031323334 |
- // @ts-nocheck
- import request from "@/utils/request";
- //生成门店平台授权地址
- export function generateStoreAuthUrl_Douyin(data) {
- return request({
- url: "/store/generateStoreAuthUrl_Douyin",
- method: "post",
- data: data,
- });
- }
- //新增门店品牌
- export function addStoreBrand(data) {
- return request({
- url: "/store/addStoreBrand",
- method: "post",
- data: data,
- });
- }
- //新增门店
- export function addStoreInfo(data) {
- return request({
- url: "/store/addStoreInfo",
- method: "post",
- data: data,
- });
- }
- //获取门店
- export function queryViewStoreInfo(data) {
- return request({
- url: "/store/queryViewStoreInfo",
- method: "get",
- data: data,
- });
- }
|