inl-ui 0.0.66 → 0.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/src/api/alarm/alarmRecord.d.ts +10 -10
- package/dist/src/api/alarm/warningConfigure.d.ts +15 -15
- package/dist/src/api/auth/menuManager.d.ts +7 -7
- package/dist/src/api/auth/roleManager.d.ts +6 -6
- package/dist/src/api/auth/userManager.d.ts +9 -9
- package/dist/src/api/boardScreen/powersupply.d.ts +4 -4
- package/dist/src/api/cardCenter.d.ts +9 -9
- package/dist/src/api/dataCenter.d.ts +7 -7
- package/dist/src/api/enumList.d.ts +2 -2
- package/dist/src/api/factory.d.ts +6 -6
- package/dist/src/api/linkage.d.ts +6 -6
- package/dist/src/api/logManager.d.ts +2 -2
- package/dist/src/api/noticeCenter.d.ts +6 -6
- package/dist/src/api/noticeManager.d.ts +9 -9
- package/dist/src/api/org/depManager.d.ts +22 -22
- package/dist/src/api/org/postManager.d.ts +7 -7
- package/dist/src/api/org/teamManager.d.ts +9 -9
- package/dist/src/api/param.d.ts +6 -6
- package/dist/src/api/personalSetting.d.ts +3 -3
- package/dist/src/api/pressureFiltration/filterPressConfiguration.d.ts +2 -2
- package/dist/src/api/pressureFiltration/flowChart.d.ts +2 -2
- package/dist/src/api/pressureFiltration/pressureFiltrationHome.d.ts +7 -7
- package/dist/src/api/pressureFiltration/pressureFiltrationRecord.d.ts +5 -5
- package/dist/src/api/processDrawing.d.ts +10 -10
- package/dist/src/api/product.d.ts +19 -19
- package/dist/src/api/project.d.ts +15 -15
- package/dist/src/api/systemSetting.d.ts +7 -7
- package/dist/src/api/thingInstance.d.ts +22 -22
- package/dist/src/api/thingModel.d.ts +27 -27
- package/dist/src/api/tupu.d.ts +2 -2
- package/dist/src/components/changeTheme/index.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/pageComponent/components/loginBox/index.d.ts +2 -2
- package/dist/src/pageComponent/components/user/userTable.d.ts +1 -1
- package/dist/src/pageComponent/store/index.d.ts +31 -1
- package/dist/src/pageComponent/utils/is.d.ts +1 -1
- package/dist/src/pageComponent/views/login/box.d.ts +2 -2
- package/dist/src/pageComponent/views/processDrawingConfiguration/components/flowList.d.ts +1 -1
- package/dist/src/pageComponent/views/projectManager/utils/index.d.ts +1 -1
- package/dist/src/tpInit/index.d.ts +3 -3
- package/dist/src/utils/publicUtil/index.d.ts +1 -1
- package/dist/src/utils/publicUtil/systemConfig.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -348,7 +348,7 @@ consumeData:{intermediate:/^[0-1]\.[1-5]$/,"electric|1-100.1-2":1,oil:/^0\.[1-5]
|
|
|
348
348
|
var mockData={storageInfo,remoteSwitchhouse,substation,electricMonitor,rawCoalSendIn2,productionPlan2,productionStatistics,mechineTimeDayStatistics,drySeparationPlant,luLingDayStatistics,humanResources,energyConsumptionInfo,logisticsInfo,commodityConsume,deviceOverview,overhaulPlan,smartInspection,remoteElectricity,alarmFaultDanger,productionPlan,washingRawCoalQuantity,washingSystemHandleQuantity,systemRunStatus,realTimeAshWater,consumeAnalysis,alarmInfo,keyEquipmentTesting,opsInfo,hiddenTrouble,faultJudgment,rawCoalSendIn,warehouseStorage,sendInOutCoalList,outTransportStatistics,// videos,
|
|
349
349
|
storageDia,storageDiaSimple};const cardList=[];const coms=[];const createComp=()=>{coms.push(installCom(Layout,"layout"));coms.push(installCom(CardBox,"box"));coms.push(installCom(layoutEditor,"layout-editor"));for(let i of cards){const com=installCom(i,i.name);coms.push(com);cardList.push({name:i.name,cname:i.cname,developer:i.developer,equipment:i.equipment,version: version$1});}};createComp();var index$1={install(app){for(let i of coms){app.use(i);}},cards:cardList,mockData:mockData,version: version$1};
|
|
350
350
|
|
|
351
|
-
var version = "0.0.
|
|
351
|
+
var version = "0.0.66";
|
|
352
352
|
|
|
353
353
|
const config$1 = {
|
|
354
354
|
prefix: "inl"
|
|
@@ -41,16 +41,16 @@ export interface alarmRecordItem {
|
|
|
41
41
|
size: number;
|
|
42
42
|
total: number;
|
|
43
43
|
}
|
|
44
|
-
export declare const getEnum: (url: string) => (enumName: any) => Promise<AxiosResponse<EnumItem[]
|
|
44
|
+
export declare const getEnum: (url: string) => (enumName: any) => Promise<AxiosResponse<EnumItem[]>>;
|
|
45
45
|
/**
|
|
46
46
|
* 手动消警
|
|
47
47
|
* @returns
|
|
48
48
|
*/
|
|
49
|
-
export declare const forceClearAlarm: (url: string) => (data: any) => Promise<AxiosResponse<boolean
|
|
49
|
+
export declare const forceClearAlarm: (url: string) => (data: any) => Promise<AxiosResponse<boolean>>;
|
|
50
50
|
/**
|
|
51
51
|
* 批量消警
|
|
52
52
|
*/
|
|
53
|
-
export declare const batchForceClearAlarm: (url: string) => (data: any) => Promise<AxiosResponse<any
|
|
53
|
+
export declare const batchForceClearAlarm: (url: string) => (data: any) => Promise<AxiosResponse<any>>;
|
|
54
54
|
/**
|
|
55
55
|
* 获取报警记录列表
|
|
56
56
|
* @param obj
|
|
@@ -66,30 +66,30 @@ export declare const batchForceClearAlarm: (url: string) => (data: any) => Promi
|
|
|
66
66
|
* }
|
|
67
67
|
* @returns
|
|
68
68
|
*/
|
|
69
|
-
export declare const alarmRecordList: (url: string) => (obj: any) => Promise<AxiosResponse<alarmRecordItem
|
|
69
|
+
export declare const alarmRecordList: (url: string) => (obj: any) => Promise<AxiosResponse<alarmRecordItem>>;
|
|
70
70
|
/**
|
|
71
71
|
* 获取所有报警播报列表
|
|
72
72
|
*/
|
|
73
|
-
export declare const getWarningSpeechList: (url: string) => () => Promise<AxiosResponse<any
|
|
73
|
+
export declare const getWarningSpeechList: (url: string) => () => Promise<AxiosResponse<any>>;
|
|
74
74
|
/**
|
|
75
75
|
* 切换是否静音报警
|
|
76
76
|
*/
|
|
77
|
-
export declare const setVoiceEnable: (url: string) => (data: any) => Promise<AxiosResponse<any
|
|
77
|
+
export declare const setVoiceEnable: (url: string) => (data: any) => Promise<AxiosResponse<any>>;
|
|
78
78
|
/**
|
|
79
79
|
* 批量静音
|
|
80
80
|
*/
|
|
81
|
-
export declare const batchVoiceDisable: (url: string) => (data: any) => Promise<AxiosResponse<any
|
|
81
|
+
export declare const batchVoiceDisable: (url: string) => (data: any) => Promise<AxiosResponse<any>>;
|
|
82
82
|
/**
|
|
83
83
|
* 获取视频
|
|
84
84
|
*/
|
|
85
|
-
export declare const getVideo: (url: string) => (alarmUuid: string, instanceUuid: string) => Promise<AxiosResponse<any
|
|
85
|
+
export declare const getVideo: (url: string) => (alarmUuid: string, instanceUuid: string) => Promise<AxiosResponse<any>>;
|
|
86
86
|
/**
|
|
87
87
|
* 获取报警详情
|
|
88
88
|
* @param record 记录对象
|
|
89
89
|
*/
|
|
90
|
-
export declare const getAlarmDetail: (url?: string) => (id: any) => Promise<AxiosResponse<any
|
|
90
|
+
export declare const getAlarmDetail: (url?: string) => (id: any) => Promise<AxiosResponse<any>>;
|
|
91
91
|
/**
|
|
92
92
|
* 获取报警类型 map
|
|
93
93
|
*/
|
|
94
|
-
export declare const getAlarmTypeMap: (url: string) => () => Promise<AxiosResponse<any
|
|
94
|
+
export declare const getAlarmTypeMap: (url: string) => () => Promise<AxiosResponse<any>>;
|
|
95
95
|
export declare const getVideoBaseUrl: (url: string) => () => Promise<any>;
|
|
@@ -7,55 +7,55 @@ export declare function setInstance({ serverName, prefix }: {
|
|
|
7
7
|
* @param obj {pageNum: 当前页, pageSize: 每页条数, name: 关键字}
|
|
8
8
|
* @returns
|
|
9
9
|
*/
|
|
10
|
-
export declare const getAllRule: (url: string) => (obj: any) => Promise<import("axios").AxiosResponse<any
|
|
10
|
+
export declare const getAllRule: (url: string) => (obj: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
11
11
|
/**
|
|
12
12
|
* 根据id获取一条规则详细信息
|
|
13
13
|
* @param ruleId id
|
|
14
14
|
* @returns
|
|
15
15
|
*/
|
|
16
|
-
export declare const getRuleConfigureById: (url: string) => (ruleId: string) => Promise<import("axios").AxiosResponse<any
|
|
16
|
+
export declare const getRuleConfigureById: (url: string) => (ruleId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
17
17
|
/**
|
|
18
18
|
* 添加修改报警规则
|
|
19
19
|
* @returns
|
|
20
20
|
*/
|
|
21
|
-
export declare const insertAlarmRule: (url: string) => (obj: any) => Promise<import("axios").AxiosResponse<boolean
|
|
21
|
+
export declare const insertAlarmRule: (url: string) => (obj: any) => Promise<import("axios").AxiosResponse<boolean>>;
|
|
22
22
|
/**
|
|
23
23
|
* 启用停用一个报警规则
|
|
24
24
|
* @param ruleId 报警规则id
|
|
25
25
|
* @returns
|
|
26
26
|
*/
|
|
27
|
-
export declare const updateAvailable: (url: string) => (ruleId: any, available: any) => Promise<import("axios").AxiosResponse<boolean
|
|
27
|
+
export declare const updateAvailable: (url: string) => (ruleId: any, available: any) => Promise<import("axios").AxiosResponse<boolean>>;
|
|
28
28
|
/**
|
|
29
29
|
* 删除一条报警规则
|
|
30
30
|
* @param ruleId id
|
|
31
31
|
* @returns
|
|
32
32
|
*/
|
|
33
|
-
export declare const deleteAlarmRule: (url: string) => (ruleId: any) => Promise<import("axios").AxiosResponse<boolean
|
|
33
|
+
export declare const deleteAlarmRule: (url: string) => (ruleId: any) => Promise<import("axios").AxiosResponse<boolean>>;
|
|
34
34
|
/**
|
|
35
35
|
* 批量上传报警
|
|
36
36
|
*/
|
|
37
|
-
export declare const batchUploadConfigure: (url: string) => (file: File) => Promise<import("axios").AxiosResponse<any
|
|
38
|
-
export declare const baseAll: (url: string) => () => Promise<import("axios").AxiosResponse<any
|
|
39
|
-
export declare const getInstanceListBySystemId: (url: string) => (systemId: number) => Promise<import("axios").AxiosResponse<any
|
|
40
|
-
export declare const getPropertiesListByInstanceId: (url: string) => (instanceId: number) => Promise<import("axios").AxiosResponse<any
|
|
41
|
-
export declare const getDepPeopleTreeList: (url: string) => (keyword?: string) => Promise<import("axios").AxiosResponse<any
|
|
42
|
-
export declare const getEnum: (url: string) => (enumName: any) => Promise<import("axios").AxiosResponse<any[]
|
|
37
|
+
export declare const batchUploadConfigure: (url: string) => (file: File) => Promise<import("axios").AxiosResponse<any>>;
|
|
38
|
+
export declare const baseAll: (url: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
39
|
+
export declare const getInstanceListBySystemId: (url: string) => (systemId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
40
|
+
export declare const getPropertiesListByInstanceId: (url: string) => (instanceId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
41
|
+
export declare const getDepPeopleTreeList: (url: string) => (keyword?: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
42
|
+
export declare const getEnum: (url: string) => (enumName: any) => Promise<import("axios").AxiosResponse<any[]>>;
|
|
43
43
|
/**
|
|
44
44
|
* 系统列表 获取根系统
|
|
45
45
|
*/
|
|
46
|
-
export declare const getRootSystem: () => Promise<import("axios").AxiosResponse<any
|
|
46
|
+
export declare const getRootSystem: () => Promise<import("axios").AxiosResponse<any>>;
|
|
47
47
|
/**
|
|
48
48
|
* 系统列表 获取子系统
|
|
49
49
|
* @param id 系统id
|
|
50
50
|
*/
|
|
51
|
-
export declare const getChildrenSystem: (id: string) => Promise<import("axios").AxiosResponse<any
|
|
51
|
+
export declare const getChildrenSystem: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
52
52
|
/**
|
|
53
53
|
* 获取系统下的设备列表
|
|
54
54
|
* @param id 系统id
|
|
55
55
|
*/
|
|
56
|
-
export declare const getDeviceListBySystemId: (id: string) => Promise<import("axios").AxiosResponse<any
|
|
56
|
+
export declare const getDeviceListBySystemId: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
57
57
|
/**
|
|
58
58
|
* 根据设备code获取信号列表
|
|
59
59
|
* @param code 设备code
|
|
60
60
|
*/
|
|
61
|
-
export declare const getPropertiesByDeviceCode: (code: string) => Promise<import("axios").AxiosResponse<any
|
|
61
|
+
export declare const getPropertiesByDeviceCode: (code: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -6,31 +6,31 @@ declare const api: {
|
|
|
6
6
|
/**
|
|
7
7
|
* 用户权限树- 以树状结构返回菜单项
|
|
8
8
|
*/
|
|
9
|
-
getMenuTreeList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getMenuTreeList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 添加菜单
|
|
12
12
|
*/
|
|
13
|
-
insertMenuRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
insertMenuRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 验证是否有启用的子菜单
|
|
16
16
|
* @param id 菜单id
|
|
17
17
|
*/
|
|
18
|
-
hasValidChildren: (id: string) => Promise<import("axios").AxiosResponse<any
|
|
18
|
+
hasValidChildren: (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
/**
|
|
20
20
|
* 修改菜单
|
|
21
21
|
*/
|
|
22
|
-
editMenuRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
22
|
+
editMenuRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
23
23
|
/**
|
|
24
24
|
* 删除菜单
|
|
25
25
|
*/
|
|
26
|
-
deleteMenuById: (url?: string) => (menuId: number) => Promise<import("axios").AxiosResponse<any
|
|
26
|
+
deleteMenuById: (url?: string) => (menuId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
27
27
|
/**
|
|
28
28
|
* 菜单排序接口
|
|
29
29
|
*/
|
|
30
|
-
sortMenu: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
30
|
+
sortMenu: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
31
31
|
/**
|
|
32
32
|
* 上传JSON文件
|
|
33
33
|
*/
|
|
34
|
-
uploadJSONFile: (url?: string) => (file: File) => Promise<import("axios").AxiosResponse<any
|
|
34
|
+
uploadJSONFile: (url?: string) => (file: File) => Promise<import("axios").AxiosResponse<any>>;
|
|
35
35
|
};
|
|
36
36
|
export default api;
|
|
@@ -6,26 +6,26 @@ declare const api: {
|
|
|
6
6
|
/**
|
|
7
7
|
* 获取角色列表
|
|
8
8
|
*/
|
|
9
|
-
getRoleListByPager: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getRoleListByPager: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 切换角色启用状态
|
|
12
12
|
*/
|
|
13
|
-
switchRoleEnableStatus: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
switchRoleEnableStatus: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 保存角色及权限树
|
|
16
16
|
*/
|
|
17
|
-
insertRole: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
17
|
+
insertRole: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
/**
|
|
19
19
|
* 获取角色权限树- 编辑角色
|
|
20
20
|
*/
|
|
21
|
-
getRoleTreeEdit: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
21
|
+
getRoleTreeEdit: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
22
22
|
/**
|
|
23
23
|
* 获取角色权限树- 新建角色
|
|
24
24
|
*/
|
|
25
|
-
getRoleTree: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
25
|
+
getRoleTree: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
26
26
|
/**
|
|
27
27
|
* 删除角色
|
|
28
28
|
*/
|
|
29
|
-
deleteRoleById: (url?: string) => (roleTypeId: number) => Promise<import("axios").AxiosResponse<any
|
|
29
|
+
deleteRoleById: (url?: string) => (roleTypeId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
30
30
|
};
|
|
31
31
|
export default api;
|
|
@@ -6,28 +6,28 @@ declare const _default: {
|
|
|
6
6
|
/**
|
|
7
7
|
* 获取用户列表 分页
|
|
8
8
|
*/
|
|
9
|
-
getUserList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getUserList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 获取角色下拉列表
|
|
12
12
|
*/
|
|
13
|
-
getRoleList: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
getRoleList: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 获取员工下拉列表
|
|
16
16
|
*/
|
|
17
|
-
getEmployeeList: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
17
|
+
getEmployeeList: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
/**
|
|
19
19
|
* 新增用户
|
|
20
20
|
*/
|
|
21
|
-
insertOneUserRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
21
|
+
insertOneUserRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
22
22
|
/**
|
|
23
23
|
* 修改用户
|
|
24
24
|
*/
|
|
25
|
-
editUserRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
25
|
+
editUserRecord: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
26
26
|
/**
|
|
27
27
|
* 编辑页面重置密码
|
|
28
28
|
* @param userId 用户id
|
|
29
29
|
*/
|
|
30
|
-
resetPassword: (url?: string) => (userId: number) => Promise<import("axios").AxiosResponse<any
|
|
30
|
+
resetPassword: (url?: string) => (userId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
31
31
|
/**
|
|
32
32
|
* 个人设置 修改密码
|
|
33
33
|
*/
|
|
@@ -35,14 +35,14 @@ declare const _default: {
|
|
|
35
35
|
* 查询用户详情|个人设置页
|
|
36
36
|
* userId 个人设置页 此值为null
|
|
37
37
|
*/
|
|
38
|
-
detail: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
38
|
+
detail: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
39
39
|
/**
|
|
40
40
|
* 删除用户
|
|
41
41
|
*/
|
|
42
|
-
deleteUserById: (url?: string) => (id: string) => Promise<import("axios").AxiosResponse<any
|
|
42
|
+
deleteUserById: (url?: string) => (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
43
43
|
/**
|
|
44
44
|
* 获取员工详情 (点击员工姓名)
|
|
45
45
|
*/
|
|
46
|
-
getEmployeeDetailInfo: (url?: string) => (employeeId: number) => Promise<import("axios").AxiosResponse<any
|
|
46
|
+
getEmployeeDetailInfo: (url?: string) => (employeeId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
47
47
|
};
|
|
48
48
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 字典查询
|
|
3
3
|
*/
|
|
4
|
-
declare const listRoomVO: () => Promise<import("axios").AxiosResponse<any
|
|
5
|
-
declare const taskJobDetail: (data: any) => Promise<import("axios").AxiosResponse<any
|
|
6
|
-
declare const getAllCabinetByRoomId: (id: any) => Promise<import("axios").AxiosResponse<any
|
|
7
|
-
declare const getloopDetail: (id: any) => Promise<import("axios").AxiosResponse<any
|
|
4
|
+
declare const listRoomVO: () => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
declare const taskJobDetail: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
|
+
declare const getAllCabinetByRoomId: (id: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
+
declare const getloopDetail: (id: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
8
8
|
export { listRoomVO, taskJobDetail, getAllCabinetByRoomId, getloopDetail };
|
|
@@ -6,38 +6,38 @@ declare const api: {
|
|
|
6
6
|
/**
|
|
7
7
|
* 查询字典
|
|
8
8
|
*/
|
|
9
|
-
getEnumList: (url?: string) => (enumName: string) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getEnumList: (url?: string) => (enumName: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 获取卡片列表
|
|
12
12
|
*/
|
|
13
|
-
cardGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
cardGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 卡片保存或更新
|
|
16
16
|
*/
|
|
17
|
-
cardSaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
17
|
+
cardSaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
/**
|
|
19
19
|
* 卡片删除
|
|
20
20
|
*/
|
|
21
|
-
cardDelete: (url?: string) => (cardId: any) => Promise<import("axios").AxiosResponse<any
|
|
21
|
+
cardDelete: (url?: string) => (cardId: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
22
22
|
/**
|
|
23
23
|
* 卡片启用禁用
|
|
24
24
|
*/
|
|
25
|
-
cardAvailable: (url?: string) => (cardId: any, enable: boolean) => Promise<import("axios").AxiosResponse<any
|
|
25
|
+
cardAvailable: (url?: string) => (cardId: any, enable: boolean) => Promise<import("axios").AxiosResponse<any>>;
|
|
26
26
|
/**
|
|
27
27
|
* 获取页面列表
|
|
28
28
|
*/
|
|
29
|
-
pageGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
29
|
+
pageGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
30
30
|
/**
|
|
31
31
|
* 页面保存或更新
|
|
32
32
|
*/
|
|
33
|
-
pageSaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
33
|
+
pageSaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
34
34
|
/**
|
|
35
35
|
* 页面删除
|
|
36
36
|
*/
|
|
37
|
-
pageDelete: (url?: string) => (pageId: any) => Promise<import("axios").AxiosResponse<any
|
|
37
|
+
pageDelete: (url?: string) => (pageId: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
38
38
|
/**
|
|
39
39
|
* 获取系统列表
|
|
40
40
|
*/
|
|
41
|
-
systemGetList: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
41
|
+
systemGetList: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
42
42
|
};
|
|
43
43
|
export default api;
|
|
@@ -6,27 +6,27 @@ declare const api: {
|
|
|
6
6
|
/**
|
|
7
7
|
* 获取卡片列表
|
|
8
8
|
*/
|
|
9
|
-
authorityGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
authorityGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 添加或编辑权限
|
|
12
12
|
*/
|
|
13
|
-
authoritySaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
authoritySaveOrUpdate: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 删除权限
|
|
16
16
|
*/
|
|
17
|
-
authorityDelete: (url?: string) => (authorityId: string | number) => Promise<import("axios").AxiosResponse<any
|
|
18
|
-
authoritygetCardList: (url?: string) => (authorityId: string) => Promise<import("axios").AxiosResponse<any
|
|
17
|
+
authorityDelete: (url?: string) => (authorityId: string | number) => Promise<import("axios").AxiosResponse<any>>;
|
|
18
|
+
authoritygetCardList: (url?: string) => (authorityId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
/**
|
|
20
20
|
* 获取权限用户详情
|
|
21
21
|
*/
|
|
22
|
-
userAuthorityGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
22
|
+
userAuthorityGetList: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
23
23
|
/**
|
|
24
24
|
* 添加权限用户
|
|
25
25
|
*/
|
|
26
|
-
userAuthorityAdd: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
26
|
+
userAuthorityAdd: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
27
27
|
/**
|
|
28
28
|
* 删除权限用户
|
|
29
29
|
*/
|
|
30
|
-
userAuthorityDelete: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any
|
|
30
|
+
userAuthorityDelete: (url?: string) => (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
31
31
|
};
|
|
32
32
|
export default api;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 字典查询
|
|
3
3
|
*/
|
|
4
|
-
declare const getDepPeopleTreeList: () => Promise<import("axios").AxiosResponse<any
|
|
5
|
-
declare const getDepEmployeeTreeList: () => Promise<import("axios").AxiosResponse<any
|
|
4
|
+
declare const getDepPeopleTreeList: () => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
declare const getDepEmployeeTreeList: () => Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
export { getDepEmployeeTreeList };
|
|
7
7
|
export default getDepPeopleTreeList;
|
|
@@ -11,26 +11,26 @@ declare const api: {
|
|
|
11
11
|
/**
|
|
12
12
|
* 厂家树
|
|
13
13
|
*/
|
|
14
|
-
getList: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
14
|
+
getList: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
15
15
|
/**
|
|
16
16
|
* 详情
|
|
17
17
|
*/
|
|
18
|
-
findOne: (url?: string) => (id: string) => Promise<import("axios").AxiosResponse<any
|
|
18
|
+
findOne: (url?: string) => (id: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
19
|
/**
|
|
20
20
|
* 更新
|
|
21
21
|
*/
|
|
22
|
-
update: (urlObj: Partial<IUrlObj>) => (data: any, type: string, sort: string) => Promise<import("axios").AxiosResponse<any
|
|
22
|
+
update: (urlObj: Partial<IUrlObj>) => (data: any, type: string, sort: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
23
23
|
/**
|
|
24
24
|
* 删除
|
|
25
25
|
*/
|
|
26
|
-
remove: (urlObj: Partial<IUrlObj>) => (id: string, sort: string) => Promise<import("axios").AxiosResponse<any
|
|
26
|
+
remove: (urlObj: Partial<IUrlObj>) => (id: string, sort: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
27
27
|
/**
|
|
28
28
|
* 名字 code 唯一性
|
|
29
29
|
*/
|
|
30
|
-
compareCondition: (urlObj: Partial<IUrlObj>) => (data: any, type: string) => Promise<import("axios").AxiosResponse<any
|
|
30
|
+
compareCondition: (urlObj: Partial<IUrlObj>) => (data: any, type: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
31
31
|
/**
|
|
32
32
|
* 获取用户信息
|
|
33
33
|
*/
|
|
34
|
-
getUserInfo: (url?: string) => (userId: string) => Promise<import("axios").AxiosResponse<any
|
|
34
|
+
getUserInfo: (url?: string) => (userId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
35
35
|
};
|
|
36
36
|
export default api;
|
|
@@ -5,26 +5,26 @@ declare const linkApi: {
|
|
|
5
5
|
/**
|
|
6
6
|
* 根据查询条件获取模式列表
|
|
7
7
|
*/
|
|
8
|
-
getModeList(data: any): Promise<import("axios").AxiosResponse<any
|
|
8
|
+
getModeList(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
9
9
|
/**
|
|
10
10
|
* 获取拼接方式下拉框
|
|
11
11
|
*/
|
|
12
|
-
getSplicingList(): Promise<import("axios").AxiosResponse<any
|
|
12
|
+
getSplicingList(): Promise<import("axios").AxiosResponse<any>>;
|
|
13
13
|
/**
|
|
14
14
|
* 新建模式
|
|
15
15
|
*/
|
|
16
|
-
insertMode(data: any): Promise<import("axios").AxiosResponse<any
|
|
16
|
+
insertMode(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
17
17
|
/**
|
|
18
18
|
* 修改模式
|
|
19
19
|
*/
|
|
20
|
-
updateMode(data: any): Promise<import("axios").AxiosResponse<any
|
|
20
|
+
updateMode(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
21
21
|
/**
|
|
22
22
|
* 获取模式记录详情
|
|
23
23
|
*/
|
|
24
|
-
getModeDetail(id: number): Promise<import("axios").AxiosResponse<any
|
|
24
|
+
getModeDetail(id: number): Promise<import("axios").AxiosResponse<any>>;
|
|
25
25
|
/**
|
|
26
26
|
* 删除模式记录
|
|
27
27
|
*/
|
|
28
|
-
deleteModeById(id: number): Promise<import("axios").AxiosResponse<any
|
|
28
|
+
deleteModeById(id: number): Promise<import("axios").AxiosResponse<any>>;
|
|
29
29
|
};
|
|
30
30
|
export default linkApi;
|
|
@@ -6,10 +6,10 @@ declare const api: {
|
|
|
6
6
|
/**
|
|
7
7
|
*分页查询日志
|
|
8
8
|
*/
|
|
9
|
-
getList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getList: (url?: string) => (params: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
*查询日志标题
|
|
12
12
|
*/
|
|
13
|
-
getHead: (url?: string) => () => Promise<import("axios").AxiosResponse<any
|
|
13
|
+
getHead: (url?: string) => () => Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
};
|
|
15
15
|
export default api;
|
|
@@ -2,26 +2,26 @@ declare const noticeCenterApi: {
|
|
|
2
2
|
/**
|
|
3
3
|
* 通知记录列表
|
|
4
4
|
*/
|
|
5
|
-
getRecordList(data: any): Promise<import("axios").AxiosResponse<any
|
|
5
|
+
getRecordList(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
/**
|
|
7
7
|
* 重发消息给指定用户
|
|
8
8
|
*/
|
|
9
|
-
resendTouser(data: any): Promise<import("axios").AxiosResponse<any
|
|
9
|
+
resendTouser(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 重发消息
|
|
12
12
|
*/
|
|
13
|
-
resend(data: any): Promise<import("axios").AxiosResponse<any
|
|
13
|
+
resend(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 发送消息
|
|
16
16
|
*/
|
|
17
|
-
sendMessage(data: any): Promise<import("axios").AxiosResponse<any
|
|
17
|
+
sendMessage(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
/**
|
|
19
19
|
* 删除消息
|
|
20
20
|
*/
|
|
21
|
-
recordDelete(id: any): Promise<import("axios").AxiosResponse<any
|
|
21
|
+
recordDelete(id: any): Promise<import("axios").AxiosResponse<any>>;
|
|
22
22
|
/**
|
|
23
23
|
* 修改通知内容
|
|
24
24
|
*/
|
|
25
|
-
recordUpdate(data: any): Promise<import("axios").AxiosResponse<any
|
|
25
|
+
recordUpdate(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
26
26
|
};
|
|
27
27
|
export default noticeCenterApi;
|
|
@@ -2,38 +2,38 @@ declare const noticeManagerApi: {
|
|
|
2
2
|
/**
|
|
3
3
|
* 字典查询
|
|
4
4
|
*/
|
|
5
|
-
getEnumList(enumName: any): Promise<import("axios").AxiosResponse<any
|
|
5
|
+
getEnumList(enumName: any): Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
/**
|
|
7
7
|
* 获取通道列表
|
|
8
8
|
*/
|
|
9
|
-
getChannelList(): Promise<import("axios").AxiosResponse<any
|
|
9
|
+
getChannelList(): Promise<import("axios").AxiosResponse<any>>;
|
|
10
10
|
/**
|
|
11
11
|
* 新增通道
|
|
12
12
|
*/
|
|
13
|
-
getChannelAdd(data: any): Promise<import("axios").AxiosResponse<any
|
|
13
|
+
getChannelAdd(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
14
14
|
/**
|
|
15
15
|
* 更新通道
|
|
16
16
|
*/
|
|
17
|
-
getChannelUpdate(data: any): Promise<import("axios").AxiosResponse<any
|
|
17
|
+
getChannelUpdate(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
18
18
|
/**
|
|
19
19
|
* 获取通道详情信息
|
|
20
20
|
*/
|
|
21
|
-
getChannelDetail(id: any): Promise<import("axios").AxiosResponse<any
|
|
21
|
+
getChannelDetail(id: any): Promise<import("axios").AxiosResponse<any>>;
|
|
22
22
|
/**
|
|
23
23
|
* 新增通道详情信息
|
|
24
24
|
*/
|
|
25
|
-
getChannelDetailAdd(data: any): Promise<import("axios").AxiosResponse<any
|
|
25
|
+
getChannelDetailAdd(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
26
26
|
/**
|
|
27
27
|
* 获取模板
|
|
28
28
|
*/
|
|
29
|
-
getChannelTemplateList(data: any): Promise<import("axios").AxiosResponse<any
|
|
29
|
+
getChannelTemplateList(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
30
30
|
/**
|
|
31
31
|
* 新增模板
|
|
32
32
|
*/
|
|
33
|
-
getChannelTemplateAdd(data: any): Promise<import("axios").AxiosResponse<any
|
|
33
|
+
getChannelTemplateAdd(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
34
34
|
/**
|
|
35
35
|
* 删除模板
|
|
36
36
|
*/
|
|
37
|
-
getChannelTemplateDelete(id: any): Promise<import("axios").AxiosResponse<any
|
|
37
|
+
getChannelTemplateDelete(id: any): Promise<import("axios").AxiosResponse<any>>;
|
|
38
38
|
};
|
|
39
39
|
export default noticeManagerApi;
|