@aplus-frontend/ui 0.1.10 → 0.1.12
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/es/index.mjs +77 -75
- package/es/src/ap-download/ap-download.vue.d.ts +2 -2
- package/es/src/ap-download/ap-download.vue.mjs +30 -33
- package/es/src/ap-download/hooks/useStyle.d.ts +6 -0
- package/es/src/ap-download/hooks/useStyle.mjs +22 -0
- package/es/src/ap-download/index.mjs +4 -1
- package/es/src/ap-download/interface.d.ts +29 -6
- package/es/src/ap-download/interface.mjs +4 -1
- package/es/src/ap-download/utils/getFileInfo.d.ts +9 -0
- package/es/src/ap-download/utils/getFileInfo.mjs +44 -0
- package/es/src/ap-upload/apUploadTypes.d.ts +1 -1
- package/es/src/business/ap-export-group/ApExportGroup.vue.d.ts +2 -2
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +61 -63
- package/es/src/business/ap-export-group/interface.d.ts +9 -3
- package/es/src/business/ap-export-group/interface.mjs +2 -2
- package/es/src/business/ap-select-layout/index.css +1 -1
- package/es/src/business/index.d.ts +25 -0
- package/es/src/index.mjs +72 -70
- package/es/src/theme/ap-select-layout/ap-select-layout.css +1 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-download/ap-download.vue.d.ts +2 -2
- package/lib/src/ap-download/ap-download.vue.js +1 -1
- package/lib/src/ap-download/hooks/useStyle.d.ts +6 -0
- package/lib/src/ap-download/hooks/useStyle.js +1 -0
- package/lib/src/ap-download/index.js +1 -1
- package/lib/src/ap-download/interface.d.ts +29 -6
- package/lib/src/ap-download/interface.js +1 -1
- package/lib/src/ap-download/utils/getFileInfo.d.ts +9 -0
- package/lib/src/ap-download/utils/getFileInfo.js +1 -0
- package/lib/src/ap-upload/apUploadTypes.d.ts +1 -1
- package/lib/src/business/ap-export-group/ApExportGroup.vue.d.ts +2 -2
- package/lib/src/business/ap-export-group/ApExportGroup.vue2.js +1 -1
- package/lib/src/business/ap-export-group/interface.d.ts +9 -3
- package/lib/src/business/ap-export-group/interface.js +1 -1
- package/lib/src/business/ap-select-layout/index.css +1 -1
- package/lib/src/business/index.d.ts +25 -0
- package/lib/src/index.js +1 -1
- package/lib/src/theme/ap-select-layout/ap-select-layout.css +1 -1
- package/package.json +4 -4
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { formatFileNameAndDownloadFile as
|
|
3
|
-
import { DownOutlined as
|
|
4
|
-
import { Modal as z, Dropdown as O, Menu as J, MenuItem as
|
|
1
|
+
import { defineComponent as K, computed as c, ref as R, openBlock as y, createBlock as p, unref as t, normalizeClass as B, withCtx as l, createVNode as x, createTextVNode as b, toDisplayString as h, normalizeStyle as T, createCommentVNode as I } from "vue";
|
|
2
|
+
import { formatFileNameAndDownloadFile as V } from "@aplus-frontend/utils";
|
|
3
|
+
import { DownOutlined as q } from "@ant-design/icons-vue";
|
|
4
|
+
import { Modal as z, Dropdown as O, Menu as J, MenuItem as C, Button as j } from "ant-design-vue";
|
|
5
5
|
import "../../config-provider/index.mjs";
|
|
6
|
-
import {
|
|
7
|
-
import { usePermission as
|
|
8
|
-
import { useNamespace as
|
|
9
|
-
import { useLocale as
|
|
10
|
-
import { useGlobalConfig as
|
|
11
|
-
const
|
|
6
|
+
import { ApExportGroupActionType as d } from "./interface.mjs";
|
|
7
|
+
import { usePermission as H } from "@aplus-frontend/hooks";
|
|
8
|
+
import { useNamespace as Q } from "../../config-provider/hooks/use-namespace.mjs";
|
|
9
|
+
import { useLocale as U } from "../../config-provider/hooks/use-locale.mjs";
|
|
10
|
+
import { useGlobalConfig as W } from "../../config-provider/hooks/use-global-config.mjs";
|
|
11
|
+
const re = /* @__PURE__ */ K({
|
|
12
12
|
__name: "ApExportGroup",
|
|
13
13
|
props: {
|
|
14
14
|
selectedRowKeys: {},
|
|
@@ -16,80 +16,78 @@ const ne = /* @__PURE__ */ D({
|
|
|
16
16
|
auth: {},
|
|
17
17
|
ifShow: { type: Function },
|
|
18
18
|
text: {},
|
|
19
|
+
idKey: {},
|
|
19
20
|
request: { type: Function },
|
|
20
21
|
getRequestParams: { type: Function },
|
|
21
|
-
getInitialParams: { type: Function }
|
|
22
|
+
getInitialParams: { type: Function },
|
|
23
|
+
beforeRequest: { type: Function }
|
|
22
24
|
},
|
|
23
|
-
setup(
|
|
24
|
-
const { hasPermission:
|
|
25
|
+
setup(S) {
|
|
26
|
+
const { hasPermission: F } = H(), e = S, { b: A } = Q("ap-export-group"), { t: r } = U(), L = W("uiMode"), G = c(() => {
|
|
25
27
|
const o = {
|
|
26
28
|
aplus: "#0070FF",
|
|
27
29
|
admin: "#34b77c"
|
|
28
30
|
};
|
|
29
|
-
return
|
|
30
|
-
}),
|
|
31
|
+
return w.value ? "" : o[L.value] || o.aplus;
|
|
32
|
+
}), w = c(() => !!(e != null && e.disabled)), M = {
|
|
31
33
|
textAlign: "center"
|
|
32
|
-
},
|
|
34
|
+
}, s = R(!1), v = c(() => (e == null ? void 0 : e.selectedRowKeys) || []), k = c(() => {
|
|
33
35
|
let o = e == null ? void 0 : e.ifShow;
|
|
34
|
-
return !(e != null && e.ifShow) && (e != null && e.auth) && (o = () =>
|
|
36
|
+
return !(e != null && e.ifShow) && (e != null && e.auth) && (o = () => F(e.auth)), (o == null ? void 0 : o()) ?? !0;
|
|
35
37
|
});
|
|
36
|
-
async function
|
|
37
|
-
var
|
|
38
|
-
const { getRequestParams:
|
|
39
|
-
let
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
exportFieldList: a
|
|
45
|
-
};
|
|
46
|
-
for (const u in r)
|
|
47
|
-
r[u] || delete r[u];
|
|
48
|
-
} else o === d.ALL && (r = (n == null ? void 0 : n()) || {});
|
|
49
|
-
const N = ((_ = e == null ? void 0 : e.getInitialParams) == null ? void 0 : _.call(e)) || {};
|
|
38
|
+
async function N({ key: o }) {
|
|
39
|
+
var g, E, _;
|
|
40
|
+
const { getRequestParams: i, request: a } = e || {};
|
|
41
|
+
let m = {};
|
|
42
|
+
o === d.SELECT ? m = {
|
|
43
|
+
[(e == null ? void 0 : e.idKey) || "ids"]: v.value
|
|
44
|
+
} : o === d.ALL && (m = (i == null ? void 0 : i()) || {});
|
|
45
|
+
const P = ((g = e == null ? void 0 : e.getInitialParams) == null ? void 0 : g.call(e)) || {};
|
|
50
46
|
try {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
...
|
|
54
|
-
...
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
|
|
47
|
+
s.value = !0;
|
|
48
|
+
let u = {
|
|
49
|
+
...m,
|
|
50
|
+
...P
|
|
51
|
+
};
|
|
52
|
+
u = ((E = e == null ? void 0 : e.beforeRequest) == null ? void 0 : E.call(e, u)) || u;
|
|
53
|
+
const n = await (a == null ? void 0 : a(u));
|
|
54
|
+
n.headers && !((_ = n == null ? void 0 : n.headers) != null && _["content-disposition"]) ? n.data.text().then((D) => {
|
|
55
|
+
const f = JSON.parse(D || "{}");
|
|
58
56
|
f.code && f.code !== "200" && z.error({
|
|
59
|
-
title:
|
|
57
|
+
title: r("ap.apExportGroup.exportError"),
|
|
60
58
|
content: f.message,
|
|
61
59
|
centered: !0
|
|
62
60
|
});
|
|
63
|
-
}) :
|
|
61
|
+
}) : V(n);
|
|
64
62
|
} finally {
|
|
65
|
-
|
|
63
|
+
s.value = !1;
|
|
66
64
|
}
|
|
67
65
|
}
|
|
68
|
-
return (o,
|
|
66
|
+
return (o, i) => k.value ? (y(), p(t(O), {
|
|
69
67
|
key: 0,
|
|
70
|
-
class:
|
|
68
|
+
class: B([t(A)()]),
|
|
71
69
|
overlayStyle: M,
|
|
72
|
-
disabled:
|
|
70
|
+
disabled: w.value
|
|
73
71
|
}, {
|
|
74
|
-
overlay:
|
|
75
|
-
x(t(J), { onClick:
|
|
76
|
-
default:
|
|
77
|
-
var
|
|
72
|
+
overlay: l(() => [
|
|
73
|
+
x(t(J), { onClick: N }, {
|
|
74
|
+
default: l(() => {
|
|
75
|
+
var a;
|
|
78
76
|
return [
|
|
79
|
-
(
|
|
77
|
+
(y(), p(t(C), {
|
|
80
78
|
key: t(d).SELECT,
|
|
81
|
-
disabled: ((
|
|
79
|
+
disabled: ((a = v.value) == null ? void 0 : a.length) === 0
|
|
82
80
|
}, {
|
|
83
|
-
default:
|
|
84
|
-
h(
|
|
81
|
+
default: l(() => [
|
|
82
|
+
b(h(t(r)("ap.apExportGroup.exportSelected")), 1)
|
|
85
83
|
]),
|
|
86
84
|
_: 1
|
|
87
85
|
}, 8, ["disabled"])),
|
|
88
|
-
(
|
|
86
|
+
(y(), p(t(C), {
|
|
89
87
|
key: t(d).ALL
|
|
90
88
|
}, {
|
|
91
|
-
default:
|
|
92
|
-
h(
|
|
89
|
+
default: l(() => [
|
|
90
|
+
b(h(t(r)("ap.apExportGroup.exportAll")), 1)
|
|
93
91
|
]),
|
|
94
92
|
_: 1
|
|
95
93
|
}))
|
|
@@ -98,16 +96,16 @@ const ne = /* @__PURE__ */ D({
|
|
|
98
96
|
_: 1
|
|
99
97
|
})
|
|
100
98
|
]),
|
|
101
|
-
default:
|
|
102
|
-
x(t(
|
|
99
|
+
default: l(() => [
|
|
100
|
+
x(t(j), {
|
|
103
101
|
style: T({
|
|
104
|
-
color:
|
|
102
|
+
color: G.value
|
|
105
103
|
}),
|
|
106
|
-
loading:
|
|
104
|
+
loading: s.value
|
|
107
105
|
}, {
|
|
108
|
-
default:
|
|
109
|
-
h(
|
|
110
|
-
x(t(
|
|
106
|
+
default: l(() => [
|
|
107
|
+
b(h((e == null ? void 0 : e.text) ?? t(r)("ap.apExportGroup.export")) + " ", 1),
|
|
108
|
+
x(t(q))
|
|
111
109
|
]),
|
|
112
110
|
_: 1
|
|
113
111
|
}, 8, ["style", "loading"])
|
|
@@ -117,5 +115,5 @@ const ne = /* @__PURE__ */ D({
|
|
|
117
115
|
}
|
|
118
116
|
});
|
|
119
117
|
export {
|
|
120
|
-
|
|
118
|
+
re as default
|
|
121
119
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MenuProps } from 'ant-design-vue';
|
|
2
|
-
export interface
|
|
2
|
+
export interface ApExportGroupProps {
|
|
3
3
|
/**
|
|
4
4
|
* 选中行的Key列表
|
|
5
5
|
*/
|
|
@@ -20,6 +20,10 @@ export interface Props {
|
|
|
20
20
|
* 导出按钮文案
|
|
21
21
|
*/
|
|
22
22
|
text?: string;
|
|
23
|
+
/**
|
|
24
|
+
* 导出所选 Key 的取值,默认为 ids
|
|
25
|
+
*/
|
|
26
|
+
idKey?: string;
|
|
23
27
|
/**
|
|
24
28
|
* 导出接口
|
|
25
29
|
*/
|
|
@@ -32,9 +36,11 @@ export interface Props {
|
|
|
32
36
|
* 初始化参数
|
|
33
37
|
*/
|
|
34
38
|
getInitialParams?: () => Record<string, any>;
|
|
39
|
+
beforeRequest?: (params: any) => Record<string, any>;
|
|
35
40
|
}
|
|
36
|
-
export declare enum
|
|
41
|
+
export declare enum ApExportGroupActionType {
|
|
37
42
|
ALL = "ALL",
|
|
38
43
|
SELECT = "SELECT"
|
|
39
44
|
}
|
|
40
|
-
export type
|
|
45
|
+
export type ApExportGroupAntMenuInfo = Parameters<Exclude<MenuProps['onClick'], undefined>>[0];
|
|
46
|
+
export type ApExportGroupMixedParams<ParamsType> = Partial<ParamsType>;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
color: #34b77c;
|
|
90
90
|
font-weight: bold;
|
|
91
91
|
}
|
|
92
|
-
.aplus-ap-select-layout-side__body--scroll-item.active > .ant-typography
|
|
92
|
+
.aplus-ap-select-layout-side__body--scroll-item.active > .ant-typography {
|
|
93
93
|
color: #34b77c;
|
|
94
94
|
}
|
|
95
95
|
.aplus-ap-select-layout-content {
|
|
@@ -13,6 +13,7 @@ export type { ApLabelProps, ApLabelGroupProps, ApLabelGroupItemProps } from './a
|
|
|
13
13
|
export type { ApStatusProps, ApStatusGroupProps, ApStatusGroupItemProps } from './ap-status/interface';
|
|
14
14
|
export type { ApSelectItem, ApSelectLayoutProps } from './ap-select-layout/interface';
|
|
15
15
|
export type { ApInputRadioProps } from './ap-input-radio/interface';
|
|
16
|
+
export type { ApExportGroupProps } from './ap-export-group/interface';
|
|
16
17
|
export declare const ApTitle: {
|
|
17
18
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
18
19
|
title: {
|
|
@@ -955,6 +956,9 @@ export declare const ApExportGroup: {
|
|
|
955
956
|
text: {
|
|
956
957
|
type: PropType<string>;
|
|
957
958
|
};
|
|
959
|
+
idKey: {
|
|
960
|
+
type: PropType<string>;
|
|
961
|
+
};
|
|
958
962
|
request: {
|
|
959
963
|
type: PropType<(key: any) => Promise<any>>;
|
|
960
964
|
};
|
|
@@ -964,6 +968,9 @@ export declare const ApExportGroup: {
|
|
|
964
968
|
getInitialParams: {
|
|
965
969
|
type: PropType<() => Record<string, any>>;
|
|
966
970
|
};
|
|
971
|
+
beforeRequest: {
|
|
972
|
+
type: PropType<(params: any) => Record<string, any>>;
|
|
973
|
+
};
|
|
967
974
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
968
975
|
selectedRowKeys: {
|
|
969
976
|
type: PropType<any[]>;
|
|
@@ -980,6 +987,9 @@ export declare const ApExportGroup: {
|
|
|
980
987
|
text: {
|
|
981
988
|
type: PropType<string>;
|
|
982
989
|
};
|
|
990
|
+
idKey: {
|
|
991
|
+
type: PropType<string>;
|
|
992
|
+
};
|
|
983
993
|
request: {
|
|
984
994
|
type: PropType<(key: any) => Promise<any>>;
|
|
985
995
|
};
|
|
@@ -989,6 +999,9 @@ export declare const ApExportGroup: {
|
|
|
989
999
|
getInitialParams: {
|
|
990
1000
|
type: PropType<() => Record<string, any>>;
|
|
991
1001
|
};
|
|
1002
|
+
beforeRequest: {
|
|
1003
|
+
type: PropType<(params: any) => Record<string, any>>;
|
|
1004
|
+
};
|
|
992
1005
|
}>>, {}, true, {}, {}, {
|
|
993
1006
|
P: {};
|
|
994
1007
|
B: {};
|
|
@@ -1012,6 +1025,9 @@ export declare const ApExportGroup: {
|
|
|
1012
1025
|
text: {
|
|
1013
1026
|
type: PropType<string>;
|
|
1014
1027
|
};
|
|
1028
|
+
idKey: {
|
|
1029
|
+
type: PropType<string>;
|
|
1030
|
+
};
|
|
1015
1031
|
request: {
|
|
1016
1032
|
type: PropType<(key: any) => Promise<any>>;
|
|
1017
1033
|
};
|
|
@@ -1021,6 +1037,9 @@ export declare const ApExportGroup: {
|
|
|
1021
1037
|
getInitialParams: {
|
|
1022
1038
|
type: PropType<() => Record<string, any>>;
|
|
1023
1039
|
};
|
|
1040
|
+
beforeRequest: {
|
|
1041
|
+
type: PropType<(params: any) => Record<string, any>>;
|
|
1042
|
+
};
|
|
1024
1043
|
}>>, {}, {}, {}, {}, {}>;
|
|
1025
1044
|
__isFragment?: never;
|
|
1026
1045
|
__isTeleport?: never;
|
|
@@ -1041,6 +1060,9 @@ export declare const ApExportGroup: {
|
|
|
1041
1060
|
text: {
|
|
1042
1061
|
type: PropType<string>;
|
|
1043
1062
|
};
|
|
1063
|
+
idKey: {
|
|
1064
|
+
type: PropType<string>;
|
|
1065
|
+
};
|
|
1044
1066
|
request: {
|
|
1045
1067
|
type: PropType<(key: any) => Promise<any>>;
|
|
1046
1068
|
};
|
|
@@ -1050,6 +1072,9 @@ export declare const ApExportGroup: {
|
|
|
1050
1072
|
getInitialParams: {
|
|
1051
1073
|
type: PropType<() => Record<string, any>>;
|
|
1052
1074
|
};
|
|
1075
|
+
beforeRequest: {
|
|
1076
|
+
type: PropType<(params: any) => Record<string, any>>;
|
|
1077
|
+
};
|
|
1053
1078
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & ( VNodeProps & ( AllowedComponentProps & ComponentCustomProps & ( Plugin & (new (...args: any[]) => {
|
|
1054
1079
|
$props: {
|
|
1055
1080
|
onClick?: () => void;
|
package/es/src/index.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import { Scrollbar as C } from "./scroll-bar/index.mjs";
|
|
|
4
4
|
import { CollapseContainer as I, ScrollContainer as b } from "./container/index.mjs";
|
|
5
5
|
import { IconPicker as P } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
|
-
import { BasicArrow as
|
|
8
|
-
import { ExpandTransition as
|
|
7
|
+
import { BasicArrow as h, BasicHelp as R, BasicTitle as v } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as w, ExpandXTransition as B, FadeTransition as M, ScaleRotateTransition as k, ScaleTransition as L, ScrollXReverseTransition as N, ScrollXTransition as y, ScrollYReverseTransition as E, ScrollYTransition as K, SlideXReverseTransition as X, SlideXTransition as Y, SlideYReverseTransition as O, SlideYTransition as H } from "./transition/index.mjs";
|
|
9
9
|
import { Description as z } from "./description/index.mjs";
|
|
10
10
|
import { Field as j } from "./pro-form/index.mjs";
|
|
11
11
|
import { BaseButton as J } from "./base-button/index.mjs";
|
|
@@ -29,12 +29,12 @@ import "./ap-download/index.mjs";
|
|
|
29
29
|
import { CheckCard as So } from "./check-card/index.mjs";
|
|
30
30
|
import { ApModal as bo } from "./ap-modal/index.mjs";
|
|
31
31
|
import "./ap-list/index.mjs";
|
|
32
|
-
import { ApBatchAction as Po, ApExpandAlert as
|
|
32
|
+
import { ApBatchAction as Po, ApExpandAlert as Do, ApExportGroup as ho, ApInputRadio as Ro, ApLabel as vo, ApLabelGroup as Go, ApSelectLayout as wo, ApStatus as Bo, ApStatusGroup as Mo, ApTitle as ko } from "./business/index.mjs";
|
|
33
33
|
import "./ap-table/index.mjs";
|
|
34
34
|
import "./editable-table/index.mjs";
|
|
35
35
|
import "./ap-descriptions/index.mjs";
|
|
36
|
-
import { configProviderProps as
|
|
37
|
-
import { configProviderContextKey as
|
|
36
|
+
import { configProviderProps as No } from "./config-provider/config-provider-props.mjs";
|
|
37
|
+
import { configProviderContextKey as Eo, tableDefaultConfig as Ko } from "./config-provider/constants.mjs";
|
|
38
38
|
import { keysOf as Yo, provideGlobalConfig as Oo, useGlobalConfig as Ho } from "./config-provider/hooks/use-global-config.mjs";
|
|
39
39
|
import { buildLocaleContext as zo, buildTranslator as Uo, localeContextKey as jo, translate as qo, useLocale as Jo } from "./config-provider/hooks/use-locale.mjs";
|
|
40
40
|
import { defaultNamespace as Vo, namespaceContextKey as Zo, useGetDerivedNamespace as _o, useNamespace as $o } from "./config-provider/hooks/use-namespace.mjs";
|
|
@@ -49,14 +49,14 @@ import { isComponentFormSchema as ce, isSlotFormSchema as Fe } from "./pro-form/
|
|
|
49
49
|
import { default as Ce } from "./pro-form/components/api-cascader.vue.mjs";
|
|
50
50
|
import { default as Ie } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
51
51
|
import { default as ge } from "./pro-form/components/api-select.vue.mjs";
|
|
52
|
-
import { default as
|
|
52
|
+
import { default as De } from "./pro-form/components/api-transfer.vue.mjs";
|
|
53
53
|
import { default as Re } from "./pro-form/components/api-tree.vue.mjs";
|
|
54
54
|
import { default as Ge } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
55
|
+
import { default as Be } from "./pro-form/pro-form.vue.mjs";
|
|
56
|
+
import { default as ke } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
57
|
+
import { default as Ne } from "./pro-form/table-form.vue.mjs";
|
|
58
|
+
import { default as Ee } from "./pro-form/table-form-inner.vue.mjs";
|
|
59
|
+
import { default as Xe } from "./base-button/modal-button.vue.mjs";
|
|
60
60
|
import { default as Oe } from "./base-button/pop-confirm-button.vue.mjs";
|
|
61
61
|
import { useModalContext as We } from "./modal/hooks/use-modal-context.mjs";
|
|
62
62
|
import { useModal as Ue, useModalInner as je } from "./modal/hooks/use-modal.mjs";
|
|
@@ -76,13 +76,13 @@ import { default as Tr } from "./ap-form/items/switch/index.vue.mjs";
|
|
|
76
76
|
import { default as Sr } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
77
77
|
import { default as br } from "./ap-form/items/text/password.vue.mjs";
|
|
78
78
|
import { default as Pr } from "./ap-form/ap-form-item.vue.mjs";
|
|
79
|
-
import { default as
|
|
79
|
+
import { default as hr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
80
80
|
import { default as vr } from "./ap-form/ap-form-list.vue.mjs";
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
81
|
+
import { default as wr } from "./ap-form/search-form/index.vue.mjs";
|
|
82
|
+
import { default as Mr } from "./ap-form/modal-form/index.vue.mjs";
|
|
83
83
|
import { ApFieldText as Lr } from "./ap-field/text/index.mjs";
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
84
|
+
import { default as yr } from "./ap-field/checkbox/index.vue.mjs";
|
|
85
|
+
import { default as Kr } from "./ap-field/date/index.vue.mjs";
|
|
86
86
|
import { default as Yr } from "./ap-field/number/index.vue.mjs";
|
|
87
87
|
import { default as Hr } from "./ap-field/radio/index.vue.mjs";
|
|
88
88
|
import { default as zr } from "./ap-field/switch/index.vue.mjs";
|
|
@@ -103,20 +103,21 @@ import { default as Tt } from "./ap-custom-column/custom-column.vue.mjs";
|
|
|
103
103
|
import { default as St } from "./ap-custom-column/column-select.vue.mjs";
|
|
104
104
|
import { DictCode as bt } from "./work-order-modal/interfaces.mjs";
|
|
105
105
|
import { createWorkOrderModal as Pt } from "./work-order-modal/createWorkOrder.mjs";
|
|
106
|
-
import { default as
|
|
106
|
+
import { default as ht } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
107
107
|
import { default as vt } from "./ap-tag/ap-tag.vue.mjs";
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
108
|
+
import { default as wt } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
109
|
+
import { default as Mt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
110
110
|
import { NeedNameKeyDefault as Lt } from "./ap-upload/apUploadTypes.mjs";
|
|
111
|
-
import { default as
|
|
112
|
-
import {
|
|
113
|
-
import { default as Yt } from "./
|
|
114
|
-
import { default as Ht } from "./
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import { default as Jt } from "./
|
|
118
|
-
import { default as Vt } from "./editable-table/
|
|
119
|
-
import { default as _t } from "./
|
|
111
|
+
import { default as yt } from "./ap-upload/apUpload.vue.mjs";
|
|
112
|
+
import { ApDownLoadNeedNameKeyDefault as Kt } from "./ap-download/interface.mjs";
|
|
113
|
+
import { default as Yt } from "./ap-download/ap-download.vue.mjs";
|
|
114
|
+
import { default as Ht } from "./check-card/group.vue.mjs";
|
|
115
|
+
import { default as zt } from "./ap-list/index.vue.mjs";
|
|
116
|
+
import { useTablePaging as jt } from "./ap-table/hooks/use-table-paging.mjs";
|
|
117
|
+
import { default as Jt } from "./ap-table/ap-table.vue.mjs";
|
|
118
|
+
import { default as Vt } from "./editable-table/index.vue.mjs";
|
|
119
|
+
import { default as _t } from "./editable-table/form-item.vue.mjs";
|
|
120
|
+
import { default as oa } from "./ap-descriptions/ap-descriptions.vue.mjs";
|
|
120
121
|
export {
|
|
121
122
|
F as APConfigProvider,
|
|
122
123
|
xt as ApActionGroup,
|
|
@@ -127,13 +128,14 @@ export {
|
|
|
127
128
|
Po as ApBatchAction,
|
|
128
129
|
Tt as ApCustomColumn,
|
|
129
130
|
St as ApCustomSelect,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
Do as
|
|
131
|
+
oa as ApDescriptions,
|
|
132
|
+
Kt as ApDownLoadNeedNameKeyDefault,
|
|
133
|
+
Yt as ApDownload,
|
|
134
|
+
Do as ApExpandAlert,
|
|
135
|
+
ho as ApExportGroup,
|
|
134
136
|
uo as ApField,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
+
yr as ApFieldCheckbox,
|
|
138
|
+
Kr as ApFieldDate,
|
|
137
139
|
Jr as ApFieldDateRange,
|
|
138
140
|
Yr as ApFieldNumber,
|
|
139
141
|
_r as ApFieldPassword,
|
|
@@ -150,7 +152,7 @@ export {
|
|
|
150
152
|
Sr as ApFormItemCheckbox,
|
|
151
153
|
sr as ApFormItemDate,
|
|
152
154
|
xr as ApFormItemDateRange,
|
|
153
|
-
|
|
155
|
+
hr as ApFormItemGroup,
|
|
154
156
|
lr as ApFormItemNumber,
|
|
155
157
|
nr as ApFormItemRadio,
|
|
156
158
|
cr as ApFormItemSelect,
|
|
@@ -159,35 +161,35 @@ export {
|
|
|
159
161
|
fr as ApFormItemTextArea,
|
|
160
162
|
br as ApFormItemTextPassword,
|
|
161
163
|
vr as ApFormList,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
164
|
+
Mr as ApFormModalForm,
|
|
165
|
+
wr as ApFormSearchForm,
|
|
166
|
+
Mt as ApInfoLayout,
|
|
165
167
|
Ro as ApInputRadio,
|
|
166
168
|
vo as ApLabel,
|
|
167
169
|
Go as ApLabelGroup,
|
|
168
|
-
|
|
170
|
+
zt as ApList,
|
|
169
171
|
bo as ApModal,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
wo as ApSelectLayout,
|
|
173
|
+
Bo as ApStatus,
|
|
174
|
+
Mo as ApStatusGroup,
|
|
175
|
+
Jt as ApTable,
|
|
174
176
|
vt as ApTag,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
177
|
+
wt as ApTagGroup,
|
|
178
|
+
ko as ApTitle,
|
|
179
|
+
yt as ApUpload,
|
|
178
180
|
Ce as ApiCascader,
|
|
179
181
|
Ie as ApiRadioGroup,
|
|
180
182
|
ge as ApiSelect,
|
|
181
|
-
|
|
183
|
+
De as ApiTransfer,
|
|
182
184
|
Re as ApiTree,
|
|
183
|
-
|
|
185
|
+
ke as ApiTreeSelect,
|
|
184
186
|
J as BaseButton,
|
|
185
187
|
_ as BaseModal,
|
|
186
|
-
|
|
188
|
+
h as BasicArrow,
|
|
187
189
|
R as BasicHelp,
|
|
188
190
|
v as BasicTitle,
|
|
189
191
|
So as CheckCard,
|
|
190
|
-
|
|
192
|
+
Ht as CheckCardGroup,
|
|
191
193
|
I as CollapseContainer,
|
|
192
194
|
le as CollapseTransition,
|
|
193
195
|
ee as ConfigProvider,
|
|
@@ -199,31 +201,31 @@ export {
|
|
|
199
201
|
bt as DictCode,
|
|
200
202
|
lo as Dropdown,
|
|
201
203
|
_e as EditTableHeaderIcon,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
Vt as EditableTable,
|
|
205
|
+
_t as EditableTableFormItem,
|
|
206
|
+
w as ExpandTransition,
|
|
207
|
+
B as ExpandXTransition,
|
|
208
|
+
M as FadeTransition,
|
|
207
209
|
j as Field,
|
|
208
210
|
n as Icon,
|
|
209
211
|
P as IconPicker,
|
|
210
|
-
|
|
212
|
+
Xe as ModalButton,
|
|
211
213
|
Lt as NeedNameKeyDefault,
|
|
212
214
|
Oe as PopConfirmButton,
|
|
213
|
-
|
|
215
|
+
Be as ProForm,
|
|
214
216
|
Je as ProTable,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
+
Ne as ProTableForm,
|
|
218
|
+
Ee as ProTableFormInner,
|
|
217
219
|
Ge as RadioButtonGroup,
|
|
218
|
-
|
|
220
|
+
k as ScaleRotateTransition,
|
|
219
221
|
L as ScaleTransition,
|
|
220
222
|
b as ScrollContainer,
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
223
|
+
N as ScrollXReverseTransition,
|
|
224
|
+
y as ScrollXTransition,
|
|
225
|
+
E as ScrollYReverseTransition,
|
|
226
|
+
K as ScrollYTransition,
|
|
225
227
|
C as Scrollbar,
|
|
226
|
-
|
|
228
|
+
X as SlideXReverseTransition,
|
|
227
229
|
Y as SlideXTransition,
|
|
228
230
|
O as SlideYReverseTransition,
|
|
229
231
|
H as SlideYTransition,
|
|
@@ -231,13 +233,13 @@ export {
|
|
|
231
233
|
A as SvgIcon,
|
|
232
234
|
Ve as TableAction,
|
|
233
235
|
or as TableImg,
|
|
234
|
-
|
|
236
|
+
ht as WorkOrderModal,
|
|
235
237
|
Ao as adminToken,
|
|
236
238
|
co as aplusToken,
|
|
237
239
|
zo as buildLocaleContext,
|
|
238
240
|
Uo as buildTranslator,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
+
Eo as configProviderContextKey,
|
|
242
|
+
No as configProviderProps,
|
|
241
243
|
fo as createPrompt,
|
|
242
244
|
Pt as createWorkOrderModal,
|
|
243
245
|
Vo as defaultNamespace,
|
|
@@ -250,7 +252,7 @@ export {
|
|
|
250
252
|
jo as localeContextKey,
|
|
251
253
|
Zo as namespaceContextKey,
|
|
252
254
|
Oo as provideGlobalConfig,
|
|
253
|
-
|
|
255
|
+
Ko as tableDefaultConfig,
|
|
254
256
|
qo as translate,
|
|
255
257
|
ct as useCacheColumnSetting,
|
|
256
258
|
xe as useComponentRegister,
|
|
@@ -264,6 +266,6 @@ export {
|
|
|
264
266
|
je as useModalInner,
|
|
265
267
|
$o as useNamespace,
|
|
266
268
|
rr as useTable,
|
|
267
|
-
|
|
269
|
+
jt as useTablePaging,
|
|
268
270
|
ae as zhCn
|
|
269
271
|
};
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
color: #34b77c;
|
|
90
90
|
font-weight: bold;
|
|
91
91
|
}
|
|
92
|
-
.aplus-ap-select-layout-side__body--scroll-item.active > .ant-typography
|
|
92
|
+
.aplus-ap-select-layout-side__body--scroll-item.active > .ant-typography {
|
|
93
93
|
color: #34b77c;
|
|
94
94
|
}
|
|
95
95
|
.aplus-ap-select-layout-content {
|