tsv2-library 1.0.61-alpha.46 → 1.0.61-alpha.48
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/src/components/v2/DialogSelectAsset/DialogSelectAsset.vue.d.ts +1 -1
- package/dist/src/services/tree.service.d.ts +1 -0
- package/dist/tsv2-library.es.js +5 -4
- package/dist/tsv2-library.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/v2/DialogSelectAsset/DialogSelectAsset.vue.d.ts +1 -1
- package/src/services/tree.service.ts +1 -0
|
@@ -19,6 +19,7 @@ export interface TreeQueryParams {
|
|
|
19
19
|
systemRole?: string;
|
|
20
20
|
transactionAttribute?: string;
|
|
21
21
|
roleType?: string;
|
|
22
|
+
showAll?: boolean;
|
|
22
23
|
}
|
|
23
24
|
export declare const API: ({ type, headers, params, }?: ServiceOptions) => AxiosInstance;
|
|
24
25
|
declare const TreeServices: {
|
package/dist/tsv2-library.es.js
CHANGED
|
@@ -39642,11 +39642,12 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
39642
39642
|
const fetchTreeList = async () => {
|
|
39643
39643
|
try {
|
|
39644
39644
|
isLoading.value = true;
|
|
39645
|
-
const { systemRole, transactionAttribute, roleType } = props.groupParams ?? getParamsByPath();
|
|
39645
|
+
const { systemRole, transactionAttribute, roleType, showAll } = props.groupParams ?? getParamsByPath();
|
|
39646
39646
|
const params = {
|
|
39647
39647
|
systemRole: systemRole ? JSON.stringify(systemRole) : void 0,
|
|
39648
39648
|
transactionAttribute: transactionAttribute ? JSON.stringify(transactionAttribute) : void 0,
|
|
39649
|
-
roleType: roleType ? JSON.stringify(roleType) : void 0
|
|
39649
|
+
roleType: roleType ? JSON.stringify(roleType) : void 0,
|
|
39650
|
+
showAll
|
|
39650
39651
|
};
|
|
39651
39652
|
const { data: data30 } = await TreeServices.getTreeList(
|
|
39652
39653
|
props.type,
|
|
@@ -55611,7 +55612,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
55611
55612
|
filterLists: {},
|
|
55612
55613
|
excludedKey: {},
|
|
55613
55614
|
excludeId: {},
|
|
55614
|
-
|
|
55615
|
+
excludeInitialGroup: {},
|
|
55615
55616
|
header: {},
|
|
55616
55617
|
description: {},
|
|
55617
55618
|
size: {},
|
|
@@ -55998,7 +55999,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
55998
55999
|
params.tagType = typeof props.tagType === "string" ? JSON.stringify([props.tagType]) : void 0;
|
|
55999
56000
|
params.excludeKey = props.excludedKey ? JSON.stringify(props.excludedKey) : void 0;
|
|
56000
56001
|
params.excludeId = props.excludeId ? JSON.stringify(props.excludeId) : void 0;
|
|
56001
|
-
params.
|
|
56002
|
+
params.excludeInitialGroup = props.excludeInitialGroup ? JSON.stringify(props.excludeInitialGroup) : void 0;
|
|
56002
56003
|
const { data: data30 } = props.unpaired ? await AssetNameAPIs.getUnpairedAssetName(params) : await AssetNameAPIs.getAssetNameList(params);
|
|
56003
56004
|
if (props.unpaired) {
|
|
56004
56005
|
filterOption.value.nameOptions = (_c = (_b = data30.data) == null ? void 0 : _b.data) == null ? void 0 : _c.map(
|