bm-admin-ui 1.2.45-alpha → 1.2.46-alpha
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/components/cascader/index.js +77 -77
- package/es/components/edit-form/index.js +1 -1
- package/es/components/float-table/index.d.ts +2 -2
- package/es/components/float-table/src/float-table.vue.d.ts +2 -2
- package/es/components/flow-designer/index.js +1 -1
- package/es/components/form-create/index.js +127 -25
- package/es/components/staffs-selector/index.d.ts +4 -4
- package/es/components/staffs-selector/src/departmentCmp.vue.d.ts +2 -2
- package/es/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +4 -4
- package/lib/components/cascader/index.js +77 -77
- package/lib/components/edit-form/index.js +1 -1
- package/lib/components/float-table/index.d.ts +2 -2
- package/lib/components/float-table/src/float-table.vue.d.ts +2 -2
- package/lib/components/flow-designer/index.js +1 -1
- package/lib/components/form-create/index.js +126 -24
- package/lib/components/staffs-selector/index.d.ts +4 -4
- package/lib/components/staffs-selector/src/departmentCmp.vue.d.ts +2 -2
- package/lib/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +4 -4
- package/package.json +34 -34
- package/theme-chalk/form-create.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/types/components/float-table/index.d.ts +2 -2
- package/types/components/float-table/src/float-table.vue.d.ts +2 -2
- package/types/components/staffs-selector/index.d.ts +4 -4
- package/types/components/staffs-selector/src/departmentCmp.vue.d.ts +2 -2
- package/types/components/staffs-selector/src/multipleCmp.vue.d.ts +2 -2
- package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +4 -4
|
@@ -10,71 +10,71 @@ var _export_sfc = (sfc, props) => {
|
|
|
10
10
|
return target;
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
const _sfc_main = defineComponent({
|
|
14
|
-
name: 'BmCascader',
|
|
15
|
-
components: { DownOutlined },
|
|
16
|
-
props: {
|
|
17
|
-
tipType: {
|
|
18
|
-
type: String,
|
|
19
|
-
default: () => {
|
|
20
|
-
return 'none'
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
width: {
|
|
24
|
-
type: Number,
|
|
25
|
-
default: () => {
|
|
26
|
-
return 200
|
|
27
|
-
},
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
setup(props, { emit, attrs }) {
|
|
31
|
-
const nameArr = (arr) => {
|
|
32
|
-
return arr.reduce(
|
|
33
|
-
(acc, cur) => acc.concat(Array.isArray(cur) ? nameArr(cur) : cur),
|
|
34
|
-
[]
|
|
35
|
-
)
|
|
36
|
-
};
|
|
37
|
-
const state = reactive({
|
|
38
|
-
labelNameList: '',
|
|
39
|
-
visible: false,
|
|
40
|
-
});
|
|
41
|
-
const methods = {
|
|
42
|
-
onmouseover() {
|
|
43
|
-
state.labelNameList.length && (state.visible = true);
|
|
44
|
-
},
|
|
45
|
-
onmouseout() {
|
|
46
|
-
state.labelNameList.length && (state.visible = false);
|
|
47
|
-
},
|
|
48
|
-
onchange(value, selectedOptions) {
|
|
49
|
-
if (attrs.multiple === '' || attrs.multiple) {
|
|
50
|
-
let res = selectedOptions.map((v, k) => {
|
|
51
|
-
return v.map((e, i) => {
|
|
52
|
-
return e.label
|
|
53
|
-
})
|
|
54
|
-
});
|
|
55
|
-
state.labelNameList = nameArr(res).join(',');
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
};
|
|
59
|
-
watch(
|
|
60
|
-
() => state.labelNameList.length,
|
|
61
|
-
(val) => {
|
|
62
|
-
if (!val) {
|
|
63
|
-
state.visible = false;
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
{ deep: true }
|
|
67
|
-
);
|
|
68
|
-
onMounted(() => {
|
|
69
|
-
attrs.value?.length &&
|
|
70
|
-
(state.labelNameList = nameArr(attrs.value).join(','));
|
|
71
|
-
});
|
|
72
|
-
return {
|
|
73
|
-
...toRefs(state),
|
|
74
|
-
...methods,
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
});
|
|
13
|
+
const _sfc_main = defineComponent({
|
|
14
|
+
name: 'BmCascader',
|
|
15
|
+
components: { DownOutlined },
|
|
16
|
+
props: {
|
|
17
|
+
tipType: {
|
|
18
|
+
type: String,
|
|
19
|
+
default: () => {
|
|
20
|
+
return 'none'
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
width: {
|
|
24
|
+
type: Number,
|
|
25
|
+
default: () => {
|
|
26
|
+
return 200
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
setup(props, { emit, attrs }) {
|
|
31
|
+
const nameArr = (arr) => {
|
|
32
|
+
return arr.reduce(
|
|
33
|
+
(acc, cur) => acc.concat(Array.isArray(cur) ? nameArr(cur) : cur),
|
|
34
|
+
[]
|
|
35
|
+
)
|
|
36
|
+
};
|
|
37
|
+
const state = reactive({
|
|
38
|
+
labelNameList: '',
|
|
39
|
+
visible: false,
|
|
40
|
+
});
|
|
41
|
+
const methods = {
|
|
42
|
+
onmouseover() {
|
|
43
|
+
state.labelNameList.length && (state.visible = true);
|
|
44
|
+
},
|
|
45
|
+
onmouseout() {
|
|
46
|
+
state.labelNameList.length && (state.visible = false);
|
|
47
|
+
},
|
|
48
|
+
onchange(value, selectedOptions) {
|
|
49
|
+
if (attrs.multiple === '' || attrs.multiple) {
|
|
50
|
+
let res = selectedOptions.map((v, k) => {
|
|
51
|
+
return v.map((e, i) => {
|
|
52
|
+
return e.label
|
|
53
|
+
})
|
|
54
|
+
});
|
|
55
|
+
state.labelNameList = nameArr(res).join(',');
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
watch(
|
|
60
|
+
() => state.labelNameList.length,
|
|
61
|
+
(val) => {
|
|
62
|
+
if (!val) {
|
|
63
|
+
state.visible = false;
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{ deep: true }
|
|
67
|
+
);
|
|
68
|
+
onMounted(() => {
|
|
69
|
+
attrs.value?.length &&
|
|
70
|
+
(state.labelNameList = nameArr(attrs.value).join(','));
|
|
71
|
+
});
|
|
72
|
+
return {
|
|
73
|
+
...toRefs(state),
|
|
74
|
+
...methods,
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
});
|
|
78
78
|
|
|
79
79
|
const _hoisted_1 = {
|
|
80
80
|
ref: "BmCascader",
|
|
@@ -95,18 +95,18 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
95
95
|
? (openBlock(), createBlock(_component_a_popover, {
|
|
96
96
|
key: 0,
|
|
97
97
|
visible: _ctx.visible,
|
|
98
|
-
"get-popup-container":
|
|
99
|
-
(triggerNode) => {
|
|
100
|
-
return triggerNode.parentNode
|
|
101
|
-
}
|
|
98
|
+
"get-popup-container":
|
|
99
|
+
(triggerNode) => {
|
|
100
|
+
return triggerNode.parentNode
|
|
101
|
+
}
|
|
102
102
|
|
|
103
103
|
}, createSlots({
|
|
104
104
|
default: withCtx(() => [
|
|
105
105
|
createVNode(_component_a_cascader, mergeProps(_ctx.$attrs, {
|
|
106
|
-
style: {
|
|
107
|
-
width:
|
|
108
|
-
_ctx.$attrs.multiple === '' || _ctx.$attrs.multiple ? _ctx.width + 'px' : 'auto',
|
|
109
|
-
minWidth: _ctx.width + 'px',
|
|
106
|
+
style: {
|
|
107
|
+
width:
|
|
108
|
+
_ctx.$attrs.multiple === '' || _ctx.$attrs.multiple ? _ctx.width + 'px' : 'auto',
|
|
109
|
+
minWidth: _ctx.width + 'px',
|
|
110
110
|
},
|
|
111
111
|
"show-arrow": true,
|
|
112
112
|
onMouseover: _ctx.onmouseover,
|
|
@@ -159,10 +159,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
159
159
|
}, createSlots({
|
|
160
160
|
default: withCtx(() => [
|
|
161
161
|
createVNode(_component_a_cascader, mergeProps(_ctx.$attrs, {
|
|
162
|
-
style: {
|
|
163
|
-
width:
|
|
164
|
-
_ctx.$attrs.multiple === '' || _ctx.$attrs.multiple ? _ctx.width + 'px' : 'auto',
|
|
165
|
-
minWidth: _ctx.width + 'px',
|
|
162
|
+
style: {
|
|
163
|
+
width:
|
|
164
|
+
_ctx.$attrs.multiple === '' || _ctx.$attrs.multiple ? _ctx.width + 'px' : 'auto',
|
|
165
|
+
minWidth: _ctx.width + 'px',
|
|
166
166
|
},
|
|
167
167
|
"show-arrow": true,
|
|
168
168
|
onMouseover: _ctx.onmouseover,
|
|
@@ -1070,7 +1070,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1070
1070
|
createVNode(unref(BmOverTooltips), {
|
|
1071
1071
|
title: unref(getShowValue)(item) || tmpForm.value[item.prop]
|
|
1072
1072
|
}, null, 8, ["title"]),
|
|
1073
|
-
createCommentVNode(' <AutoTooltip\
|
|
1073
|
+
createCommentVNode(' <AutoTooltip\n :tooltip="getShowValue(item) || tmpForm[item.prop]"\n /> ')
|
|
1074
1074
|
], 6)) : createCommentVNode("v-if", true),
|
|
1075
1075
|
item.type === "multiText" ? (openBlock(), createElementBlock("div", {
|
|
1076
1076
|
key: 15,
|
|
@@ -42,9 +42,9 @@ declare const BmFloatTable: import("bm-admin-ui/es/utils/with-install").SFCWithI
|
|
|
42
42
|
gridOptions: import("vue").ComputedRef<any>;
|
|
43
43
|
gridEvents: import("vue").ComputedRef<any>;
|
|
44
44
|
pager: import("vue").ComputedRef<any>;
|
|
45
|
-
simpleImage: import("vue").Ref<
|
|
45
|
+
simpleImage: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
46
46
|
[key: string]: any;
|
|
47
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
47
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
48
|
[key: string]: any;
|
|
49
49
|
}> | null | undefined)[]>;
|
|
50
50
|
floatRefsId: import("vue").Ref<{}>;
|
|
@@ -42,9 +42,9 @@ declare const _default: {
|
|
|
42
42
|
gridOptions: import("vue").ComputedRef<any>;
|
|
43
43
|
gridEvents: import("vue").ComputedRef<any>;
|
|
44
44
|
pager: import("vue").ComputedRef<any>;
|
|
45
|
-
simpleImage: import("vue").Ref<
|
|
45
|
+
simpleImage: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
46
46
|
[key: string]: any;
|
|
47
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
47
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
48
48
|
[key: string]: any;
|
|
49
49
|
}> | null | undefined)[]>;
|
|
50
50
|
floatRefsId: import("vue").Ref<{}>;
|
|
@@ -276,7 +276,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
276
276
|
createElementVNode("span", {
|
|
277
277
|
class: normalizeClass(["opeator", { active: __props.isCustom }])
|
|
278
278
|
}, [
|
|
279
|
-
createCommentVNode(' <CopyOutlined\
|
|
279
|
+
createCommentVNode(' <CopyOutlined\n @click.stop="\n () => {\n copyCallback()\n }\n " /> \u6682\u65F6\u5173\u95ED\u590D\u5236\u8282\u70B9 '),
|
|
280
280
|
createVNode(unref(CloseOutlined), {
|
|
281
281
|
onClick: _cache[0] || (_cache[0] = withModifiers(
|
|
282
282
|
() => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { withInstall } from 'bm-admin-ui/es/utils/with-install';
|
|
2
|
-
import { h, defineComponent, computed, openBlock, createBlock, unref, withCtx, createElementBlock, Fragment, renderList, createTextVNode, toDisplayString, nextTick, ref, createVNode, normalizeStyle, withModifiers, createElementVNode, createCommentVNode, normalizeClass, reactive, watch, createSlots, inject, onUnmounted, createStaticVNode, provide
|
|
2
|
+
import { h, defineComponent, computed, openBlock, createBlock, unref, withCtx, createElementBlock, Fragment, renderList, createTextVNode, toDisplayString, nextTick, ref, createVNode, normalizeStyle, withModifiers, createElementVNode, createCommentVNode, normalizeClass, reactive, watch, resolveComponent, createSlots, inject, onUnmounted, createStaticVNode, provide } from 'vue';
|
|
3
3
|
import { Input, InputNumber, RadioGroup, Radio, Select, DatePicker, RangePicker, message, Modal, Layout, LayoutSider, Tree, LayoutContent, Button, Row, Col, Pagination, FormItemRest, Divider, Image, Tabs, TabPane, Cascader } from 'ant-design-vue';
|
|
4
4
|
import dayjs from 'dayjs';
|
|
5
5
|
import Picture from 'bm-admin-ui/es/components/upload';
|
|
@@ -18766,7 +18766,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
18766
18766
|
debounceFetch("");
|
|
18767
18767
|
return (_ctx, _cache) => {
|
|
18768
18768
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
18769
|
-
createCommentVNode(' <Input\
|
|
18769
|
+
createCommentVNode(' <Input\n v-model:value="inputValue"\n placeholder="\u8BF7\u8F93\u5165"\n :disabled="disabled"\n @change="debounceFn($event.target.value)"\n ></Input> '),
|
|
18770
18770
|
createVNode(unref(Select), {
|
|
18771
18771
|
value: __props.value,
|
|
18772
18772
|
placeholder: "\u8BF7\u9009\u62E9",
|
|
@@ -26568,6 +26568,11 @@ const _hoisted_6$3 = {
|
|
|
26568
26568
|
class: "bm-dc-table-widget__top-bar"
|
|
26569
26569
|
};
|
|
26570
26570
|
const _hoisted_7$3 = { class: "bm-dc-table-widget__table" };
|
|
26571
|
+
const _hoisted_8$2 = { class: "bm-confirm-modal-content" };
|
|
26572
|
+
const _hoisted_9$2 = { class: "bm-confirm-modal-icon" };
|
|
26573
|
+
const _hoisted_10$2 = { class: "bm-confirm-modal-body" };
|
|
26574
|
+
const _hoisted_11$3 = /* @__PURE__ */ createElementVNode("div", { class: "bm-confirm-modal-title" }, "\u6279\u91CF\u5BFC\u5165", -1);
|
|
26575
|
+
const _hoisted_12$1 = { class: "bm-confirm-modal-text" };
|
|
26571
26576
|
const _sfc_main$7 = defineComponent({
|
|
26572
26577
|
__name: "table-widget",
|
|
26573
26578
|
props: [
|
|
@@ -26728,6 +26733,23 @@ const _sfc_main$7 = defineComponent({
|
|
|
26728
26733
|
return "";
|
|
26729
26734
|
}
|
|
26730
26735
|
});
|
|
26736
|
+
const conflictStore = reactive({
|
|
26737
|
+
visible: false,
|
|
26738
|
+
msg: "",
|
|
26739
|
+
data: null,
|
|
26740
|
+
clickType: "ok",
|
|
26741
|
+
open(msg, data2) {
|
|
26742
|
+
this.visible = true;
|
|
26743
|
+
this.msg = msg;
|
|
26744
|
+
this.data = data2;
|
|
26745
|
+
},
|
|
26746
|
+
close(clickType) {
|
|
26747
|
+
this.visible = false;
|
|
26748
|
+
this.msg = "";
|
|
26749
|
+
this.data = null;
|
|
26750
|
+
this.clickType = clickType;
|
|
26751
|
+
}
|
|
26752
|
+
});
|
|
26731
26753
|
function isShow(key) {
|
|
26732
26754
|
return props.rule.config.tableAdvancedFeatures.includes(key);
|
|
26733
26755
|
}
|
|
@@ -26910,28 +26932,44 @@ const _sfc_main$7 = defineComponent({
|
|
|
26910
26932
|
width: "140px",
|
|
26911
26933
|
slots: {
|
|
26912
26934
|
default({ row }) {
|
|
26913
|
-
if (item.value === "\u5546\u54C1\u56FE\u7247"
|
|
26914
|
-
|
|
26915
|
-
|
|
26916
|
-
|
|
26917
|
-
|
|
26918
|
-
|
|
26935
|
+
if (item.value === "\u5546\u54C1\u56FE\u7247") {
|
|
26936
|
+
if (row[childField]) {
|
|
26937
|
+
return h(
|
|
26938
|
+
"div",
|
|
26939
|
+
{
|
|
26940
|
+
style: {
|
|
26941
|
+
color: "#9393A3"
|
|
26942
|
+
},
|
|
26943
|
+
class: {
|
|
26944
|
+
"bm-fc-table-img": true
|
|
26945
|
+
}
|
|
26919
26946
|
},
|
|
26920
|
-
|
|
26921
|
-
|
|
26922
|
-
|
|
26923
|
-
|
|
26924
|
-
|
|
26925
|
-
|
|
26926
|
-
|
|
26947
|
+
[
|
|
26948
|
+
h(Image, {
|
|
26949
|
+
src: props.extraConfig.common.previewImg(row[childField]),
|
|
26950
|
+
style: {
|
|
26951
|
+
width: "86px",
|
|
26952
|
+
height: "86px",
|
|
26953
|
+
padding: "8px"
|
|
26954
|
+
}
|
|
26955
|
+
})
|
|
26956
|
+
]
|
|
26957
|
+
);
|
|
26958
|
+
} else {
|
|
26959
|
+
return h(
|
|
26960
|
+
"div",
|
|
26961
|
+
{
|
|
26927
26962
|
style: {
|
|
26928
|
-
|
|
26929
|
-
|
|
26930
|
-
|
|
26963
|
+
color: "#9393A3"
|
|
26964
|
+
},
|
|
26965
|
+
class: {
|
|
26966
|
+
"bm-fc-placeholder": true,
|
|
26967
|
+
"bm-fc-table-img-placeholder": true
|
|
26931
26968
|
}
|
|
26932
|
-
}
|
|
26933
|
-
|
|
26934
|
-
|
|
26969
|
+
},
|
|
26970
|
+
["\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"]
|
|
26971
|
+
);
|
|
26972
|
+
}
|
|
26935
26973
|
}
|
|
26936
26974
|
if (row[childField]) {
|
|
26937
26975
|
return h(BmOverTooltips, { title: row[childField] }, []);
|
|
@@ -26943,8 +26981,7 @@ const _sfc_main$7 = defineComponent({
|
|
|
26943
26981
|
color: "#9393A3"
|
|
26944
26982
|
},
|
|
26945
26983
|
class: {
|
|
26946
|
-
"bm-fc-placeholder": true
|
|
26947
|
-
"bm-fc-table-img-placeholder": true
|
|
26984
|
+
"bm-fc-placeholder": true
|
|
26948
26985
|
}
|
|
26949
26986
|
},
|
|
26950
26987
|
["\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"]
|
|
@@ -27525,7 +27562,7 @@ const _sfc_main$7 = defineComponent({
|
|
|
27525
27562
|
filterByShopcode: props.rule?.config?.dataFiltering,
|
|
27526
27563
|
dataFile: e.target.files?.[0]
|
|
27527
27564
|
}) || {};
|
|
27528
|
-
if (res.promptMessage && !await
|
|
27565
|
+
if (res.promptMessage && !await showConflictModal(res.promptMessage, res)) {
|
|
27529
27566
|
return;
|
|
27530
27567
|
}
|
|
27531
27568
|
if (res.templateDataList?.length) {
|
|
@@ -27595,7 +27632,27 @@ const _sfc_main$7 = defineComponent({
|
|
|
27595
27632
|
});
|
|
27596
27633
|
return !!setting?.config?.doNotClearAfterFilterChange;
|
|
27597
27634
|
}
|
|
27635
|
+
async function showConflictModal(msg, data2) {
|
|
27636
|
+
conflictStore.open(msg, data2);
|
|
27637
|
+
return new Promise((resolve) => {
|
|
27638
|
+
let timer = setInterval(() => {
|
|
27639
|
+
if (conflictStore.visible === false) {
|
|
27640
|
+
resolve(conflictStore.clickType === "ok");
|
|
27641
|
+
clearInterval(timer);
|
|
27642
|
+
}
|
|
27643
|
+
}, 200);
|
|
27644
|
+
});
|
|
27645
|
+
}
|
|
27646
|
+
function handleDownloadConflict() {
|
|
27647
|
+
props.extraConfig.table?.downloadErrorFetch?.({
|
|
27648
|
+
tableConfig: tableConfig.value,
|
|
27649
|
+
columns: validColumns.value,
|
|
27650
|
+
codeField: "promptCode",
|
|
27651
|
+
data: conflictStore.data
|
|
27652
|
+
});
|
|
27653
|
+
}
|
|
27598
27654
|
return (_ctx, _cache) => {
|
|
27655
|
+
const _component_a_button = resolveComponent("a-button");
|
|
27599
27656
|
return openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
27600
27657
|
createElementVNode("div", _hoisted_2$5, [
|
|
27601
27658
|
createTextVNode(toDisplayString(__props.rule.title.title) + " ", 1),
|
|
@@ -27844,7 +27901,52 @@ const _sfc_main$7 = defineComponent({
|
|
|
27844
27901
|
]),
|
|
27845
27902
|
_: 1
|
|
27846
27903
|
})
|
|
27847
|
-
])
|
|
27904
|
+
]),
|
|
27905
|
+
createVNode(unref(Modal), {
|
|
27906
|
+
visible: conflictStore.visible,
|
|
27907
|
+
title: null,
|
|
27908
|
+
centered: "",
|
|
27909
|
+
"wrap-class-name": "bm-confirm-modal bm-confirm-modal-warning bm-confirm-modal-conflict",
|
|
27910
|
+
onCancel: _cache[2] || (_cache[2] = ($event) => conflictStore.close("cancel"))
|
|
27911
|
+
}, {
|
|
27912
|
+
footer: withCtx(() => [
|
|
27913
|
+
createVNode(_component_a_button, {
|
|
27914
|
+
onClick: _cache[0] || (_cache[0] = ($event) => conflictStore.close("cancel"))
|
|
27915
|
+
}, {
|
|
27916
|
+
default: withCtx(() => [
|
|
27917
|
+
createTextVNode("\u53D6\u6D88")
|
|
27918
|
+
]),
|
|
27919
|
+
_: 1
|
|
27920
|
+
}),
|
|
27921
|
+
createVNode(_component_a_button, { onClick: handleDownloadConflict }, {
|
|
27922
|
+
default: withCtx(() => [
|
|
27923
|
+
createTextVNode("\u4E0B\u8F7D\u51B2\u7A81\u6570\u636E")
|
|
27924
|
+
]),
|
|
27925
|
+
_: 1
|
|
27926
|
+
}),
|
|
27927
|
+
createVNode(_component_a_button, {
|
|
27928
|
+
type: "primary",
|
|
27929
|
+
onClick: _cache[1] || (_cache[1] = ($event) => conflictStore.close("ok"))
|
|
27930
|
+
}, {
|
|
27931
|
+
default: withCtx(() => [
|
|
27932
|
+
createTextVNode("\u786E\u5B9A")
|
|
27933
|
+
]),
|
|
27934
|
+
_: 1
|
|
27935
|
+
})
|
|
27936
|
+
]),
|
|
27937
|
+
default: withCtx(() => [
|
|
27938
|
+
createElementVNode("div", _hoisted_8$2, [
|
|
27939
|
+
createElementVNode("div", _hoisted_9$2, [
|
|
27940
|
+
createVNode(unref(ExclamationCircleFilled))
|
|
27941
|
+
]),
|
|
27942
|
+
createElementVNode("div", _hoisted_10$2, [
|
|
27943
|
+
_hoisted_11$3,
|
|
27944
|
+
createElementVNode("div", _hoisted_12$1, toDisplayString(conflictStore.msg), 1)
|
|
27945
|
+
])
|
|
27946
|
+
])
|
|
27947
|
+
]),
|
|
27948
|
+
_: 1
|
|
27949
|
+
}, 8, ["visible"])
|
|
27848
27950
|
]);
|
|
27849
27951
|
};
|
|
27850
27952
|
}
|
|
@@ -902,9 +902,9 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
902
902
|
searchVal: import("vue").Ref<string>;
|
|
903
903
|
selectAll: import("vue").Ref<boolean>;
|
|
904
904
|
indeterminate: import("vue").Ref<boolean>;
|
|
905
|
-
emptyPic: import("vue").Ref<
|
|
905
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
906
906
|
[key: string]: any;
|
|
907
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
907
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
908
908
|
[key: string]: any;
|
|
909
909
|
}> | null | undefined)[]>;
|
|
910
910
|
isFulfill: import("vue").Ref<boolean>;
|
|
@@ -977,9 +977,9 @@ declare const BmStaffsSelector: import("bm-admin-ui/es/utils/with-install").SFCW
|
|
|
977
977
|
searchVal: import("vue").Ref<string>;
|
|
978
978
|
selectAll: import("vue").Ref<boolean>;
|
|
979
979
|
indeterminate: import("vue").Ref<boolean>;
|
|
980
|
-
emptyPic: import("vue").Ref<
|
|
980
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
981
981
|
[key: string]: any;
|
|
982
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
982
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
983
983
|
[key: string]: any;
|
|
984
984
|
}> | null | undefined)[]>;
|
|
985
985
|
isFulfill: import("vue").Ref<boolean>;
|
|
@@ -20,9 +20,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
searchVal: import("vue").Ref<string>;
|
|
21
21
|
selectAll: import("vue").Ref<boolean>;
|
|
22
22
|
indeterminate: import("vue").Ref<boolean>;
|
|
23
|
-
emptyPic: import("vue").Ref<
|
|
23
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
24
24
|
[key: string]: any;
|
|
25
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
26
|
[key: string]: any;
|
|
27
27
|
}> | null | undefined)[]>;
|
|
28
28
|
isFulfill: import("vue").Ref<boolean>;
|
|
@@ -21,9 +21,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
searchVal: import("vue").Ref<string>;
|
|
22
22
|
selectAll: import("vue").Ref<boolean>;
|
|
23
23
|
indeterminate: import("vue").Ref<boolean>;
|
|
24
|
-
emptyPic: import("vue").Ref<
|
|
24
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
25
|
[key: string]: any;
|
|
26
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
26
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
27
27
|
[key: string]: any;
|
|
28
28
|
}> | null | undefined)[]>;
|
|
29
29
|
isFulfill: import("vue").Ref<boolean>;
|
|
@@ -902,9 +902,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
902
902
|
searchVal: import("vue").Ref<string>;
|
|
903
903
|
selectAll: import("vue").Ref<boolean>;
|
|
904
904
|
indeterminate: import("vue").Ref<boolean>;
|
|
905
|
-
emptyPic: import("vue").Ref<
|
|
905
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
906
906
|
[key: string]: any;
|
|
907
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
907
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
908
908
|
[key: string]: any;
|
|
909
909
|
}> | null | undefined)[]>;
|
|
910
910
|
isFulfill: import("vue").Ref<boolean>;
|
|
@@ -977,9 +977,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
977
977
|
searchVal: import("vue").Ref<string>;
|
|
978
978
|
selectAll: import("vue").Ref<boolean>;
|
|
979
979
|
indeterminate: import("vue").Ref<boolean>;
|
|
980
|
-
emptyPic: import("vue").Ref<
|
|
980
|
+
emptyPic: import("vue").Ref<(string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
981
981
|
[key: string]: any;
|
|
982
|
-
}> | null | undefined) | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
982
|
+
}> | null | undefined) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
983
983
|
[key: string]: any;
|
|
984
984
|
}> | null | undefined)[]>;
|
|
985
985
|
isFulfill: import("vue").Ref<boolean>;
|