@newview/permission-service 1.2.42 → 1.2.43
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 +0 -3
- package/dist/permission-service.js +9 -39
- package/dist/permission-service.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -1
- package/vite.config.ts +1 -0
package/README.md
CHANGED
|
@@ -7,7 +7,8 @@ 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 {
|
|
10
|
+
import { QueryWrapper, request } from "@newview/infrastructure";
|
|
11
|
+
import { CorePlatformConfigApi, CorePartnerApi } from "@newview/permission-db-api";
|
|
11
12
|
import { Icon, Tag, Checkbox, Divider, CheckboxGroup, Space } from "view-ui-plus";
|
|
12
13
|
import { SelectPlatform, BaseLogin, PersonSel, getUserSealImg } from "@newview/permission-ui";
|
|
13
14
|
import { SignTaskInfoApi } from "@newview/casign-api";
|
|
@@ -15,35 +16,6 @@ import { NvComFormUp } from "@newview/file-ui";
|
|
|
15
16
|
import { ProvinceApi, CityApi, AreaApi, DictionaryDetailApi, DictionaryTypeApi } from "@newview/basics-api";
|
|
16
17
|
import { FileApi, OSSFileApi, FileInfoApi } from "@newview/fileservice-api";
|
|
17
18
|
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
|
-
}
|
|
47
19
|
const propDefine$l = {
|
|
48
20
|
linkParam: {
|
|
49
21
|
// 带入的参数
|
|
@@ -12320,11 +12292,10 @@ class UserinforInstance2 extends BaseInstance {
|
|
|
12320
12292
|
content: "确定要清除该印章图片吗?",
|
|
12321
12293
|
onOk: async () => {
|
|
12322
12294
|
await new FileApi().deleteByToken(this.userSignFormModel.CAUserSealImg);
|
|
12323
|
-
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserSealImg: ""
|
|
12295
|
+
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserSealImg: "" });
|
|
12324
12296
|
const result = this.utilities.parseApiResult(apiResult);
|
|
12325
12297
|
if (result) {
|
|
12326
12298
|
this.userSignFormModel.CAUserSealImg = "";
|
|
12327
|
-
this.userSignFormModel.CAUserSealToken = "";
|
|
12328
12299
|
}
|
|
12329
12300
|
}
|
|
12330
12301
|
});
|
|
@@ -12361,11 +12332,10 @@ class UserinforInstance2 extends BaseInstance {
|
|
|
12361
12332
|
content: "确定要清除该圆章图片吗?",
|
|
12362
12333
|
onOk: async () => {
|
|
12363
12334
|
await new FileApi().deleteByToken(this.userSignFormModel.CAUserYZToken);
|
|
12364
|
-
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserYZImg: ""
|
|
12335
|
+
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserYZImg: "" });
|
|
12365
12336
|
const result = this.utilities.parseApiResult(apiResult);
|
|
12366
12337
|
if (result) {
|
|
12367
12338
|
this.userSignFormModel.CAUserYZImg = "";
|
|
12368
|
-
this.userSignFormModel.CAUserYZToken = "";
|
|
12369
12339
|
}
|
|
12370
12340
|
}
|
|
12371
12341
|
});
|
|
@@ -14241,8 +14211,8 @@ class ModuleInstance2 extends BaseInstance {
|
|
|
14241
14211
|
// 响应式方法 | xxx = () => {}
|
|
14242
14212
|
//#endregion 业务逻辑 END
|
|
14243
14213
|
}
|
|
14244
|
-
const
|
|
14245
|
-
const _withScopeId$1 = (n) => (pushScopeId("data-v-
|
|
14214
|
+
const Module_vue_vue_type_style_index_0_scoped_a73dad2e_lang = "";
|
|
14215
|
+
const _withScopeId$1 = (n) => (pushScopeId("data-v-a73dad2e"), n = n(), popScopeId(), n);
|
|
14246
14216
|
const _hoisted_1$4 = { style: { "height": "650px", "overflow-y": "auto" } };
|
|
14247
14217
|
const _hoisted_2$2 = {
|
|
14248
14218
|
class: "import-module",
|
|
@@ -14512,7 +14482,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14512
14482
|
_: 1
|
|
14513
14483
|
});
|
|
14514
14484
|
}
|
|
14515
|
-
const subModule = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-
|
|
14485
|
+
const subModule = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5], ["__scopeId", "data-v-a73dad2e"]]);
|
|
14516
14486
|
const type = "FeatureCollection";
|
|
14517
14487
|
const features = [
|
|
14518
14488
|
{
|
|
@@ -30200,7 +30170,7 @@ let ProjectUserinforInstance$1 = class ProjectUserinforInstance extends BaseInst
|
|
|
30200
30170
|
}
|
|
30201
30171
|
//#endregion 系统平台 END
|
|
30202
30172
|
};
|
|
30203
|
-
const
|
|
30173
|
+
const Sublinepoins_vue_vue_type_style_index_0_scoped_5bc5e71a_lang = "";
|
|
30204
30174
|
const _hoisted_1$3 = { class: "instree-search" };
|
|
30205
30175
|
const _hoisted_2$1 = { class: "instree-list" };
|
|
30206
30176
|
const _hoisted_3$1 = { class: "nv-flex-1 nv-flex-col map-box" };
|
|
@@ -30469,7 +30439,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30469
30439
|
_: 1
|
|
30470
30440
|
});
|
|
30471
30441
|
}
|
|
30472
|
-
const sublinepoins = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
30442
|
+
const sublinepoins = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-5bc5e71a"]]);
|
|
30473
30443
|
const propDefine$3 = {
|
|
30474
30444
|
Id: {
|
|
30475
30445
|
default: 0,
|