cnhis-design-vue 3.1.22-beta.1 → 3.1.22-beta.10
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/big-table/index2.js +0 -2
- package/es/components/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +22 -30
- package/es/components/big-table/src/components/edit-form/edit-date.js +81 -10
- package/es/components/big-table/src/components/edit-form/edit-input.js +1 -0
- package/es/components/big-table/src/hooks/useEdit2.js +2 -2
- package/es/components/big-table/style/index.css +1 -1
- package/es/components/fabric-chart/index.d.ts +1 -0
- package/es/components/fabric-chart/src/FabricChart.js +3 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter2.js +15 -3
- package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/useLeft2.js +7 -5
- package/es/components/fabric-chart/src/interface.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/cascader.js +10 -7
- package/es/components/form-render/src/components/renderer/combination.d.ts +7 -0
- package/es/components/form-render/src/components/renderer/combination.js +4 -1
- package/es/components/form-render/src/components/renderer/date.js +11 -4
- package/es/components/form-render/src/components/renderer/input.js +2 -2
- package/es/components/form-render/src/components/renderer/inputNumber.js +2 -2
- package/es/components/form-render/src/components/renderer/search.js +3 -3
- package/es/components/form-render/src/components/renderer/select.js +3 -3
- package/es/components/form-render/src/components/renderer/textarea.js +2 -2
- package/es/components/form-render/src/hooks/useCommonInjection2.js +6 -2
- package/es/components/form-render/src/utils/schema.d.ts +4 -1
- package/es/components/form-render/src/utils/schema.js +1 -1
- package/es/components/form-render/src/utils/schema2.js +9 -2
- package/es/components/grid/index2.js +0 -2
- package/es/components/iho-table/index.d.ts +4266 -337
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/index2.js +9 -4
- package/es/components/iho-table/src/IhoTable.js +39 -13
- package/es/components/iho-table/src/IhoTable.vue.d.ts +4254 -326
- package/es/components/iho-table/src/components/IhoTableColumn.d.ts +2 -2
- package/es/components/iho-table/src/components/IhoTableColumn.js +25 -5
- package/es/components/iho-table/src/constants/index.d.ts +8 -1
- package/es/components/iho-table/src/constants/index.js +1 -1
- package/es/components/iho-table/src/constants/index2.js +79 -1
- package/es/components/iho-table/src/hooks/index.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +5 -0
- package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +71 -24
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +14 -0
- package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks2.js +39 -1
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +61 -60
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +62 -60
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +4 -1
- package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks2.js +4 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.d.ts +2 -2
- package/es/components/iho-table/src/hooks/useTablePlugin2.js +2 -3
- package/es/components/iho-table/src/plugins/defaultConfigPlugin/index2.js +3 -2
- package/es/components/iho-table/src/plugins/index.d.ts +1 -0
- package/es/components/iho-table/src/plugins/index.js +8 -5
- package/es/components/iho-table/src/plugins/index2.js +8 -5
- package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index2.js +10 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/index.d.ts +2 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/index.js +7 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.d.ts +1 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/index.js +1 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.d.ts +1 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +49 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.d.ts → widgets/checkRendererPlugin.d.ts} +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/{checkRendererPlugin.js → widgets/checkRendererPlugin.js} +2 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.d.ts → widgets/colorRendererPlugin.d.ts} +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/{colorRendererPlugin.js → widgets/colorRendererPlugin.js} +6 -8
- package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.d.ts → widgets/defaultRendererPlugin.d.ts} +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/{defaultRendererPlugin.js → widgets/defaultRendererPlugin.js} +4 -4
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.d.ts +6 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/index.js +6 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.d.ts → widgets/labelRendererPlugin.d.ts} +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/{labelRendererPlugin.js → widgets/labelRendererPlugin.js} +3 -3
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.d.ts +2 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.js +89 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.d.ts → widgets/seqRendererPlugin.d.ts} +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/{seqRendererPlugin.js → widgets/seqRendererPlugin.js} +3 -3
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.d.ts +1 -0
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.js +1 -0
- package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index2.js +72 -0
- package/es/components/iho-table/src/types/index.d.ts +31 -8
- package/es/components/iho-table/src/types/pluginType.d.ts +91 -64
- package/es/components/iho-table/src/utils/index.d.ts +3 -0
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/iho-table/src/utils/index2.js +16 -1
- package/es/components/index.css +1 -1
- package/es/components/index.js +1 -1
- package/es/components/index2.js +1 -1
- package/package.json +4 -4
- package/es/components/form-render/src/components/index.d.ts +0 -0
- package/es/components/form-render/src/components/index.js +0 -1
- package/es/shared/utils/loadVxe.d.ts +0 -2
- package/es/shared/utils/loadVxe.js +0 -1
- package/es/shared/utils/loadVxe2.js +0 -12
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { COMPONENT_NAMESPACE } from '../../shared/global/variable2.js';
|
|
2
2
|
import { safeComponentRegister } from '../../shared/utils/index2.js';
|
|
3
|
-
import { loadVxeTable } from '../../shared/utils/loadVxe2.js';
|
|
4
3
|
import { expandXEUtils } from '../../shared/utils/utilExpand.js';
|
|
5
4
|
import '../index2.js';
|
|
6
5
|
import script from './src/BigTable.js';
|
|
@@ -12,7 +11,6 @@ const BigTable = script;
|
|
|
12
11
|
BigTable.install = function(app) {
|
|
13
12
|
safeComponentRegister(app, BigTable, COMPONENT_NAMESPACE + "BigTable");
|
|
14
13
|
safeComponentRegister(app, Grid, COMPONENT_NAMESPACE + "Grid");
|
|
15
|
-
loadVxeTable(app);
|
|
16
14
|
return expandXEUtils();
|
|
17
15
|
};
|
|
18
16
|
|
|
@@ -14,8 +14,7 @@ import { useAnnotation } from './hooks/useAnnotation.js';
|
|
|
14
14
|
import { useSeparateRow, useSeparateMap } from './hooks/useSeparateRow2.js';
|
|
15
15
|
import { SettingsSharp, CaretDown, CaretForward, CopyOutline, SyncOutline } from '@vicons/ionicons5';
|
|
16
16
|
import NoData from './components/NoData.js';
|
|
17
|
-
import script from '../../../shared/components/
|
|
18
|
-
import script$1 from '../../../shared/components/SvgIcon/SvgIcon.js';
|
|
17
|
+
import script from '../../../shared/components/SvgIcon/SvgIcon.js';
|
|
19
18
|
import { useMessage, NIcon, NTooltip, NCheckbox, NCheckboxGroup, NGrid, NGi, NSpace, NButton, NPopconfirm, NProgress, NDropdown, NSwitch, NPopover, NTabs, NTabPane } from 'naive-ui';
|
|
20
19
|
import Grid from '../../grid/index2.js';
|
|
21
20
|
import XEUtils from 'xe-utils';
|
|
@@ -291,11 +290,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
291
290
|
selectTableDisable: false
|
|
292
291
|
};
|
|
293
292
|
});
|
|
294
|
-
|
|
293
|
+
if (props.columnConfig.isEdit) {
|
|
294
|
+
await table.loadData(data);
|
|
295
|
+
} else {
|
|
296
|
+
await table.loadData(await separate(formatList, data));
|
|
297
|
+
}
|
|
295
298
|
table.setCurrentRow({});
|
|
296
299
|
setCurrentPageRowChecked();
|
|
297
300
|
setGroupTreeExpand();
|
|
298
|
-
resetTableInlineEditStatus();
|
|
299
301
|
};
|
|
300
302
|
separateHandle.clear();
|
|
301
303
|
separateHandle.add(() => loadData(props.data));
|
|
@@ -545,7 +547,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
545
547
|
},
|
|
546
548
|
editTrigger: state.editConfig.trigger
|
|
547
549
|
};
|
|
548
|
-
if (
|
|
550
|
+
if (["date", "time"].includes(formType)) {
|
|
549
551
|
propsData.formattedValue = row[col.columnName];
|
|
550
552
|
} else if (formatMap) {
|
|
551
553
|
propsData.value = row[formatMap.value];
|
|
@@ -968,33 +970,23 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
968
970
|
const toolTipTitle = (item, type) => {
|
|
969
971
|
var _a;
|
|
970
972
|
let name = item.formTitle || item.alias || item.title;
|
|
971
|
-
|
|
972
|
-
let isAlias = false;
|
|
973
|
+
item.alias;
|
|
973
974
|
if (((_a = props.tableOptions) == null ? void 0 : _a.dataSourceType) == "guage") {
|
|
974
|
-
|
|
975
|
-
}
|
|
976
|
-
if (name && tooltipTitle && name !== tooltipTitle) {
|
|
977
|
-
isAlias = !!tooltipTitle;
|
|
975
|
+
item.alias || item.title;
|
|
978
976
|
}
|
|
979
977
|
if (isFunction(item.headerSlotFn))
|
|
980
978
|
return () => item.headerSlotFn(item);
|
|
981
979
|
if (type === "format")
|
|
982
|
-
return [createVNode(
|
|
983
|
-
"
|
|
984
|
-
|
|
985
|
-
"isAlias": isAlias
|
|
986
|
-
}, null), renderAnnotation(item)];
|
|
980
|
+
return [createVNode("span", {
|
|
981
|
+
"class": "header-title-span"
|
|
982
|
+
}, [name]), renderAnnotation(item)];
|
|
987
983
|
return () => {
|
|
988
|
-
return [createVNode(
|
|
989
|
-
"
|
|
990
|
-
"
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
"component": state.isExpand && state.total < 1001 ? CaretDown : CaretForward,
|
|
995
|
-
"onClick": (e) => triggerExpand(e, state.isExpand)
|
|
996
|
-
}, null) : ""]
|
|
997
|
-
}), renderAnnotation(item)];
|
|
984
|
+
return [item.treeNode && state.isTree == 1 ? createVNode(NIcon, {
|
|
985
|
+
"component": state.isExpand && state.total < 1001 ? CaretDown : CaretForward,
|
|
986
|
+
"onClick": (e) => triggerExpand(e, state.isExpand)
|
|
987
|
+
}, null) : "", createVNode("span", {
|
|
988
|
+
"class": "header-title-span"
|
|
989
|
+
}, [name]), renderAnnotation(item)];
|
|
998
990
|
};
|
|
999
991
|
};
|
|
1000
992
|
const triggerExpand = (e, isExpand) => {
|
|
@@ -1631,7 +1623,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1631
1623
|
"onPositiveClick": () => confirmScanMulti(params)
|
|
1632
1624
|
}, {
|
|
1633
1625
|
trigger() {
|
|
1634
|
-
return createVNode(script
|
|
1626
|
+
return createVNode(script, {
|
|
1635
1627
|
"class": "scan-multi-delete",
|
|
1636
1628
|
"iconClass": "shanchu"
|
|
1637
1629
|
}, null);
|
|
@@ -1848,7 +1840,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1848
1840
|
}, [createVNode("img", {
|
|
1849
1841
|
"class": "bigTable-qr-img",
|
|
1850
1842
|
"src": src
|
|
1851
|
-
}, null), createVNode("span", null, [createVNode(script
|
|
1843
|
+
}, null), createVNode("span", null, [createVNode(script, {
|
|
1852
1844
|
"iconClass": "fangda"
|
|
1853
1845
|
}, null)])])];
|
|
1854
1846
|
};
|
|
@@ -1932,7 +1924,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1932
1924
|
}, null);
|
|
1933
1925
|
} else {
|
|
1934
1926
|
icon = createVNode(NTooltip, null, {
|
|
1935
|
-
trigger: () => createVNode(script
|
|
1927
|
+
trigger: () => createVNode(script, {
|
|
1936
1928
|
"iconClass": btn.icon,
|
|
1937
1929
|
"style": {
|
|
1938
1930
|
marginRight: mr
|
|
@@ -1942,7 +1934,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1942
1934
|
});
|
|
1943
1935
|
}
|
|
1944
1936
|
} else if (btn.iconSetting) {
|
|
1945
|
-
icon = createVNode(script
|
|
1937
|
+
icon = createVNode(script, {
|
|
1946
1938
|
"iconClass": JSON.parse(btn.iconSetting).icon,
|
|
1947
1939
|
"style": {
|
|
1948
1940
|
marginRight: mr
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent, computed, createVNode, mergeProps } from 'vue';
|
|
1
|
+
import { defineComponent, ref, computed, watch, createVNode, mergeProps } from 'vue';
|
|
2
2
|
import { generateTimeFormat } from '../../../../../shared/utils/index2.js';
|
|
3
|
-
import { isFunction } from 'lodash-es';
|
|
4
|
-
import { NDatePicker } from 'naive-ui';
|
|
3
|
+
import { isFunction, isNaN } from 'lodash-es';
|
|
4
|
+
import { NDatePicker, NPopover, NInput } from 'naive-ui';
|
|
5
5
|
import { useCommon } from './useCommon2.js';
|
|
6
6
|
|
|
7
7
|
var EditDate = defineComponent({
|
|
@@ -33,7 +33,9 @@ var EditDate = defineComponent({
|
|
|
33
33
|
formRef,
|
|
34
34
|
isShow
|
|
35
35
|
} = useCommon(props, attrs);
|
|
36
|
+
const __value = ref(attrs.formattedValue);
|
|
36
37
|
const onConfirm = (value) => {
|
|
38
|
+
__value.value = value;
|
|
37
39
|
emit("formChange", {
|
|
38
40
|
value,
|
|
39
41
|
row: props.row,
|
|
@@ -107,6 +109,45 @@ var EditDate = defineComponent({
|
|
|
107
109
|
return customDateDisabled(ts, props.row);
|
|
108
110
|
};
|
|
109
111
|
}
|
|
112
|
+
function getFormatDate(str) {
|
|
113
|
+
if (!str)
|
|
114
|
+
return "";
|
|
115
|
+
const d = new Date(str);
|
|
116
|
+
const month = `00${d.getMonth() + 1}`.slice(-2);
|
|
117
|
+
const day = `00${d.getDate()}`.slice(-2);
|
|
118
|
+
const valueFormat = formatConfig.value.valueFormat;
|
|
119
|
+
const format = valueFormat.includes("/") ? "/" : valueFormat.includes(".") ? "." : "-";
|
|
120
|
+
let date = `${d.getFullYear()}${format}${month}${format}${day}`;
|
|
121
|
+
const dTime = d.getTime();
|
|
122
|
+
const connectFieldTime = new Date(props.row[connectField]).getTime();
|
|
123
|
+
if (props.row[connectField] && (isStartDate && dTime > connectFieldTime || isEndDate && dTime < connectFieldTime)) {
|
|
124
|
+
date = "";
|
|
125
|
+
}
|
|
126
|
+
return date;
|
|
127
|
+
}
|
|
128
|
+
function onBlur() {
|
|
129
|
+
let date = __value.value;
|
|
130
|
+
if (isNaN(new Date(date).getTime())) {
|
|
131
|
+
if (/^\d{8}$/.test(date)) {
|
|
132
|
+
const dateNew = `${date.slice(0, 4)} ${date.slice(4, 6)} ${date.slice(6)}`;
|
|
133
|
+
date = "";
|
|
134
|
+
if (!isNaN(new Date(dateNew).getTime())) {
|
|
135
|
+
date = getFormatDate(dateNew);
|
|
136
|
+
}
|
|
137
|
+
} else {
|
|
138
|
+
date = "";
|
|
139
|
+
}
|
|
140
|
+
} else {
|
|
141
|
+
date = getFormatDate(date);
|
|
142
|
+
}
|
|
143
|
+
__value.value = date || void 0;
|
|
144
|
+
emit("formChange", {
|
|
145
|
+
value: __value.value,
|
|
146
|
+
row: props.row,
|
|
147
|
+
column: props.col,
|
|
148
|
+
index: props.index
|
|
149
|
+
});
|
|
150
|
+
}
|
|
110
151
|
const formatConfig = computed(() => {
|
|
111
152
|
var _a;
|
|
112
153
|
const valueFormat = ((_a = props.col.componentProps) == null ? void 0 : _a.valueFormat) || props.col.valueFormat || "yyyy-MM-dd HH:mm:ss";
|
|
@@ -130,13 +171,43 @@ var EditDate = defineComponent({
|
|
|
130
171
|
if (config.type.includes("time")) {
|
|
131
172
|
config.isTimeDisabled = customDateDisabledDecorator(props.col.isTimeDisabled) || isTimeDisabled;
|
|
132
173
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
174
|
+
watch(() => attrs.formattedValue, (value) => {
|
|
175
|
+
__value.value = value;
|
|
176
|
+
});
|
|
177
|
+
return () => {
|
|
178
|
+
var _a;
|
|
179
|
+
return ((_a = props.col.componentProps) == null ? void 0 : _a.isPopover) ? createVNode(NPopover, mergeProps({
|
|
180
|
+
"show": isShow.value,
|
|
181
|
+
"trigger": "click",
|
|
182
|
+
"showArrow": false,
|
|
183
|
+
"placement": "bottom-start",
|
|
184
|
+
"style": "padding: 0"
|
|
185
|
+
}, props.col.componentProps || {}, {
|
|
186
|
+
"onClickoutside": () => isShow.value = false
|
|
187
|
+
}), {
|
|
188
|
+
trigger: () => createVNode(NInput, {
|
|
189
|
+
"ref": formRef,
|
|
190
|
+
"clearable": true,
|
|
191
|
+
"value": __value.value,
|
|
192
|
+
"onUpdate:value": ($event) => __value.value = $event,
|
|
193
|
+
"onBlur": onBlur,
|
|
194
|
+
"onClick": () => isShow.value = true
|
|
195
|
+
}, null),
|
|
196
|
+
default: () => createVNode(NDatePicker, mergeProps({
|
|
197
|
+
"panel": true,
|
|
198
|
+
"show": isShow.value,
|
|
199
|
+
"onUpdate:show": ($event) => isShow.value = $event
|
|
200
|
+
}, attrs, config, {
|
|
201
|
+
"onUpdateFormattedValue": onConfirm
|
|
202
|
+
}), null)
|
|
203
|
+
}) : createVNode(NDatePicker, mergeProps({
|
|
204
|
+
"ref": formRef,
|
|
205
|
+
"show": isShow.value,
|
|
206
|
+
"onUpdate:show": ($event) => isShow.value = $event
|
|
207
|
+
}, attrs, config, {
|
|
208
|
+
"onUpdateFormattedValue": onConfirm
|
|
209
|
+
}), null);
|
|
210
|
+
};
|
|
140
211
|
}
|
|
141
212
|
});
|
|
142
213
|
|
|
@@ -65,7 +65,7 @@ const useEdit = (props, state, emit, xGrid) => {
|
|
|
65
65
|
}) => {
|
|
66
66
|
var _a, _b;
|
|
67
67
|
let oldValue = row[column.columnName];
|
|
68
|
-
if (
|
|
68
|
+
if (["input", "number"].includes(column == null ? void 0 : column.formType) && ((_a = props.columnConfig) == null ? void 0 : _a.formValidate)) {
|
|
69
69
|
row[column.columnName] = (_b = props.columnConfig) == null ? void 0 : _b.formValidate({
|
|
70
70
|
row,
|
|
71
71
|
column,
|
|
@@ -82,7 +82,7 @@ const useEdit = (props, state, emit, xGrid) => {
|
|
|
82
82
|
} else {
|
|
83
83
|
row[column.columnName] = value;
|
|
84
84
|
}
|
|
85
|
-
if (
|
|
85
|
+
if (["date", "time"].includes(column == null ? void 0 : column.formType) && !value) {
|
|
86
86
|
row[column.columnName] = void 0;
|
|
87
87
|
}
|
|
88
88
|
emit("formChange", { value, row, column, index, oldValue, ...type ? { type } : {} });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.big-table-filter-wrap{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.2);display:flex;flex-direction:column;flex-wrap:wrap;margin-top:-6px;min-width:280px;overflow:hidden;position:fixed;transform:translateX(-2%);transition:width 2s;z-index:99998}.big-table-filter-wrap .sort-list{margin-top:6px}.big-table-filter-wrap .sort-item{align-items:center;display:flex;height:32px;padding:0 13px}.big-table-filter-wrap .sort-item.active,.big-table-filter-wrap .sort-item:hover{background:#f2f2f2}.big-table-filter-wrap .sort-icon{background-size:contain;display:inline-block;height:16px;width:16px}.big-table-filter-wrap .sort-text{color:rgba(0,0,0,.8);font-size:14px;line-height:32px;margin-left:11px}.big-table-filter-wrap .sort-icon-desc{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABT0lEQVRYR+3WvSuGYRTH8c9TykpJSimLMvgHpLyUCQsmg/wBMss/ILvdJgspNnkbZFYGk7JQSAaLwUuX7uFxu3E/nvvqSd3XeHW6zvec65zfORUNPpUG+1cClBnIysABhiMV5y4mqt/OAliPCHCImd8AIgWf/WzMIhzFK/Z/iigWQAtuE4A2PH0HEQugG5eJ005clwBlBmrJwDwGcorBNjYybOsqwit05QQ4R1/RAB3oqQHgoWiAnL5/NKvrC/4tQBNacYesDAR5fkxHV6QU72EQczhNSfE4VpOOmY01jsOyMYYXLGElcbSIZT4W4C1MxQIIUy9sU1ltGXyeYQSfuua7L2jOWYnPKbt2HKE3dR/0Iqx593lq4AT9OQE2MZ2yDTpyXKUlF0lthP3gy8nKwBqGcgLsYCHDNuwAAe4Nk7ipZRbk9F2MWZFt+CeiEuAdAU5CIQxYYdUAAAAASUVORK5CYII=")}.big-table-filter-wrap .filter-header{cursor:auto;padding:0 13px}.big-table-filter-wrap .filter-header-icon{border-right-color:#333;border-top-color:#333}.big-table-filter-wrap .filter-header-text{margin-left:11px}.big-table-filter-wrap .check-search-wrap{background:#f7f7f7;display:flex;justify-content:center;padding:8px 0;width:100%}.big-table-filter-wrap .check-seach-input{line-height:32px}.big-table-filter-wrap .checkbox-box{padding-right:3px;width:100%}.big-table-filter-wrap .checkbox-wrap{background:#fff;display:flex;flex-direction:column;overflow-y:auto;padding-left:13px;padding-right:3px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar{height:4px;width:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-thumb{background-color:#d5d5d5;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-corner{background-color:#000;border-radius:4px;width:4px}.big-table-filter-wrap .checkbox-wrap--search{padding-right:10px}.big-table-filter-wrap .checkbox-btn-wrap{display:flex;padding:9px 10px 9px 14px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn{padding:0;width:56px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn+.checkbox-btn{margin-left:8px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn{border:0;border-radius:0;margin:0 13px;position:relative;width:auto}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn:hover:after{background-color:#5585f5;bottom:5px;content:"";display:block;height:1px;position:absolute;width:100%}.big-table-filter-wrap .arrows-icon{bottom:-1px;cursor:nw-resize;font-size:15px;height:20px;position:absolute;right:-1px;width:25px}.big-table__separate{padding:4px}.big-table__separatePlaceholder{display:inline-block;max-width:0;visibility:hidden;width:0;word-break:keep-all}.custom-big-table{position:relative}.custom-big-table .n-input{width:fit-content}.custom-big-table .img-wrap{align-items:center;display:flex;height:100%;line-height:1;padding:2px 0}.custom-big-table .img-wrap img{cursor:pointer;max-height:100%;object-fit:contain}.custom-big-table .img-wrap.img-circle img{border-radius:50%;object-fit:contain;width:28px}.custom-big-table .bigTable-qr-span{display:inline-block;height:100%;position:relative}.custom-big-table .bigTable-qr-span .bigTable-qr-img{max-height:96%}.custom-big-table .bigTable-qr-span>span{align-items:center;background:rgba(0,0,0,.7);color:#fff;cursor:pointer;display:none;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.custom-big-table .bigTable-qr-span:hover>span{display:inline-flex}.custom-big-table .base-form{align-items:center;display:flex;overflow:hidden!important;width:100%}.custom-big-table .base-form-content{width:100%}.custom-big-table textarea{height:32px;margin-bottom:0;resize:none}.custom-big-table .formItem-select-multiple{align-items:center;display:flex;line-height:40px;width:100%}.custom-big-table.mt{height:calc(100% - 78px)!important;margin-top:26px}.custom-big-table.expand-padding .vxe-table .vxe-body--expanded-cell{padding-left:66px!important;padding-right:66px!important}.custom-big-table th.vxe-header--column{cursor:pointer}.custom-big-table .row-btn{margin-right:10px}.custom-big-table .vxe-table{transform:translateZ(0)}.custom-big-table .vxe-table .vxe-table--empty-content,.custom-big-table .vxe-table .vxe-table--empty-content>div{height:100%;width:100%}.custom-big-table .vxe-table .vxe-table--empty-content>div .no-data-tip{display:inline-flex}.custom-big-table .vxe-table .col--checkbox .vxe-cell,.custom-big-table .vxe-table .col--seq .vxe-cell{padding:0}.custom-big-table .vxe-table .col--checkbox .vxe-cell .vxe-checkbox--label,.custom-big-table .vxe-table .col--seq .vxe-cell .vxe-checkbox--label{padding-left:0}.custom-big-table .vxe-table .vxe-cell .vxe-tree-cell{height:100%}.custom-big-table .vxe-table .scan-multi-delete{color:#f06f64}.custom-big-table .vxe-table .vxe-table--header{background-color:#f2f2f2}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title{display:inline-flex;height:100%;line-height:unset;width:100%}.custom-big-table .vxe-table .vxe-table--header .col--checkbox .vxe-cell--title,.custom-big-table .vxe-table .vxe-table--header .col--seq .vxe-cell--title{display:inline-block}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:0}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.custom-big-table .vxe-table .vxe-footer--row .vxe-footer--column>.vxe-cell .vxe-cell--item{height:30px;line-height:30px}.custom-big-table .vxe-table .vxe-cell--checkbox .vxe-checkbox--label{display:none}.custom-big-table .filter-box{align-items:center;display:flex;width:100%}.custom-big-table .filter-box .text-over-tooltip-components{max-width:calc(100% - 40px)}.custom-big-table .filter-box .vxe-filter--btn{border-right-color:#c0c4cc;border-top-color:#c0c4cc}.custom-big-table .filter-box .vxe-filter--btn.active{border-right-color:#35393c;border-top-color:#35393c}.custom-big-table .filter-box .vxe-filter--btn.checked{border-right-color:#5585f5;border-top-color:#5585f5}.custom-big-table .disabled-checked-tips{background:#fff;border:2px solid #ff1818;border-radius:50%;bottom:0;box-sizing:border-box;height:16px;margin-top:-8px;overflow:hidden;position:absolute;right:0;top:50%;width:16px}.custom-big-table .disabled-checked-tips:after{background-color:#ff1818;content:"";height:2px;left:0;position:absolute;top:0;transform:rotate(45deg);transform-origin:0 2px;width:16px}.custom-big-table .form-select-table .n-base-select-menu__empty{display:none}.custom-big-table .percent-wrap{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.custom-big-table .percent-wrap .percent-value{line-height:1;margin-bottom:-4px;margin-top:4px}.custom-big-table .refresh{align-items:center;background-color:#fff;border-bottom-left-radius:14px;border-top-left-radius:14px;box-shadow:0 2px 4px 0 hsla(0,0%,42%,.13);color:#5585f5;cursor:pointer;display:flex;font-size:12px;height:27px;padding-left:14px;padding-right:14px;position:absolute;right:0;top:6px;z-index:1}.custom-big-table .refresh-row{margin-bottom:0;margin-left:3px}.custom-big-table .check-wrap{background:#ffffe9;display:flex;justify-content:center;line-height:26px;margin-top:-26px;position:absolute;width:100%}.custom-big-table .check-wrap .check-wrap-btn,.custom-big-table .check-wrap .check-wrap-title{color:#000;cursor:pointer;font-size:12px;margin-bottom:0}.custom-big-table .check-wrap .check-wrap-btn{color:#5585f5}.custom-big-table .domPropsInnerHTML-span{height:100%}.custom-big-table .domPropsInnerHTML-span img{display:inline-block;height:var(--tableImageHeight);width:var(--tableImageWidth)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom,.custom-big-table .domPropsInnerHTML-span .icon-dot-red{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue,.custom-big-table .domPropsInnerHTML-span .icon-dot-green{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray,.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu,.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit,.custom-big-table .domPropsInnerHTML-span .icon-dot-close{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design,.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop-complete{background:#6381f9;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:4px 0 4px 0 rgba(0,0,0,.12)}.custom-big-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-4px 0 4px 0 rgba(0,0,0,.12)}.annotation-edit{align-items:center;color:#0067ee;cursor:pointer;display:inline-flex;font-size:16px;user-select:none}.annotation-edit.is-active{color:#ff9828}.annotation-edit__icon{align-items:center;display:inline-flex}.no-data-tip{align-items:center;color:#333;display:flex;flex-direction:column;font-size:22px;height:100%;justify-content:center;width:100%}.no-data-tip>img{max-width:70%;width:260px}.no-data-tip>p{color:rgba(0,0,0,.8);font-size:16px;margin-bottom:0;margin-top:12px}.no-data-tip>span{color:rgba(0,0,0,.4);font-size:14px;margin-top:6px}.text-over-tooltip-components{display:inline-block;max-width:98%}.text-over-tooltip-components .ellipsis{color:#35393c;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-over-tooltip-components .ellipsis i{font-style:normal;white-space:nowrap;word-break:keep-all}.text-over-tooltip-components .fs20{color:green;font-size:20px;font-weight:600;line-height:22px}.text-over-tooltip-components .fs12{color:orange;font-size:12px;font-weight:400;line-height:14px}.svg-icon{fill:currentColor;height:1em;overflow:hidden;vertical-align:-.15em;width:1em}.vxe-header--column [annotation-hover-show=true]{visibility:hidden}.vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.big-table__annotationWrapper{align-items:center;display:inline-flex;width:20px}
|
|
1
|
+
.big-table-filter-wrap{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.2);display:flex;flex-direction:column;flex-wrap:wrap;margin-top:-6px;min-width:280px;overflow:hidden;position:fixed;transform:translateX(-2%);transition:width 2s;z-index:99998}.big-table-filter-wrap .sort-list{margin-top:6px}.big-table-filter-wrap .sort-item{align-items:center;display:flex;height:32px;padding:0 13px}.big-table-filter-wrap .sort-item.active,.big-table-filter-wrap .sort-item:hover{background:#f2f2f2}.big-table-filter-wrap .sort-icon{background-size:contain;display:inline-block;height:16px;width:16px}.big-table-filter-wrap .sort-text{color:rgba(0,0,0,.8);font-size:14px;line-height:32px;margin-left:11px}.big-table-filter-wrap .sort-icon-desc{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABT0lEQVRYR+3WvSuGYRTH8c9TykpJSimLMvgHpLyUCQsmg/wBMss/ILvdJgspNnkbZFYGk7JQSAaLwUuX7uFxu3E/nvvqSd3XeHW6zvec65zfORUNPpUG+1cClBnIysABhiMV5y4mqt/OAliPCHCImd8AIgWf/WzMIhzFK/Z/iigWQAtuE4A2PH0HEQugG5eJ005clwBlBmrJwDwGcorBNjYybOsqwit05QQ4R1/RAB3oqQHgoWiAnL5/NKvrC/4tQBNacYesDAR5fkxHV6QU72EQczhNSfE4VpOOmY01jsOyMYYXLGElcbSIZT4W4C1MxQIIUy9sU1ltGXyeYQSfuua7L2jOWYnPKbt2HKE3dR/0Iqx593lq4AT9OQE2MZ2yDTpyXKUlF0lthP3gy8nKwBqGcgLsYCHDNuwAAe4Nk7ipZRbk9F2MWZFt+CeiEuAdAU5CIQxYYdUAAAAASUVORK5CYII=")}.big-table-filter-wrap .filter-header{cursor:auto;padding:0 13px}.big-table-filter-wrap .filter-header-icon{border-right-color:#333;border-top-color:#333}.big-table-filter-wrap .filter-header-text{margin-left:11px}.big-table-filter-wrap .check-search-wrap{background:#f7f7f7;display:flex;justify-content:center;padding:8px 0;width:100%}.big-table-filter-wrap .check-seach-input{line-height:32px}.big-table-filter-wrap .checkbox-box{padding-right:3px;width:100%}.big-table-filter-wrap .checkbox-wrap{background:#fff;display:flex;flex-direction:column;overflow-y:auto;padding-left:13px;padding-right:3px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar{height:4px;width:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-thumb{background-color:#d5d5d5;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.big-table-filter-wrap .checkbox-wrap::-webkit-scrollbar-corner{background-color:#000;border-radius:4px;width:4px}.big-table-filter-wrap .checkbox-wrap--search{padding-right:10px}.big-table-filter-wrap .checkbox-btn-wrap{display:flex;padding:9px 10px 9px 14px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn{padding:0;width:56px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn+.checkbox-btn{margin-left:8px}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn{border:0;border-radius:0;margin:0 13px;position:relative;width:auto}.big-table-filter-wrap .checkbox-btn-wrap .checkbox-btn-status .checkbox-btn:hover:after{background-color:#5585f5;bottom:5px;content:"";display:block;height:1px;position:absolute;width:100%}.big-table-filter-wrap .arrows-icon{bottom:-1px;cursor:nw-resize;font-size:15px;height:20px;position:absolute;right:-1px;width:25px}.big-table__separate{padding:4px}.big-table__separatePlaceholder{display:inline-block;max-width:0;visibility:hidden;width:0;word-break:keep-all}.custom-big-table{position:relative}.custom-big-table .n-input{width:fit-content}.custom-big-table .img-wrap{align-items:center;display:flex;height:100%;line-height:1;padding:2px 0}.custom-big-table .img-wrap img{cursor:pointer;max-height:100%;object-fit:contain}.custom-big-table .img-wrap.img-circle img{border-radius:50%;object-fit:contain;width:28px}.custom-big-table .bigTable-qr-span{display:inline-block;height:100%;position:relative}.custom-big-table .bigTable-qr-span .bigTable-qr-img{max-height:96%}.custom-big-table .bigTable-qr-span>span{align-items:center;background:rgba(0,0,0,.7);color:#fff;cursor:pointer;display:none;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.custom-big-table .bigTable-qr-span:hover>span{display:inline-flex}.custom-big-table .base-form{align-items:center;display:flex;overflow:hidden!important;width:100%}.custom-big-table .base-form-content{width:100%}.custom-big-table textarea{height:32px;margin-bottom:0;resize:none}.custom-big-table .formItem-select-multiple{align-items:center;display:flex;line-height:40px;width:100%}.custom-big-table.mt{height:calc(100% - 78px)!important;margin-top:26px}.custom-big-table.expand-padding .vxe-table .vxe-body--expanded-cell{padding-left:66px!important;padding-right:66px!important}.custom-big-table th.vxe-header--column{cursor:pointer}.custom-big-table .row-btn{margin-right:10px}.custom-big-table .vxe-table{transform:translateZ(0)}.custom-big-table .vxe-table .vxe-table--empty-content,.custom-big-table .vxe-table .vxe-table--empty-content>div{height:100%;width:100%}.custom-big-table .vxe-table .vxe-table--empty-content>div .no-data-tip{display:inline-flex}.custom-big-table .vxe-table .col--checkbox .vxe-cell,.custom-big-table .vxe-table .col--seq .vxe-cell{padding:0}.custom-big-table .vxe-table .col--checkbox .vxe-cell .vxe-checkbox--label,.custom-big-table .vxe-table .col--seq .vxe-cell .vxe-checkbox--label{padding-left:0}.custom-big-table .vxe-table .vxe-cell .vxe-tree-cell{height:100%}.custom-big-table .vxe-table .scan-multi-delete{color:#f06f64}.custom-big-table .vxe-table .vxe-table--header{background-color:#f2f2f2}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title{color:#35393c;height:100%;line-height:unset}.custom-big-table .vxe-table .vxe-table--header .vxe-header--column .vxe-cell--title .header-title-span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.custom-big-table .vxe-table .vxe-table--header .col--checkbox .vxe-cell--title,.custom-big-table .vxe-table .vxe-table--header .col--seq .vxe-cell--title{display:inline-block}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar{background-color:transparent;height:10px;width:10px}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#f2f2f2;border:3px dashed transparent;border-radius:0}.custom-big-table .vxe-table .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover,.custom-big-table .vxe-table .vxe-table--footer-wrapper.body--wrapper::-webkit-scrollbar-thumb:hover{background:#b2b2b2}.custom-big-table .vxe-table .vxe-footer--row .vxe-footer--column>.vxe-cell .vxe-cell--item{height:30px;line-height:30px}.custom-big-table .vxe-table .vxe-cell--checkbox .vxe-checkbox--label{display:none}.custom-big-table .filter-box{align-items:center;display:flex;width:100%}.custom-big-table .filter-box .text-over-tooltip-components{max-width:calc(100% - 40px)}.custom-big-table .filter-box .vxe-filter--btn{border-right-color:#c0c4cc;border-top-color:#c0c4cc}.custom-big-table .filter-box .vxe-filter--btn.active{border-right-color:#35393c;border-top-color:#35393c}.custom-big-table .filter-box .vxe-filter--btn.checked{border-right-color:#5585f5;border-top-color:#5585f5}.custom-big-table .disabled-checked-tips{background:#fff;border:2px solid #ff1818;border-radius:50%;bottom:0;box-sizing:border-box;height:16px;margin-top:-8px;overflow:hidden;position:absolute;right:0;top:50%;width:16px}.custom-big-table .disabled-checked-tips:after{background-color:#ff1818;content:"";height:2px;left:0;position:absolute;top:0;transform:rotate(45deg);transform-origin:0 2px;width:16px}.custom-big-table .form-select-table .n-base-select-menu__empty{display:none}.custom-big-table .percent-wrap{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.custom-big-table .percent-wrap .percent-value{line-height:1;margin-bottom:-4px;margin-top:4px}.custom-big-table .refresh{align-items:center;background-color:#fff;border-bottom-left-radius:14px;border-top-left-radius:14px;box-shadow:0 2px 4px 0 hsla(0,0%,42%,.13);color:#5585f5;cursor:pointer;display:flex;font-size:12px;height:27px;padding-left:14px;padding-right:14px;position:absolute;right:0;top:6px;z-index:1}.custom-big-table .refresh-row{margin-bottom:0;margin-left:3px}.custom-big-table .check-wrap{background:#ffffe9;display:flex;justify-content:center;line-height:26px;margin-top:-26px;position:absolute;width:100%}.custom-big-table .check-wrap .check-wrap-btn,.custom-big-table .check-wrap .check-wrap-title{color:#000;cursor:pointer;font-size:12px;margin-bottom:0}.custom-big-table .check-wrap .check-wrap-btn{color:#5585f5}.custom-big-table .domPropsInnerHTML-span{height:100%}.custom-big-table .domPropsInnerHTML-span img{display:inline-block;height:var(--tableImageHeight);width:var(--tableImageWidth)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom{background:var(--table-icon-color);box-shadow:0 2px 4px 0 var(--table-icon-shadow)}.custom-big-table .domPropsInnerHTML-span .icon-dot-custom,.custom-big-table .domPropsInnerHTML-span .icon-dot-red{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-red{background:red;box-shadow:0 2px 4px 0 rgba(255,0,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue{background:blue;box-shadow:0 2px 4px 0 rgba(0,0,255,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-blue,.custom-big-table .domPropsInnerHTML-span .icon-dot-green{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-green{background:green;box-shadow:0 2px 4px 0 rgba(0,128,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray{background:gray;box-shadow:0 2px 4px 0 hsla(0,0%,50%,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-gray,.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-yellow{background:#ff0;box-shadow:0 2px 4px 0 rgba(255,255,0,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{background:#36be8c;box-shadow:0 2px 4px 0 rgba(54,190,140,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu,.custom-big-table .domPropsInnerHTML-span .icon-dot-resolved{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-huifu{background:#42d0f6;box-shadow:0 2px 4px 0 rgba(66,208,246,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-close{background:#718391;box-shadow:0 2px 4px 0 rgba(113,131,145,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit,.custom-big-table .domPropsInnerHTML-span .icon-dot-close{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-audit{background:#f4ba32;box-shadow:0 2px 4px 0 rgba(244,186,50,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design{background:#927ce1;box-shadow:0 2px 4px 0 rgba(146,124,225,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-design,.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop{background:#4eb0ef;box-shadow:0 2px 4px 0 rgba(78,176,239,.5)}.custom-big-table .domPropsInnerHTML-span .icon-dot-develop-complete{background:#6381f9;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;box-shadow:0 2px 4px 0 rgba(99,129,249,.5);display:inline-block;height:8px;margin-right:6px;width:8px}.custom-big-table .vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:4px 0 4px 0 rgba(0,0,0,.12)}.custom-big-table .vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:-4px 0 4px 0 rgba(0,0,0,.12)}.custom-big-table .v-binder-follower-container{z-index:4!important}.annotation-edit{align-items:center;color:#0067ee;cursor:pointer;display:inline-flex;font-size:16px;user-select:none}.annotation-edit.is-active{color:#ff9828}.annotation-edit__icon{align-items:center;display:inline-flex}.no-data-tip{align-items:center;color:#333;display:flex;flex-direction:column;font-size:22px;height:100%;justify-content:center;width:100%}.no-data-tip>img{max-width:70%;width:260px}.no-data-tip>p{color:rgba(0,0,0,.8);font-size:16px;margin-bottom:0;margin-top:12px}.no-data-tip>span{color:rgba(0,0,0,.4);font-size:14px;margin-top:6px}.text-over-tooltip-components{display:inline-block;max-width:98%}.text-over-tooltip-components .ellipsis{color:#35393c;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-over-tooltip-components .ellipsis i{font-style:normal;white-space:nowrap;word-break:keep-all}.text-over-tooltip-components .fs20{color:green;font-size:20px;font-weight:600;line-height:22px}.text-over-tooltip-components .fs12{color:orange;font-size:12px;font-weight:400;line-height:14px}.svg-icon{fill:currentColor;height:1em;overflow:hidden;vertical-align:-.15em;width:1em}.vxe-header--column [annotation-hover-show=true]{visibility:hidden}.vxe-header--column:hover [annotation-hover-show=true]{visibility:visible}.big-table__annotationWrapper{align-items:center;display:inline-flex;width:20px}.big-table__annotationWrapper .is-active{position:relative;top:3px}
|
|
@@ -82,6 +82,7 @@ declare const FabricChart: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
82
82
|
}) => void;
|
|
83
83
|
setPopup: (point: any) => void;
|
|
84
84
|
getEqualXTypes: (pointX: number) => import("./src/interface").IPointType[];
|
|
85
|
+
isAddPoint: (x: number) => boolean;
|
|
85
86
|
drawScaleValue: (yScaleValueList: any[]) => void;
|
|
86
87
|
PopupTip: import("vue").DefineComponent<{
|
|
87
88
|
show: {
|
|
@@ -240,6 +240,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
240
240
|
xScalevalueHeight: xScalevalueHeight.value,
|
|
241
241
|
topList: topList.value,
|
|
242
242
|
breathingHeight: breathingHeight.value,
|
|
243
|
+
hospitalizationDate: props.data.hospitalizationDate,
|
|
243
244
|
grid: props.data.grid,
|
|
244
245
|
top: props.data.top,
|
|
245
246
|
left: props.data.left,
|
|
@@ -280,8 +281,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
280
281
|
}
|
|
281
282
|
const { cumputedX, cumputedY, getXValue, getYValue } = useCumputedPoint(propItems);
|
|
282
283
|
useTop(canvas, propItems);
|
|
283
|
-
const { pointTipProps, pointMenuProps, clickMenu, setPopup, getEqualXTypes } = useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, getYValue, props.addRenderItem);
|
|
284
|
-
const { drawScaleValue } = useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, getYValue, getEqualXTypes);
|
|
284
|
+
const { pointTipProps, pointMenuProps, clickMenu, setPopup, getEqualXTypes, isAddPoint } = useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, getYValue, props.addRenderItem);
|
|
285
|
+
const { drawScaleValue } = useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, getYValue, getEqualXTypes, isAddPoint);
|
|
285
286
|
useRight(canvas, propItems, drawScaleValue);
|
|
286
287
|
useBottom(canvas, propItems);
|
|
287
288
|
useOther(canvas, propItems, cumputedX);
|
|
@@ -83,6 +83,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
83
|
}) => void;
|
|
84
84
|
setPopup: (point: any) => void;
|
|
85
85
|
getEqualXTypes: (pointX: number) => IPointType[];
|
|
86
|
+
isAddPoint: (x: number) => boolean;
|
|
86
87
|
drawScaleValue: (yScaleValueList: any[]) => void;
|
|
87
88
|
PopupTip: import("vue").DefineComponent<{
|
|
88
89
|
show: {
|
|
@@ -33,7 +33,8 @@ function useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, ge
|
|
|
33
33
|
itemList,
|
|
34
34
|
event,
|
|
35
35
|
vitalSignsOriginY,
|
|
36
|
-
painOriginY
|
|
36
|
+
painOriginY,
|
|
37
|
+
hospitalizationDate
|
|
37
38
|
} = propItems;
|
|
38
39
|
const pointTipProps = reactive({
|
|
39
40
|
show: false,
|
|
@@ -170,7 +171,7 @@ function useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, ge
|
|
|
170
171
|
}
|
|
171
172
|
}
|
|
172
173
|
});
|
|
173
|
-
if (pointMenuProps.list.length === 1) {
|
|
174
|
+
if (!isAddPoint(x) || pointMenuProps.list.length === 1) {
|
|
174
175
|
pointMenuProps.show = false;
|
|
175
176
|
console.log("\u5F53\u524D\u65F6\u95F4\u6BB5\u5185\u65E0\u53EF\u65B0\u589E\u8282\u70B9");
|
|
176
177
|
}
|
|
@@ -530,6 +531,16 @@ function useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, ge
|
|
|
530
531
|
return [x, y < objOriginY.originY ? objOriginY.originY : y > objOriginY.endY ? objOriginY.endY : y];
|
|
531
532
|
}
|
|
532
533
|
}
|
|
534
|
+
function isAddPoint(x) {
|
|
535
|
+
const d = new Date();
|
|
536
|
+
const month = `00${d.getMonth() + 1}`.slice(-2);
|
|
537
|
+
const day = `00${d.getDate()}`.slice(-2);
|
|
538
|
+
const todayTime = new Date(`${d.getFullYear()}-${month}-${day} 23:59:59`).getTime();
|
|
539
|
+
const pointTime = new Date(`${getXValue(x)}:00`).getTime();
|
|
540
|
+
if (hospitalizationDate && pointTime < new Date(hospitalizationDate).getTime() || pointTime > todayTime)
|
|
541
|
+
return false;
|
|
542
|
+
return true;
|
|
543
|
+
}
|
|
533
544
|
function clickMenu({ item, target }) {
|
|
534
545
|
if (!target) {
|
|
535
546
|
emits("add", {
|
|
@@ -560,7 +571,8 @@ function useCenter(canvas, propItems, emits, cumputedX, cumputedY, getXValue, ge
|
|
|
560
571
|
pointMenuProps,
|
|
561
572
|
clickMenu,
|
|
562
573
|
setPopup,
|
|
563
|
-
getEqualXTypes
|
|
574
|
+
getEqualXTypes,
|
|
575
|
+
isAddPoint
|
|
564
576
|
};
|
|
565
577
|
}
|
|
566
578
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { fabric } from '../utils';
|
|
3
3
|
import { IPropItems } from '../interface';
|
|
4
|
-
export declare function useLeft(canvas: Ref<fabric.Canvas>, propItems: IPropItems, emits: any, setPopup: Function, pointTipProps: any, getXValue: Function, getYValue: Function, getEqualXTypes: Function): {
|
|
4
|
+
export declare function useLeft(canvas: Ref<fabric.Canvas>, propItems: IPropItems, emits: any, setPopup: Function, pointTipProps: any, getXValue: Function, getYValue: Function, getEqualXTypes: Function, isAddPoint: Function): {
|
|
5
5
|
drawScaleValue: (yScaleValueList: any[]) => void;
|
|
6
6
|
};
|
|
@@ -2,7 +2,7 @@ import { onMounted, nextTick } from 'vue';
|
|
|
2
2
|
import { fabric } from '../utils/index.js';
|
|
3
3
|
import { defaultBorderStyle, defaultTextStyle, defaultStyle, defaultRectStyle, drawPoint, drawTextGroup } from './useDraw2.js';
|
|
4
4
|
|
|
5
|
-
function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, getYValue, getEqualXTypes) {
|
|
5
|
+
function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, getYValue, getEqualXTypes, isAddPoint) {
|
|
6
6
|
const {
|
|
7
7
|
originY,
|
|
8
8
|
endY,
|
|
@@ -19,7 +19,8 @@ function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, g
|
|
|
19
19
|
right,
|
|
20
20
|
canvasWidth,
|
|
21
21
|
canvasHeight,
|
|
22
|
-
getRightInfo
|
|
22
|
+
getRightInfo,
|
|
23
|
+
hospitalizationDate
|
|
23
24
|
} = propItems;
|
|
24
25
|
const mainScaleWidth = 9;
|
|
25
26
|
const subScaleWidth = 5;
|
|
@@ -233,7 +234,7 @@ function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, g
|
|
|
233
234
|
});
|
|
234
235
|
}
|
|
235
236
|
function isLimit(point) {
|
|
236
|
-
return point.left >= originX && point.left
|
|
237
|
+
return point.left >= originX && point.left < endX && point.top >= originY && point.top <= endY;
|
|
237
238
|
}
|
|
238
239
|
function moveLimit(point) {
|
|
239
240
|
if (point.left >= originX && point.left <= endX) {
|
|
@@ -249,6 +250,7 @@ function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, g
|
|
|
249
250
|
}
|
|
250
251
|
function setPointEvent(point) {
|
|
251
252
|
point.on("moving", () => {
|
|
253
|
+
point.set("originX", "center");
|
|
252
254
|
moveLimit(point);
|
|
253
255
|
if (isLimit(point)) {
|
|
254
256
|
setPopup(point);
|
|
@@ -260,7 +262,7 @@ function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, g
|
|
|
260
262
|
pointTipProps.show = false;
|
|
261
263
|
if (event.e.button === 0) {
|
|
262
264
|
if (isLimit(point)) {
|
|
263
|
-
if (!getEqualXTypes(point.left).includes(point.origin.type)) {
|
|
265
|
+
if (!getEqualXTypes(point.left).includes(point.origin.type) && isAddPoint(point.left)) {
|
|
264
266
|
emits("add", {
|
|
265
267
|
data: {
|
|
266
268
|
time: getXValue(point.left),
|
|
@@ -279,7 +281,7 @@ function useLeft(canvas, propItems, emits, setPopup, pointTipProps, getXValue, g
|
|
|
279
281
|
}
|
|
280
282
|
function setRestore() {
|
|
281
283
|
point.setCoords();
|
|
282
|
-
point.set({ left: point.originLeft, top: point.originTop });
|
|
284
|
+
point.set({ originX: "right", left: point.originLeft, top: point.originTop });
|
|
283
285
|
}
|
|
284
286
|
});
|
|
285
287
|
}
|
|
@@ -34,6 +34,7 @@ export interface IPropItems {
|
|
|
34
34
|
xScalevalueHeight: number;
|
|
35
35
|
topList: IDate[];
|
|
36
36
|
breathingHeight: number;
|
|
37
|
+
hospitalizationDate?: string;
|
|
37
38
|
grid: IGrid;
|
|
38
39
|
top: ITop;
|
|
39
40
|
left: ILeft;
|
|
@@ -106,6 +107,7 @@ export interface IData {
|
|
|
106
107
|
height: number;
|
|
107
108
|
borderStyle?: fabric.ILineOptions;
|
|
108
109
|
selectionStyle?: any;
|
|
110
|
+
hospitalizationDate: string;
|
|
109
111
|
grid: IGrid;
|
|
110
112
|
other?: IOther;
|
|
111
113
|
top: ITop;
|
|
@@ -38,7 +38,7 @@ import './complex.js';
|
|
|
38
38
|
import './simpleComponent.js';
|
|
39
39
|
import './search.js';
|
|
40
40
|
import { NCascader } from 'naive-ui';
|
|
41
|
-
import { assignUpdateValue,
|
|
41
|
+
import { assignUpdateValue, traverseDependKey } from '../../utils/schema2.js';
|
|
42
42
|
|
|
43
43
|
const script = defineComponent({
|
|
44
44
|
name: "FormCascader",
|
|
@@ -146,7 +146,7 @@ const script = defineComponent({
|
|
|
146
146
|
function notNeedToFetchData(props2, option2) {
|
|
147
147
|
return !configFor(props2) || !option2 && remoteOptions.value || deepFor(option2) >= deepFor(props2) - 1;
|
|
148
148
|
}
|
|
149
|
-
function createRequestParams(deep, config,
|
|
149
|
+
function createRequestParams(deep, config, key2, option2) {
|
|
150
150
|
const params = {
|
|
151
151
|
lvlnr: deep + 1 + ""
|
|
152
152
|
};
|
|
@@ -158,7 +158,7 @@ const script = defineComponent({
|
|
|
158
158
|
return {
|
|
159
159
|
params,
|
|
160
160
|
...config,
|
|
161
|
-
key
|
|
161
|
+
key: key2
|
|
162
162
|
};
|
|
163
163
|
}
|
|
164
164
|
function getOptionChain(option2) {
|
|
@@ -189,7 +189,8 @@ const script = defineComponent({
|
|
|
189
189
|
}
|
|
190
190
|
const {
|
|
191
191
|
injectValueValidate,
|
|
192
|
-
injectValueWatchFromEmpty
|
|
192
|
+
injectValueWatchFromEmpty,
|
|
193
|
+
injectValueBindKey
|
|
193
194
|
} = useCommonInjection();
|
|
194
195
|
injectValueWatchFromEmpty(() => props.value, fetchData);
|
|
195
196
|
injectValueValidate(() => props.value);
|
|
@@ -207,7 +208,7 @@ const script = defineComponent({
|
|
|
207
208
|
const parsedOptions = computed(() => {
|
|
208
209
|
return remoteOptions.value || props.options || [];
|
|
209
210
|
});
|
|
210
|
-
function
|
|
211
|
+
function visitedDecorator(onFocus) {
|
|
211
212
|
return (...args) => {
|
|
212
213
|
if (isField(field.value)) {
|
|
213
214
|
field.value.visited = true;
|
|
@@ -216,8 +217,10 @@ const script = defineComponent({
|
|
|
216
217
|
};
|
|
217
218
|
}
|
|
218
219
|
const remote = computed(() => !props.filterable);
|
|
220
|
+
const key = injectValueBindKey(valueRef);
|
|
219
221
|
return () => {
|
|
220
222
|
return createVNode(NCascader, {
|
|
223
|
+
"key": key.value,
|
|
221
224
|
"remote": remote.value,
|
|
222
225
|
"filterable": props.filterable,
|
|
223
226
|
"checkStrategy": "child",
|
|
@@ -229,13 +232,13 @@ const script = defineComponent({
|
|
|
229
232
|
"valueField": valueKey.value,
|
|
230
233
|
"options": parsedOptions.value,
|
|
231
234
|
"onLoad": fetchData,
|
|
232
|
-
"onFocus":
|
|
235
|
+
"onFocus": visitedDecorator(props.onFocus)
|
|
233
236
|
}, slots);
|
|
234
237
|
};
|
|
235
238
|
}
|
|
236
239
|
});
|
|
237
240
|
const SEARCH_CASCADE = connect(script, mapProps({
|
|
238
241
|
dataSource: "options"
|
|
239
|
-
}, assignUpdateValue
|
|
242
|
+
}, assignUpdateValue));
|
|
240
243
|
|
|
241
244
|
export { SEARCH_CASCADE };
|
|
@@ -11,6 +11,9 @@ export declare const COMBINATION: import("vue").DefineComponent<{
|
|
|
11
11
|
maxGroupNum: {
|
|
12
12
|
type: NumberConstructor;
|
|
13
13
|
};
|
|
14
|
+
disabled: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
};
|
|
14
17
|
getProperties: {
|
|
15
18
|
type: PropType<() => FieldItem[]>;
|
|
16
19
|
default: () => never[];
|
|
@@ -29,6 +32,9 @@ export declare const COMBINATION: import("vue").DefineComponent<{
|
|
|
29
32
|
maxGroupNum: {
|
|
30
33
|
type: NumberConstructor;
|
|
31
34
|
};
|
|
35
|
+
disabled: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
};
|
|
32
38
|
getProperties: {
|
|
33
39
|
type: PropType<() => FieldItem[]>;
|
|
34
40
|
default: () => never[];
|
|
@@ -39,6 +45,7 @@ export declare const COMBINATION: import("vue").DefineComponent<{
|
|
|
39
45
|
}>> & {
|
|
40
46
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
41
47
|
}, {
|
|
48
|
+
disabled: boolean;
|
|
42
49
|
title: string;
|
|
43
50
|
getProperties: () => FieldItem[];
|
|
44
51
|
}>;
|
|
@@ -22,6 +22,9 @@ const script = defineComponent({
|
|
|
22
22
|
maxGroupNum: {
|
|
23
23
|
type: Number
|
|
24
24
|
},
|
|
25
|
+
disabled: {
|
|
26
|
+
type: Boolean
|
|
27
|
+
},
|
|
25
28
|
getProperties: {
|
|
26
29
|
type: Function,
|
|
27
30
|
default: () => []
|
|
@@ -70,7 +73,7 @@ const script = defineComponent({
|
|
|
70
73
|
"onClick": addGroup,
|
|
71
74
|
"type": "info",
|
|
72
75
|
"text": true,
|
|
73
|
-
"disabled": currentGroupNum.value >= maxGroupNum.value
|
|
76
|
+
"disabled": currentGroupNum.value >= maxGroupNum.value || props.disabled
|
|
74
77
|
}, {
|
|
75
78
|
icon: () => createVNode(NIcon, {
|
|
76
79
|
"component": AddCircleOutline
|