1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| /**
| * 入驻类相关api
| */
|
| import { http, Method } from "@/utils/request.js";
|
| // 获取当前用户的代理入驻详情
| export function getCompanyDetail(params) {
| return http.request({
| url: "/store/store/apply",
| method: Method.GET,
| params,
| });
| }
|
| // 申请店铺第一步-填写企业信息
| export function applyFirst(params) {
| return http.request({
| url: "/store/store/apply/first",
| method: Method.PUT,
| params,
| });
| }
|
| // 申请店铺第二步-填写银行
| export function applySecond(params) {
| return http.request({
| url: "/store/store/apply/second",
| method: Method.PUT,
| params,
| });
| }
|
| // 申请店铺第三步-填写银行
| export function applyThird(params) {
| return http.request({
| url: "/store/store/apply/third",
| method: Method.PUT,
| params,
| });
| }
|
|