tsv2-library 1.0.61-alpha.47 → 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.
|
@@ -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,
|