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
| import request from "@/scripts/httpRequest";
|
| // 检索页面数据列表
| export const showLicence = () => {
| return request({
| url: "/data/api-v/license/show",
| method: "get"
| });
| };
|
| export const getRegCode = (params: any) => {
| return request({
| url: "/data/api-v/license/getRegisterCode",
| method: "post",
| data: params
| });
| };
|
| export const updateLicence = (params: any) => {
| return request({
| url: "/data/api-v/license/save",
| method: "post",
| data: params
| });
| };
|
|