yc-vep-ui 0.4.0 → 0.4.2
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/components/YcApproval/Remind.vue.d.ts +1 -1
- package/dist/{entry-BnGnLjQT.js → entry-C-f6sEuz.js} +100 -111
- package/dist/entry.d.ts +17 -25
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/useFetch.d.ts +0 -1
- package/dist/hooks/useTable/default.d.ts +0 -1
- package/dist/index.css +3 -3
- package/dist/utils/index.js +1 -1
- package/dist/vep-ui.js +1 -1
- package/package.json +9 -13
- package/dist/components/YcApproval/index.vue.d.ts +0 -203
|
@@ -546,7 +546,7 @@ var render_default = {
|
|
|
546
546
|
]);
|
|
547
547
|
};
|
|
548
548
|
}
|
|
549
|
-
}), Table_exports = /* @__PURE__ */ __exportAll$1({ default: () => Table_default }), Table_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$11, [["__scopeId", "data-v-
|
|
549
|
+
}), Table_exports = /* @__PURE__ */ __exportAll$1({ default: () => Table_default }), Table_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$11, [["__scopeId", "data-v-adf869c1"]]), _hoisted_1$33 = ["src"], Icon_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
550
550
|
__name: "Icon",
|
|
551
551
|
props: {
|
|
552
552
|
name: {},
|
|
@@ -2573,87 +2573,80 @@ function useFetch(e, n = {}) {
|
|
|
2573
2573
|
//#endregion
|
|
2574
2574
|
//#region src/hooks/useTable/default.ts
|
|
2575
2575
|
function useDefaultTable(e, n) {
|
|
2576
|
-
let r =
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
total: "total"
|
|
2585
|
-
}
|
|
2586
|
-
}), i = shallowRef([]), a = reactive({
|
|
2576
|
+
let r = [
|
|
2577
|
+
"tableName",
|
|
2578
|
+
"sort",
|
|
2579
|
+
...n?.ignoreAttrs || []
|
|
2580
|
+
], i = n?.replaceAttrs || {
|
|
2581
|
+
table: "table",
|
|
2582
|
+
total: "total"
|
|
2583
|
+
}, a = shallowRef([]), o = reactive({
|
|
2587
2584
|
total: 0,
|
|
2588
2585
|
page: 1,
|
|
2589
2586
|
pageSize: 10
|
|
2590
|
-
}),
|
|
2587
|
+
}), s = ref([]), c = reactive({
|
|
2591
2588
|
page: 1,
|
|
2592
2589
|
pageSize: 10
|
|
2593
|
-
})
|
|
2594
|
-
if (
|
|
2590
|
+
});
|
|
2591
|
+
if (n?.onBefore?.(c) === !1) return reactive({
|
|
2595
2592
|
loading: ref(!1),
|
|
2596
|
-
data:
|
|
2597
|
-
pagination:
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2593
|
+
data: a,
|
|
2594
|
+
pagination: o,
|
|
2595
|
+
selection: s,
|
|
2596
|
+
execute: () => {},
|
|
2597
|
+
reset: () => {},
|
|
2598
|
+
updatePagination: () => {},
|
|
2599
|
+
selectionChange: () => {}
|
|
2600
|
+
});
|
|
2601
|
+
let l = useFetch(e, {
|
|
2602
|
+
...n,
|
|
2603
|
+
defaultParams: c,
|
|
2601
2604
|
immediate: !1,
|
|
2602
2605
|
onSuccess: (e) => {
|
|
2603
|
-
|
|
2606
|
+
n?.onSuccess?.(e), o.total = e[i.total] || 0, a.value = e[i.table] || [];
|
|
2604
2607
|
}
|
|
2605
|
-
}), f = !1;
|
|
2606
|
-
l && watchEffect(() => {
|
|
2607
|
-
(toValue(n.ready) ?? !0) && !f && (f = !0, p());
|
|
2608
2608
|
});
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
}
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
}
|
|
2629
|
-
function g({ page: e, pageSize: n }) {
|
|
2630
|
-
a.page = e, a.pageSize = n, p({
|
|
2631
|
-
page: e,
|
|
2632
|
-
pageSize: n
|
|
2609
|
+
watchEffect(() => {
|
|
2610
|
+
let e = toValue(n.ready) ?? !0, r = toValue(n.defaultParams || {});
|
|
2611
|
+
(o.page !== 1 || o.pageSize !== 10) && (o.page = 1, o.pageSize = 10);
|
|
2612
|
+
let i = {};
|
|
2613
|
+
for (let e in r) e !== "page" && e !== "pageSize" && (i[e] = r[e], c[e] = r[e]);
|
|
2614
|
+
e && l.execute({
|
|
2615
|
+
...c,
|
|
2616
|
+
...i
|
|
2617
|
+
});
|
|
2618
|
+
}, { flush: "sync" });
|
|
2619
|
+
function u(e = {}) {
|
|
2620
|
+
let { page: n, pageSize: i, ...a } = e;
|
|
2621
|
+
o.page = n || 1, o.pageSize = i || 10;
|
|
2622
|
+
let s = [];
|
|
2623
|
+
Object.keys(c).forEach((e) => {
|
|
2624
|
+
!r.includes(e) && !(e in a) && s.push(e);
|
|
2625
|
+
}), s.forEach((e) => delete c[e]), Object.assign(c, a, {
|
|
2626
|
+
page: o.page,
|
|
2627
|
+
pageSize: o.pageSize
|
|
2633
2628
|
});
|
|
2634
2629
|
}
|
|
2635
|
-
function
|
|
2636
|
-
o.
|
|
2630
|
+
function d({ page: e, pageSize: n }) {
|
|
2631
|
+
o.page = e, o.pageSize = n, c.page = e, c.pageSize = n;
|
|
2632
|
+
}
|
|
2633
|
+
function f(e) {
|
|
2634
|
+
s.value = e;
|
|
2637
2635
|
}
|
|
2638
2636
|
return reactive({
|
|
2639
|
-
...
|
|
2640
|
-
data:
|
|
2641
|
-
pagination:
|
|
2642
|
-
selection:
|
|
2643
|
-
reset:
|
|
2644
|
-
updatePagination:
|
|
2645
|
-
selectionChange:
|
|
2646
|
-
execute: p
|
|
2637
|
+
...l,
|
|
2638
|
+
data: a,
|
|
2639
|
+
pagination: o,
|
|
2640
|
+
selection: s,
|
|
2641
|
+
reset: u,
|
|
2642
|
+
updatePagination: d,
|
|
2643
|
+
selectionChange: f
|
|
2647
2644
|
});
|
|
2648
2645
|
}
|
|
2649
2646
|
//#endregion
|
|
2650
2647
|
//#region src/hooks/useTable/common.ts
|
|
2651
2648
|
function useComTable(e, n) {
|
|
2652
|
-
let { defaultParams: r, ...i } = n, a = isRef(r) ? r : isReactive(r) ? toRef(r) : ref(r || {}), o = ["sort", ...n?.ignoreAttrs || []], s =
|
|
2653
|
-
o.forEach((e) => {
|
|
2654
|
-
s[e] !== void 0 && (c[e] = s[e]);
|
|
2655
|
-
});
|
|
2656
|
-
let l = useDefaultTable(e, {
|
|
2649
|
+
let { defaultParams: r, ...i } = n, a = isRef(r) ? r : isReactive(r) ? toRef(r) : ref(r || {}), o = ["sort", ...n?.ignoreAttrs || []], s = useDefaultTable(e, {
|
|
2657
2650
|
...i,
|
|
2658
2651
|
ready: computed(() => {
|
|
2659
2652
|
let e = isRef(n.ready) ? n.ready.value : n.ready, r = !!a.value?.tableId;
|
|
@@ -2668,76 +2661,72 @@ function useComTable(e, n) {
|
|
|
2668
2661
|
params: i
|
|
2669
2662
|
};
|
|
2670
2663
|
}),
|
|
2671
|
-
ignoreAttrs:
|
|
2664
|
+
ignoreAttrs: o
|
|
2672
2665
|
});
|
|
2673
|
-
function
|
|
2666
|
+
function c(e = {}) {
|
|
2667
|
+
let { tableId: n, ...r } = toValue(a), i = {};
|
|
2668
|
+
o.forEach((e) => {
|
|
2669
|
+
r[e] !== void 0 && (i[e] = r[e]);
|
|
2670
|
+
}), a.value = {
|
|
2671
|
+
tableId: n,
|
|
2672
|
+
page: 1,
|
|
2673
|
+
pageSize: 10,
|
|
2674
|
+
...i,
|
|
2675
|
+
...e
|
|
2676
|
+
}, s.reset();
|
|
2677
|
+
}
|
|
2678
|
+
function l(e) {
|
|
2674
2679
|
let n = [
|
|
2675
2680
|
"tableId",
|
|
2676
2681
|
"page",
|
|
2677
2682
|
"pageSize"
|
|
2678
2683
|
], r = {}, i = {};
|
|
2679
|
-
Object.keys(e || {}).forEach((a) => {
|
|
2684
|
+
return Object.keys(e || {}).forEach((a) => {
|
|
2680
2685
|
n.includes(a) ? r[a] = e[a] : i[a] = e[a];
|
|
2681
|
-
}), Object.keys(i).length > 0 && (r.params = i)
|
|
2682
|
-
|
|
2683
|
-
return o.forEach((e) => {
|
|
2684
|
-
s[e] !== void 0 && (c[e] = s[e]);
|
|
2685
|
-
}), Object.assign(c, s), Object.assign(c, e || {}), a.value = c, l.execute(r);
|
|
2686
|
-
}
|
|
2687
|
-
function d(e = {}) {
|
|
2688
|
-
let { tableId: n } = toValue(a);
|
|
2689
|
-
a.value = {
|
|
2690
|
-
tableId: n,
|
|
2691
|
-
page: 1,
|
|
2692
|
-
pageSize: 10,
|
|
2693
|
-
...c,
|
|
2686
|
+
}), Object.keys(i).length > 0 && (r.params = i), a.value = {
|
|
2687
|
+
...toValue(a),
|
|
2694
2688
|
...e
|
|
2695
|
-
},
|
|
2689
|
+
}, s.execute(r);
|
|
2696
2690
|
}
|
|
2697
|
-
|
|
2698
|
-
|
|
2691
|
+
let u = () => toValue(a)?.tableId;
|
|
2692
|
+
async function d(e) {
|
|
2699
2693
|
return request_default.post("/common/insert", {
|
|
2700
2694
|
params: { ...e },
|
|
2701
|
-
tableId:
|
|
2695
|
+
tableId: u()
|
|
2702
2696
|
});
|
|
2703
2697
|
}
|
|
2704
|
-
async function
|
|
2705
|
-
let n = toValue(a);
|
|
2698
|
+
async function f(e) {
|
|
2706
2699
|
return request_default.post("/common/update", {
|
|
2707
2700
|
params: { ...e },
|
|
2708
|
-
tableId:
|
|
2701
|
+
tableId: u()
|
|
2709
2702
|
});
|
|
2710
2703
|
}
|
|
2711
|
-
async function
|
|
2712
|
-
let n = toValue(a);
|
|
2704
|
+
async function p(e) {
|
|
2713
2705
|
return request_default.post("/common/delete", {
|
|
2714
2706
|
idList: e,
|
|
2715
|
-
tableId:
|
|
2707
|
+
tableId: u()
|
|
2716
2708
|
});
|
|
2717
2709
|
}
|
|
2718
|
-
async function
|
|
2719
|
-
let
|
|
2720
|
-
tableId:
|
|
2721
|
-
type:
|
|
2722
|
-
}),
|
|
2723
|
-
|
|
2724
|
-
}
|
|
2725
|
-
let
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
remove: m,
|
|
2732
|
-
delete: m,
|
|
2733
|
-
exportData: g
|
|
2710
|
+
async function m({ title: e = "export", url: n } = {}) {
|
|
2711
|
+
let r = await request_default.blob(n ?? "/common/exportExcel", {
|
|
2712
|
+
tableId: u(),
|
|
2713
|
+
type: "all"
|
|
2714
|
+
}), i = new Blob([r]), a = document.createElement("a");
|
|
2715
|
+
a.href = window.URL.createObjectURL(i), a.download = `${e}.xlsx`, a.click(), VepMessage.success("导出成功"), window.URL.revokeObjectURL(a.href);
|
|
2716
|
+
}
|
|
2717
|
+
let g = reactive({
|
|
2718
|
+
insert: d,
|
|
2719
|
+
update: f,
|
|
2720
|
+
remove: p,
|
|
2721
|
+
delete: p,
|
|
2722
|
+
exportData: m
|
|
2734
2723
|
});
|
|
2735
2724
|
return watchEffect(() => {
|
|
2736
|
-
Object.assign(
|
|
2737
|
-
reset:
|
|
2738
|
-
execute:
|
|
2725
|
+
Object.assign(g, s, {
|
|
2726
|
+
reset: c,
|
|
2727
|
+
execute: l
|
|
2739
2728
|
});
|
|
2740
|
-
}, { flush: "sync" }),
|
|
2729
|
+
}, { flush: "sync" }), g;
|
|
2741
2730
|
}
|
|
2742
2731
|
//#endregion
|
|
2743
2732
|
//#region src/hooks/useTable/index.ts
|
|
@@ -4969,7 +4958,7 @@ var _hoisted_1$1 = { key: 0 }, Remind_vue_vue_type_script_setup_true_lang_defaul
|
|
|
4969
4958
|
});
|
|
4970
4959
|
function s() {
|
|
4971
4960
|
let e = !1;
|
|
4972
|
-
return o.value?.forEach((n) => {
|
|
4961
|
+
return o.value?.forEach((n, r) => {
|
|
4973
4962
|
e = n?.validate();
|
|
4974
4963
|
}), e;
|
|
4975
4964
|
}
|
|
@@ -11031,7 +11020,7 @@ var Panel = class {
|
|
|
11031
11020
|
});
|
|
11032
11021
|
};
|
|
11033
11022
|
}
|
|
11034
|
-
}), PageAgent_exports = /* @__PURE__ */ __exportAll$1({ default: () => PageAgent_default }), PageAgent_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-
|
|
11023
|
+
}), PageAgent_exports = /* @__PURE__ */ __exportAll$1({ default: () => PageAgent_default }), PageAgent_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-fb8f5b21"]]), sticky = {
|
|
11035
11024
|
mounted(e, n) {
|
|
11036
11025
|
let r = n.value || {}, i = r.target || "body", a = r.top || 0;
|
|
11037
11026
|
e._stickyOriginalStyles = {
|
package/dist/entry.d.ts
CHANGED
|
@@ -1,27 +1,19 @@
|
|
|
1
|
-
import { App } from 'vue'
|
|
2
|
-
export
|
|
3
|
-
export type
|
|
4
|
-
export type
|
|
5
|
-
export type
|
|
6
|
-
export type
|
|
7
|
-
export type
|
|
8
|
-
export type
|
|
9
|
-
export type
|
|
10
|
-
export type
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export * from './components';
|
|
15
|
-
export * as hooks from './hooks';
|
|
16
|
-
export declare function setHostVue(vue: any): void;
|
|
17
|
-
export declare function getHostVue(): any;
|
|
1
|
+
import type { App } from 'vue'
|
|
2
|
+
export type * from './components/type'
|
|
3
|
+
export type { IColumn, ITableProps, ITableInstance, IRender, IRenderProps, IExtra, IColumnRenderProps } from './components/Table/type'
|
|
4
|
+
export type { IField, IFilterProps, IFieldSlot, IFilterRenderProps } from './components/Filter/type'
|
|
5
|
+
export type { IFormProps, IFormInstance } from './components/Form/type'
|
|
6
|
+
export type { IDescriptionsProps, IDescriptionsField } from './components/Descriptions/type'
|
|
7
|
+
export type { ITreeProps } from './components/Tree/type'
|
|
8
|
+
export type { IInfiniteScrollProps } from './components/InfiniteScroll/type'
|
|
9
|
+
export type { IEditorProps } from './components/Editor/type'
|
|
10
|
+
export type { ICardProps } from './components/Card/type'
|
|
11
|
+
export * from './components'
|
|
12
|
+
export declare function setHostVue(vue: any): void
|
|
13
|
+
export declare function getHostVue(): any
|
|
18
14
|
export interface YcVepUiOptions {
|
|
19
|
-
|
|
20
|
-
install: (app: App, ...args: any[]) => void;
|
|
21
|
-
};
|
|
15
|
+
elementPlus?: { install: (app: App, ...args: any[]) => void }
|
|
22
16
|
}
|
|
23
|
-
declare const ycPlugin: {
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
export default ycPlugin;
|
|
27
|
-
export { ycPlugin };
|
|
17
|
+
declare const ycPlugin: { install(app: App, options?: YcVepUiOptions): void }
|
|
18
|
+
export default ycPlugin
|
|
19
|
+
export { ycPlugin }
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-
|
|
1
|
+
import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-C-f6sEuz.js";
|
|
2
2
|
export { e as useDictionary, n as useFetch, r as useRoute, a as useRouter, t as useTable, i as useUser };
|
package/dist/hooks/useFetch.d.ts
CHANGED
package/dist/index.css
CHANGED
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
padding: 15px 0px;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.ui-table[data-v-
|
|
20
|
+
.ui-table[data-v-adf869c1] th.el-table__cell {
|
|
21
21
|
background-color: #fafafa;
|
|
22
22
|
color: #606266;
|
|
23
23
|
}
|
|
24
|
-
.ui-pagination[data-v-
|
|
24
|
+
.ui-pagination[data-v-adf869c1] {
|
|
25
25
|
padding: 20px;
|
|
26
26
|
background-color: white;
|
|
27
27
|
height: 20px;
|
|
@@ -282,7 +282,7 @@ to { transform: rotate(360deg);
|
|
|
282
282
|
align-items: center;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
.affix[data-v-
|
|
285
|
+
.affix[data-v-fb8f5b21] {
|
|
286
286
|
position: fixed;
|
|
287
287
|
right: 0px;
|
|
288
288
|
bottom: 0px;
|
package/dist/utils/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { O as e, _ as t, b as n, v as r, y as i } from "../entry-
|
|
1
|
+
import { O as e, _ as t, b as n, v as r, y as i } from "../entry-C-f6sEuz.js";
|
|
2
2
|
export { t as baseUrl, n as request, e as tempToRender, r as uniq, i as uniqBy };
|
package/dist/vep-ui.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-
|
|
1
|
+
import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-C-f6sEuz.js";
|
|
2
2
|
export { e as UiCard, i as UiDescriptions, v as UiDialog, a as UiEditor, n as UiFilter, r as UiForm, t as UiInfiniteScroll, d as UiStaffSelect, u as UiTable, _ as UiTree, m as UiUpload, s as WcUtils, o as YcApproval, c as YcMessage, l as YcPageAgent, h as default, h as ycPlugin, g as getHostVue, p as hooks, f as setHostVue };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yc-vep-ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "基于 Vue 3 + Element Plus 的企业级 UI 组件库",
|
|
6
6
|
"keywords": [
|
|
@@ -19,10 +19,6 @@
|
|
|
19
19
|
"main": "./dist/vep-ui.js",
|
|
20
20
|
"module": "./dist/vep-ui.js",
|
|
21
21
|
"types": "./dist/entry.d.ts",
|
|
22
|
-
"publishConfig": {
|
|
23
|
-
"access": "public",
|
|
24
|
-
"registry": "https://registry.npmjs.org/"
|
|
25
|
-
},
|
|
26
22
|
"exports": {
|
|
27
23
|
".": {
|
|
28
24
|
"types": "./dist/entry.d.ts",
|
|
@@ -42,12 +38,6 @@
|
|
|
42
38
|
"dist",
|
|
43
39
|
"README.md"
|
|
44
40
|
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"dev": "vite",
|
|
47
|
-
"build": "vue-tsc && vite build",
|
|
48
|
-
"build:lib": "vite build && node scripts/generate-entry-dts.cjs",
|
|
49
|
-
"preview": "vite preview"
|
|
50
|
-
},
|
|
51
41
|
"dependencies": {
|
|
52
42
|
"aieditor": "^1.4.0",
|
|
53
43
|
"jsencrypt": "^3.5.4",
|
|
@@ -77,5 +67,11 @@
|
|
|
77
67
|
},
|
|
78
68
|
"sideEffects": [
|
|
79
69
|
"**/*.css"
|
|
80
|
-
]
|
|
81
|
-
|
|
70
|
+
],
|
|
71
|
+
"scripts": {
|
|
72
|
+
"dev": "vite",
|
|
73
|
+
"build": "vue-tsc && vite build",
|
|
74
|
+
"build:lib": "vite build && node scripts/generate-entry-dts.cjs",
|
|
75
|
+
"preview": "vite preview"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
processCode?: string;
|
|
3
|
-
getData?: () => any;
|
|
4
|
-
};
|
|
5
|
-
declare function __VLS_template(): {
|
|
6
|
-
attrs: Partial<{}>;
|
|
7
|
-
slots: {
|
|
8
|
-
default?(_: {
|
|
9
|
-
data: any;
|
|
10
|
-
}): any;
|
|
11
|
-
};
|
|
12
|
-
refs: {
|
|
13
|
-
processInfoRef: unknown;
|
|
14
|
-
remindRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
|
|
15
|
-
getValues: () => ({
|
|
16
|
-
assignee: string[];
|
|
17
|
-
assigneeName: string[];
|
|
18
|
-
instanceId?: number | undefined;
|
|
19
|
-
activityId?: string | undefined;
|
|
20
|
-
activityCode?: string | undefined;
|
|
21
|
-
activityName?: string | undefined;
|
|
22
|
-
assigneeJson?: any;
|
|
23
|
-
preData?: {
|
|
24
|
-
label: string;
|
|
25
|
-
name: string;
|
|
26
|
-
account: string;
|
|
27
|
-
} | undefined;
|
|
28
|
-
} | {
|
|
29
|
-
assignee: string;
|
|
30
|
-
assigneeName: string;
|
|
31
|
-
instanceId?: number | undefined;
|
|
32
|
-
activityId?: string | undefined;
|
|
33
|
-
activityCode?: string | undefined;
|
|
34
|
-
activityName?: string | undefined;
|
|
35
|
-
assigneeJson?: any;
|
|
36
|
-
preData?: {
|
|
37
|
-
label: string;
|
|
38
|
-
name: string;
|
|
39
|
-
account: string;
|
|
40
|
-
} | undefined;
|
|
41
|
-
})[];
|
|
42
|
-
validate: () => boolean;
|
|
43
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
44
|
-
P: {};
|
|
45
|
-
B: {};
|
|
46
|
-
D: {};
|
|
47
|
-
C: {};
|
|
48
|
-
M: {};
|
|
49
|
-
Defaults: {};
|
|
50
|
-
}, Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
|
|
51
|
-
getValues: () => ({
|
|
52
|
-
assignee: string[];
|
|
53
|
-
assigneeName: string[];
|
|
54
|
-
instanceId?: number | undefined;
|
|
55
|
-
activityId?: string | undefined;
|
|
56
|
-
activityCode?: string | undefined;
|
|
57
|
-
activityName?: string | undefined;
|
|
58
|
-
assigneeJson?: any;
|
|
59
|
-
preData?: {
|
|
60
|
-
label: string;
|
|
61
|
-
name: string;
|
|
62
|
-
account: string;
|
|
63
|
-
} | undefined;
|
|
64
|
-
} | {
|
|
65
|
-
assignee: string;
|
|
66
|
-
assigneeName: string;
|
|
67
|
-
instanceId?: number | undefined;
|
|
68
|
-
activityId?: string | undefined;
|
|
69
|
-
activityCode?: string | undefined;
|
|
70
|
-
activityName?: string | undefined;
|
|
71
|
-
assigneeJson?: any;
|
|
72
|
-
preData?: {
|
|
73
|
-
label: string;
|
|
74
|
-
name: string;
|
|
75
|
-
account: string;
|
|
76
|
-
} | undefined;
|
|
77
|
-
})[];
|
|
78
|
-
validate: () => boolean;
|
|
79
|
-
}, {}, {}, {}, {}> | null;
|
|
80
|
-
readScopeRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
81
|
-
disabled: boolean;
|
|
82
|
-
formData: any;
|
|
83
|
-
}> & Readonly<{}>, {
|
|
84
|
-
formData: {
|
|
85
|
-
readScope: string;
|
|
86
|
-
};
|
|
87
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
88
|
-
P: {};
|
|
89
|
-
B: {};
|
|
90
|
-
D: {};
|
|
91
|
-
C: {};
|
|
92
|
-
M: {};
|
|
93
|
-
Defaults: {};
|
|
94
|
-
}, Readonly<{
|
|
95
|
-
disabled: boolean;
|
|
96
|
-
formData: any;
|
|
97
|
-
}> & Readonly<{}>, {
|
|
98
|
-
formData: {
|
|
99
|
-
readScope: string;
|
|
100
|
-
};
|
|
101
|
-
}, {}, {}, {}, {}> | null;
|
|
102
|
-
};
|
|
103
|
-
rootEl: any;
|
|
104
|
-
};
|
|
105
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
106
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
107
|
-
processInfoRef: unknown;
|
|
108
|
-
remindRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
|
|
109
|
-
getValues: () => ({
|
|
110
|
-
assignee: string[];
|
|
111
|
-
assigneeName: string[];
|
|
112
|
-
instanceId?: number | undefined;
|
|
113
|
-
activityId?: string | undefined;
|
|
114
|
-
activityCode?: string | undefined;
|
|
115
|
-
activityName?: string | undefined;
|
|
116
|
-
assigneeJson?: any;
|
|
117
|
-
preData?: {
|
|
118
|
-
label: string;
|
|
119
|
-
name: string;
|
|
120
|
-
account: string;
|
|
121
|
-
} | undefined;
|
|
122
|
-
} | {
|
|
123
|
-
assignee: string;
|
|
124
|
-
assigneeName: string;
|
|
125
|
-
instanceId?: number | undefined;
|
|
126
|
-
activityId?: string | undefined;
|
|
127
|
-
activityCode?: string | undefined;
|
|
128
|
-
activityName?: string | undefined;
|
|
129
|
-
assigneeJson?: any;
|
|
130
|
-
preData?: {
|
|
131
|
-
label: string;
|
|
132
|
-
name: string;
|
|
133
|
-
account: string;
|
|
134
|
-
} | undefined;
|
|
135
|
-
})[];
|
|
136
|
-
validate: () => boolean;
|
|
137
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
138
|
-
P: {};
|
|
139
|
-
B: {};
|
|
140
|
-
D: {};
|
|
141
|
-
C: {};
|
|
142
|
-
M: {};
|
|
143
|
-
Defaults: {};
|
|
144
|
-
}, Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
|
|
145
|
-
getValues: () => ({
|
|
146
|
-
assignee: string[];
|
|
147
|
-
assigneeName: string[];
|
|
148
|
-
instanceId?: number | undefined;
|
|
149
|
-
activityId?: string | undefined;
|
|
150
|
-
activityCode?: string | undefined;
|
|
151
|
-
activityName?: string | undefined;
|
|
152
|
-
assigneeJson?: any;
|
|
153
|
-
preData?: {
|
|
154
|
-
label: string;
|
|
155
|
-
name: string;
|
|
156
|
-
account: string;
|
|
157
|
-
} | undefined;
|
|
158
|
-
} | {
|
|
159
|
-
assignee: string;
|
|
160
|
-
assigneeName: string;
|
|
161
|
-
instanceId?: number | undefined;
|
|
162
|
-
activityId?: string | undefined;
|
|
163
|
-
activityCode?: string | undefined;
|
|
164
|
-
activityName?: string | undefined;
|
|
165
|
-
assigneeJson?: any;
|
|
166
|
-
preData?: {
|
|
167
|
-
label: string;
|
|
168
|
-
name: string;
|
|
169
|
-
account: string;
|
|
170
|
-
} | undefined;
|
|
171
|
-
})[];
|
|
172
|
-
validate: () => boolean;
|
|
173
|
-
}, {}, {}, {}, {}> | null;
|
|
174
|
-
readScopeRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
175
|
-
disabled: boolean;
|
|
176
|
-
formData: any;
|
|
177
|
-
}> & Readonly<{}>, {
|
|
178
|
-
formData: {
|
|
179
|
-
readScope: string;
|
|
180
|
-
};
|
|
181
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
182
|
-
P: {};
|
|
183
|
-
B: {};
|
|
184
|
-
D: {};
|
|
185
|
-
C: {};
|
|
186
|
-
M: {};
|
|
187
|
-
Defaults: {};
|
|
188
|
-
}, Readonly<{
|
|
189
|
-
disabled: boolean;
|
|
190
|
-
formData: any;
|
|
191
|
-
}> & Readonly<{}>, {
|
|
192
|
-
formData: {
|
|
193
|
-
readScope: string;
|
|
194
|
-
};
|
|
195
|
-
}, {}, {}, {}, {}> | null;
|
|
196
|
-
}, any>;
|
|
197
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
198
|
-
export default _default;
|
|
199
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
200
|
-
new (): {
|
|
201
|
-
$slots: S;
|
|
202
|
-
};
|
|
203
|
-
};
|