| 1234567891011121314151617 |
- import { myRequest } from "./request.js";
- //修改信息
- export function sellerEdit(data) {
- return myRequest({
- url: "/distribution/seller/edit",
- method: "post",
- data: data,
- });
- }
- export function getInfoByShareCode(data) {
- return myRequest({
- url: "/app/common/distribution/getInfoByShareCode",
- method: "get",
- data: data,
- noToken: true,
- });
- }
|