@newview/permission-service 1.2.40 → 1.2.42
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/README.md +3 -0
- package/dist/permission-service.js +30 -2
- package/dist/permission-service.umd.cjs +1 -1
- package/package.json +1 -2
- package/vite.config.ts +0 -1
package/README.md
CHANGED
|
@@ -7,8 +7,7 @@ var __publicField = (obj, key, value) => {
|
|
|
7
7
|
import { BaseInstance } from "@newview/base-vue";
|
|
8
8
|
import { defineComponent, ref, reactive, onMounted, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createTextVNode, nextTick, toDisplayString, createElementBlock, Fragment, renderList, withDirectives, vShow, pushScopeId, popScopeId, onUnmounted, createCommentVNode, computed, withModifiers } from "vue";
|
|
9
9
|
import { PlatformApi, PlatformGroupApi, ModuleApi, RoleApi, RoleModuleApi, InstitutionRoleApi, InstitutionTypeApi, InstitutioninforApi, InstitutionPlatformApi, InstitutionTreeApi, EnterpriseApi, LoginLogApi, UserinforApi, InstitutionUserApi, UserRoleApi, OAuthApi, UserSignApi, InstitutionLinePointApi, InstitutionPointApi, ProjectSummaryApi, DataBoardModuleApi, DataInistitutionRelationApi, DataInstitutionBoardRelationApi } from "@newview/permission-api";
|
|
10
|
-
import { QueryWrapper, request } from "@newview/infrastructure";
|
|
11
|
-
import { CorePlatformConfigApi, CorePartnerApi } from "@newview/permission-db-api";
|
|
10
|
+
import { BaseApi, QueryWrapper, request } from "@newview/infrastructure";
|
|
12
11
|
import { Icon, Tag, Checkbox, Divider, CheckboxGroup, Space } from "view-ui-plus";
|
|
13
12
|
import { SelectPlatform, BaseLogin, PersonSel, getUserSealImg } from "@newview/permission-ui";
|
|
14
13
|
import { SignTaskInfoApi } from "@newview/casign-api";
|
|
@@ -16,6 +15,35 @@ import { NvComFormUp } from "@newview/file-ui";
|
|
|
16
15
|
import { ProvinceApi, CityApi, AreaApi, DictionaryDetailApi, DictionaryTypeApi } from "@newview/basics-api";
|
|
17
16
|
import { FileApi, OSSFileApi, FileInfoApi } from "@newview/fileservice-api";
|
|
18
17
|
import { NvMap } from "@newview/map";
|
|
18
|
+
class DBCenterBaseApi extends BaseApi {
|
|
19
|
+
get ProxyName() {
|
|
20
|
+
return "CalcPythonApi";
|
|
21
|
+
}
|
|
22
|
+
constructor() {
|
|
23
|
+
super();
|
|
24
|
+
this.addHeader("projectid", 0);
|
|
25
|
+
this.addHeader("devprod", "prod");
|
|
26
|
+
this.addHeader("dbSkey", "08fb72ad2cf661088849ef17fdaab21a");
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
class CorePartnerApi extends DBCenterBaseApi {
|
|
30
|
+
get ControllerName() {
|
|
31
|
+
return "currency";
|
|
32
|
+
}
|
|
33
|
+
constructor() {
|
|
34
|
+
super();
|
|
35
|
+
this.addHeader("tableName", "core_partner");
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
class CorePlatformConfigApi extends DBCenterBaseApi {
|
|
39
|
+
get ControllerName() {
|
|
40
|
+
return "currency";
|
|
41
|
+
}
|
|
42
|
+
constructor() {
|
|
43
|
+
super();
|
|
44
|
+
this.addHeader("tableName", "core_platform_config");
|
|
45
|
+
}
|
|
46
|
+
}
|
|
19
47
|
const propDefine$l = {
|
|
20
48
|
linkParam: {
|
|
21
49
|
// 带入的参数
|