bm-admin-ui 1.0.38-alpha → 1.0.40-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/__tests__/util/domHook.d.ts +6 -0
- package/es/components/feedback/index.js +2 -2
- package/es/components/float-table/index.js +36 -27
- package/es/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
- package/es/components/form-create/index.js +215 -107
- package/es/components/form-designer/index.js +86 -47
- package/es/components/input-tags-display/index.js +30 -13
- package/es/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
- package/es/components/over-tooltips/index.js +27 -20
- package/es/components/search-filter/index.js +18 -10
- package/es/components/select-all/index.js +17 -9
- package/es/components/shops-filter/index.js +19 -13
- package/es/components/staffs-selector/index.js +116 -82
- package/es/components/timeline/__tests__/index.test.d.ts +1 -0
- package/es/components/timeline/index.js +8 -7
- package/es/components/upload/__tests__/mock.d.ts +2 -0
- package/es/components/upload/__tests__/requests.d.ts +7 -0
- package/es/components/upload/__tests__/upload.test.d.ts +1 -0
- package/es/components/upload/index.js +115 -78
- package/index.esm.js +41000 -4676
- package/index.js +40999 -4675
- package/lib/components/__tests__/util/domHook.d.ts +6 -0
- package/lib/components/feedback/index.js +1 -1
- package/lib/components/float-table/index.js +36 -27
- package/lib/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
- package/lib/components/form-create/index.js +214 -106
- package/lib/components/form-designer/index.js +86 -47
- package/lib/components/input-tags-display/index.js +30 -13
- package/lib/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
- package/lib/components/over-tooltips/index.js +27 -20
- package/lib/components/search-filter/index.js +18 -10
- package/lib/components/select-all/index.js +17 -9
- package/lib/components/shops-filter/index.js +19 -13
- package/lib/components/staffs-selector/index.js +116 -82
- package/lib/components/timeline/__tests__/index.test.d.ts +1 -0
- package/lib/components/timeline/index.js +8 -7
- package/lib/components/upload/__tests__/mock.d.ts +2 -0
- package/lib/components/upload/__tests__/requests.d.ts +7 -0
- package/lib/components/upload/__tests__/upload.test.d.ts +1 -0
- package/lib/components/upload/index.js +115 -78
- package/package.json +1 -1
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/feedback.css +1 -1
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/floating-vue.css +1 -1
- package/theme-chalk/flow-designer.css +1 -1
- package/theme-chalk/form-create.css +1 -1
- package/theme-chalk/form-designer.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/input-tags-display.css +1 -1
- package/theme-chalk/modal.css +1 -1
- package/theme-chalk/over-tooltips.css +1 -1
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/select-all.css +1 -1
- package/theme-chalk/staffs-selector.css +1 -1
- package/theme-chalk/timeline.css +1 -1
- package/theme-chalk/upload.css +1 -1
- package/types/components/__tests__/util/domHook.d.ts +6 -0
- package/types/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
- package/types/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
- package/types/components/timeline/__tests__/index.test.d.ts +1 -0
- package/types/components/upload/__tests__/mock.d.ts +2 -0
- package/types/components/upload/__tests__/requests.d.ts +7 -0
- package/types/components/upload/__tests__/upload.test.d.ts +1 -0
|
@@ -86,6 +86,7 @@ var input = {
|
|
|
86
86
|
return vue.h(antDesignVue.Input, {
|
|
87
87
|
value: row[field],
|
|
88
88
|
placeholder: data.props.placeholder,
|
|
89
|
+
disabled: data.disabled,
|
|
89
90
|
maxlength: 200,
|
|
90
91
|
'onUpdate:value': (value) => {
|
|
91
92
|
row[field] = value;
|
|
@@ -153,6 +154,7 @@ var textarea = {
|
|
|
153
154
|
value: row[field],
|
|
154
155
|
maxlength: 5000,
|
|
155
156
|
placeholder: data.props.placeholder,
|
|
157
|
+
disabled: data.disabled,
|
|
156
158
|
'onUpdate:value': (value) => {
|
|
157
159
|
row[field] = value;
|
|
158
160
|
},
|
|
@@ -226,6 +228,7 @@ var numInput = {
|
|
|
226
228
|
style: {
|
|
227
229
|
width: '100%',
|
|
228
230
|
},
|
|
231
|
+
disabled: data.disabled,
|
|
229
232
|
});
|
|
230
233
|
},
|
|
231
234
|
},
|
|
@@ -286,6 +289,7 @@ var radio = {
|
|
|
286
289
|
value: row[field],
|
|
287
290
|
placeholder: data.props.placeholder,
|
|
288
291
|
options: data.options,
|
|
292
|
+
disabled: data.disabled,
|
|
289
293
|
getPopupContainer: getContainer,
|
|
290
294
|
'onUpdate:value': (value) => {
|
|
291
295
|
row[field] = value;
|
|
@@ -350,6 +354,7 @@ var checkbox = {
|
|
|
350
354
|
options: data.options,
|
|
351
355
|
mode: 'multiple',
|
|
352
356
|
getPopupContainer: getContainer,
|
|
357
|
+
disabled: data.disabled,
|
|
353
358
|
'onUpdate:value': (value) => {
|
|
354
359
|
row[field] = value;
|
|
355
360
|
},
|
|
@@ -440,6 +445,7 @@ var date = {
|
|
|
440
445
|
width: '100%',
|
|
441
446
|
},
|
|
442
447
|
getCalendarContainer: getContainer,
|
|
448
|
+
disabled: data.disabled,
|
|
443
449
|
});
|
|
444
450
|
},
|
|
445
451
|
},
|
|
@@ -521,6 +527,7 @@ var dateRange = {
|
|
|
521
527
|
width: '100%',
|
|
522
528
|
},
|
|
523
529
|
getCalendarContainer: getContainer,
|
|
530
|
+
disabled: data.disabled,
|
|
524
531
|
});
|
|
525
532
|
},
|
|
526
533
|
},
|
|
@@ -547,7 +554,7 @@ var instruction = {
|
|
|
547
554
|
},
|
|
548
555
|
};
|
|
549
556
|
|
|
550
|
-
|
|
557
|
+
/******************************************************************************
|
|
551
558
|
Copyright (c) Microsoft Corporation.
|
|
552
559
|
|
|
553
560
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -772,7 +779,7 @@ var _export_sfc = (sfc, props) => {
|
|
|
772
779
|
|
|
773
780
|
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
774
781
|
__name: "staff-selector",
|
|
775
|
-
props: ["placeholder", "defaultSelected"],
|
|
782
|
+
props: ["placeholder", "defaultSelected", "disabled"],
|
|
776
783
|
emits: ["change"],
|
|
777
784
|
setup(__props, { emit: emits }) {
|
|
778
785
|
const props = __props;
|
|
@@ -784,11 +791,15 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
784
791
|
function handleAdd() {
|
|
785
792
|
visible.value = true;
|
|
786
793
|
}
|
|
787
|
-
vue.watch(
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
794
|
+
vue.watch(
|
|
795
|
+
() => props.defaultSelected,
|
|
796
|
+
(val) => {
|
|
797
|
+
selected.value = val;
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
immediate: true
|
|
801
|
+
}
|
|
802
|
+
);
|
|
792
803
|
vue.watch(selected, (val) => {
|
|
793
804
|
selectedChange(val);
|
|
794
805
|
});
|
|
@@ -798,9 +809,10 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
798
809
|
list: selected.value,
|
|
799
810
|
"onUpdate:list": _cache[0] || (_cache[0] = ($event) => selected.value = $event),
|
|
800
811
|
"show-empty-btn": false,
|
|
812
|
+
disabled: __props.disabled,
|
|
801
813
|
"show-empty": "",
|
|
802
814
|
onAddClick: handleAdd
|
|
803
|
-
}, null, 8, ["list"]),
|
|
815
|
+
}, null, 8, ["list", "disabled"]),
|
|
804
816
|
vue.createVNode(vue.unref(BmStaffsSelector__default["default"]), vue.mergeProps({
|
|
805
817
|
select: selected.value,
|
|
806
818
|
"onUpdate:select": _cache[1] || (_cache[1] = ($event) => selected.value = $event),
|
|
@@ -900,7 +912,7 @@ var people = {
|
|
|
900
912
|
minWidth: data.config.fieldRatio,
|
|
901
913
|
slots: {
|
|
902
914
|
default({ row }) {
|
|
903
|
-
return vue.h(StaffSelector, Object.assign({ title: '添加员工', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, onChange: (value) => {
|
|
915
|
+
return vue.h(StaffSelector, Object.assign({ title: '添加员工', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, disabled: data.disabled, onChange: (value) => {
|
|
904
916
|
row[field] = value;
|
|
905
917
|
}, defaultSelected: row[field] }, extraConfig.people));
|
|
906
918
|
},
|
|
@@ -937,7 +949,9 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
937
949
|
return (_ctx, _cache) => {
|
|
938
950
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
939
951
|
class: "bm-fc-rect-outer",
|
|
940
|
-
style: vue.normalizeStyle(
|
|
952
|
+
style: vue.normalizeStyle(
|
|
953
|
+
vue.unref(layerBackGround) ? { backgroundImage: `url('${vue.unref(layerBackGround)}')` } : {}
|
|
954
|
+
)
|
|
941
955
|
}, [
|
|
942
956
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(layers), (layer) => {
|
|
943
957
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -956,12 +970,12 @@ const _hoisted_1$5 = { class: "bm-fc-select-material-temp__content__item-info" }
|
|
|
956
970
|
const _hoisted_2$5 = { class: "bm-fc-select-material-temp__content__item-info__cover" };
|
|
957
971
|
const _hoisted_3$4 = ["src"];
|
|
958
972
|
const _hoisted_4$4 = ["onClick"];
|
|
959
|
-
const _hoisted_5$
|
|
973
|
+
const _hoisted_5$4 = {
|
|
960
974
|
key: 1,
|
|
961
975
|
class: "bm-fc-select-material-temp__content__circle"
|
|
962
976
|
};
|
|
963
|
-
const _hoisted_6$
|
|
964
|
-
const _hoisted_7$
|
|
977
|
+
const _hoisted_6$4 = ["title"];
|
|
978
|
+
const _hoisted_7$4 = { class: "bm-fc-select-material-temp__content__item-time" };
|
|
965
979
|
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
966
980
|
__name: "select-material-temp",
|
|
967
981
|
props: ["visible", "fetchMaterialType", "fetchMaterialTemp"],
|
|
@@ -1146,13 +1160,13 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1146
1160
|
selectItem.value.id === item.id ? (vue.openBlock(), vue.createBlock(vue.unref(iconsVue.CheckCircleFilled), {
|
|
1147
1161
|
key: 0,
|
|
1148
1162
|
class: "bm-fc-select-material-temp__content__check-icon"
|
|
1149
|
-
})) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$
|
|
1163
|
+
})) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$4)),
|
|
1150
1164
|
vue.createElementVNode("span", {
|
|
1151
1165
|
class: "bm-fc-select-material-temp__content__name",
|
|
1152
1166
|
title: item.templateName
|
|
1153
|
-
}, vue.toDisplayString(item.templateName), 9, _hoisted_6$
|
|
1167
|
+
}, vue.toDisplayString(item.templateName), 9, _hoisted_6$4)
|
|
1154
1168
|
], 8, _hoisted_4$4),
|
|
1155
|
-
vue.createElementVNode("div", _hoisted_7$
|
|
1169
|
+
vue.createElementVNode("div", _hoisted_7$4, vue.toDisplayString(vue.unref(dayjs__default["default"])(item.lastUpdateTime).format("YYYY/MM/DD")), 1)
|
|
1156
1170
|
])
|
|
1157
1171
|
]),
|
|
1158
1172
|
_: 2
|
|
@@ -1188,9 +1202,9 @@ const _hoisted_1$4 = { class: "bm-dc-table-widget" };
|
|
|
1188
1202
|
const _hoisted_2$4 = { class: "bm-dc-table-widget__title" };
|
|
1189
1203
|
const _hoisted_3$3 = { class: "bm-dc-table-widget__title-samll" };
|
|
1190
1204
|
const _hoisted_4$3 = { class: "bm-dc-table-widget__top-bar" };
|
|
1191
|
-
const _hoisted_5$
|
|
1192
|
-
const _hoisted_6$
|
|
1193
|
-
const _hoisted_7$
|
|
1205
|
+
const _hoisted_5$3 = { class: "bm-dc-table-widget__table" };
|
|
1206
|
+
const _hoisted_6$3 = ["onClick"];
|
|
1207
|
+
const _hoisted_7$3 = ["onClick"];
|
|
1194
1208
|
const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
1195
1209
|
__name: "table-widget",
|
|
1196
1210
|
props: ["rule", "extraConfig"],
|
|
@@ -1258,19 +1272,24 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1258
1272
|
width: "54px"
|
|
1259
1273
|
});
|
|
1260
1274
|
}
|
|
1261
|
-
childRules?.length && columns.push(
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1275
|
+
childRules?.length && columns.push(
|
|
1276
|
+
...childRules.reduce((pre, cur) => {
|
|
1277
|
+
if (cur.hidden) {
|
|
1278
|
+
return pre;
|
|
1279
|
+
}
|
|
1280
|
+
const name = cur.name;
|
|
1281
|
+
if (name === "product") {
|
|
1282
|
+
pre.push(...getProductColumn(cur));
|
|
1283
|
+
} else {
|
|
1284
|
+
pre.push(ruleList[name].tableRule(cur, props.extraConfig));
|
|
1285
|
+
}
|
|
1286
|
+
return pre;
|
|
1287
|
+
}, [])
|
|
1288
|
+
);
|
|
1270
1289
|
columns.push({
|
|
1271
1290
|
field: oper,
|
|
1272
1291
|
title: "\u64CD\u4F5C",
|
|
1273
|
-
|
|
1292
|
+
minWidth: "100px",
|
|
1274
1293
|
fixed: "right",
|
|
1275
1294
|
slots: {
|
|
1276
1295
|
default: "floatHandle"
|
|
@@ -1302,6 +1321,7 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1302
1321
|
return vue.h(antDesignVue.Input, {
|
|
1303
1322
|
value: row[field],
|
|
1304
1323
|
placeholder: "\u8BF7\u8F93\u5165",
|
|
1324
|
+
disabled: rule.disabled,
|
|
1305
1325
|
"onUpdate:value": (value) => {
|
|
1306
1326
|
row[field] = value;
|
|
1307
1327
|
},
|
|
@@ -1332,11 +1352,15 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1332
1352
|
}
|
|
1333
1353
|
});
|
|
1334
1354
|
}
|
|
1335
|
-
return vue.h(
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1355
|
+
return vue.h(
|
|
1356
|
+
"div",
|
|
1357
|
+
{
|
|
1358
|
+
style: {
|
|
1359
|
+
color: "#9393A3"
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
[row[childField] || "\u7CFB\u7EDF\u81EA\u52A8\u5E26\u51FA"]
|
|
1363
|
+
);
|
|
1340
1364
|
}
|
|
1341
1365
|
}
|
|
1342
1366
|
});
|
|
@@ -1413,14 +1437,22 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1413
1437
|
}
|
|
1414
1438
|
return data2;
|
|
1415
1439
|
}
|
|
1416
|
-
vue.watch(
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1440
|
+
vue.watch(
|
|
1441
|
+
() => props.rule,
|
|
1442
|
+
() => {
|
|
1443
|
+
initConfig();
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
immediate: true
|
|
1447
|
+
}
|
|
1448
|
+
);
|
|
1449
|
+
vue.watch(
|
|
1450
|
+
() => data,
|
|
1451
|
+
() => {
|
|
1452
|
+
emitChange();
|
|
1453
|
+
},
|
|
1454
|
+
{ deep: true, immediate: true }
|
|
1455
|
+
);
|
|
1424
1456
|
return (_ctx, _cache) => {
|
|
1425
1457
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$4, [
|
|
1426
1458
|
vue.createElementVNode("div", _hoisted_2$4, [
|
|
@@ -1471,7 +1503,7 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1471
1503
|
})
|
|
1472
1504
|
])
|
|
1473
1505
|
]),
|
|
1474
|
-
vue.createElementVNode("div", _hoisted_5$
|
|
1506
|
+
vue.createElementVNode("div", _hoisted_5$3, [
|
|
1475
1507
|
vue.createVNode(vue.unref(antDesignVue.FormItemRest), null, {
|
|
1476
1508
|
default: vue.withCtx(() => [
|
|
1477
1509
|
vue.createVNode(vue.unref(components.BmFloatTable), {
|
|
@@ -1483,12 +1515,12 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1483
1515
|
vue.unref(copyFeature) ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
1484
1516
|
vue.createElementVNode("a", {
|
|
1485
1517
|
onClick: ($event) => handleCopy(row)
|
|
1486
|
-
}, "\u590D\u5236", 8, _hoisted_6$
|
|
1518
|
+
}, "\u590D\u5236", 8, _hoisted_6$3),
|
|
1487
1519
|
vue.createVNode(vue.unref(antDesignVue.Divider), { type: "vertical" })
|
|
1488
1520
|
], 64)) : vue.createCommentVNode("v-if", true),
|
|
1489
1521
|
vue.createElementVNode("a", {
|
|
1490
1522
|
onClick: ($event) => handleDelete(rowIndex)
|
|
1491
|
-
}, "\u5220\u9664", 8, _hoisted_7$
|
|
1523
|
+
}, "\u5220\u9664", 8, _hoisted_7$3)
|
|
1492
1524
|
]),
|
|
1493
1525
|
_: 1
|
|
1494
1526
|
}, 8, ["config"])
|
|
@@ -1506,11 +1538,11 @@ const _hoisted_1$3 = /* @__PURE__ */ vue.createElementVNode("span", { class: "bm
|
|
|
1506
1538
|
const _hoisted_2$3 = { key: 0 };
|
|
1507
1539
|
const _hoisted_3$2 = /* @__PURE__ */ vue.createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u7D20\u6750\u7C7B\u578B\uFF1A", -1);
|
|
1508
1540
|
const _hoisted_4$2 = /* @__PURE__ */ vue.createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u5C3A\u5BF8\uFF1A", -1);
|
|
1509
|
-
const _hoisted_5$
|
|
1510
|
-
const _hoisted_6$
|
|
1511
|
-
const _hoisted_7$
|
|
1512
|
-
const _hoisted_8$
|
|
1513
|
-
const _hoisted_9$
|
|
1541
|
+
const _hoisted_5$2 = /* @__PURE__ */ vue.createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u5C01\u9762\u56FE\uFF1A", -1);
|
|
1542
|
+
const _hoisted_6$2 = ["src"];
|
|
1543
|
+
const _hoisted_7$2 = { key: 1 };
|
|
1544
|
+
const _hoisted_8$2 = /* @__PURE__ */ vue.createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u6A21\u677F\u7ED3\u6784\u56FE\uFF1A", -1);
|
|
1545
|
+
const _hoisted_9$2 = { key: 1 };
|
|
1514
1546
|
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
1515
1547
|
__name: "material-temp",
|
|
1516
1548
|
props: [
|
|
@@ -1532,7 +1564,9 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1532
1564
|
tempSelected: {}
|
|
1533
1565
|
}
|
|
1534
1566
|
]);
|
|
1535
|
-
vue.computed(
|
|
1567
|
+
vue.computed(
|
|
1568
|
+
() => panes.find((pane) => pane.key === activeKey.value)
|
|
1569
|
+
);
|
|
1536
1570
|
let index = 2;
|
|
1537
1571
|
const measrueDicts = vue.ref([]);
|
|
1538
1572
|
function selectTemp() {
|
|
@@ -1565,7 +1599,10 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1565
1599
|
index++;
|
|
1566
1600
|
}
|
|
1567
1601
|
function handleDelete(targetKey) {
|
|
1568
|
-
panes.splice(
|
|
1602
|
+
panes.splice(
|
|
1603
|
+
panes.findIndex((pane) => pane.key === targetKey),
|
|
1604
|
+
1
|
|
1605
|
+
);
|
|
1569
1606
|
}
|
|
1570
1607
|
function getTableRule(coverageArr) {
|
|
1571
1608
|
const fieldTypeMap = {
|
|
@@ -1658,12 +1695,16 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1658
1695
|
props.extraConfig.getDict().then((data) => {
|
|
1659
1696
|
measrueDicts.value = data;
|
|
1660
1697
|
});
|
|
1661
|
-
vue.watch(
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1698
|
+
vue.watch(
|
|
1699
|
+
() => panes,
|
|
1700
|
+
() => {
|
|
1701
|
+
emitChange();
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
immediate: true,
|
|
1705
|
+
deep: true
|
|
1706
|
+
}
|
|
1707
|
+
);
|
|
1667
1708
|
return (_ctx, _cache) => {
|
|
1668
1709
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
1669
1710
|
vue.createVNode(vue.unref(antDesignVue.Tabs), {
|
|
@@ -1777,7 +1818,9 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1777
1818
|
flex: 1
|
|
1778
1819
|
}, {
|
|
1779
1820
|
default: vue.withCtx(() => [
|
|
1780
|
-
vue.createTextVNode(vue.toDisplayString(measrueDicts.value.find(
|
|
1821
|
+
vue.createTextVNode(vue.toDisplayString(measrueDicts.value.find(
|
|
1822
|
+
(dict) => dict.dictId + "" === pane.tempSelected.measure + ""
|
|
1823
|
+
)?.dictName || "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"), 1)
|
|
1781
1824
|
]),
|
|
1782
1825
|
_: 2
|
|
1783
1826
|
}, 1024)
|
|
@@ -1793,7 +1836,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1793
1836
|
default: vue.withCtx(() => [
|
|
1794
1837
|
vue.createVNode(vue.unref(antDesignVue.Col), null, {
|
|
1795
1838
|
default: vue.withCtx(() => [
|
|
1796
|
-
_hoisted_5$
|
|
1839
|
+
_hoisted_5$2
|
|
1797
1840
|
]),
|
|
1798
1841
|
_: 1
|
|
1799
1842
|
}),
|
|
@@ -1806,7 +1849,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1806
1849
|
key: 0,
|
|
1807
1850
|
class: "bm-fc-form-item__cover",
|
|
1808
1851
|
src: pane.tempSelected.coverPlanPath
|
|
1809
|
-
}, null, 8, _hoisted_6$
|
|
1852
|
+
}, null, 8, _hoisted_6$2)) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$2, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
|
|
1810
1853
|
]),
|
|
1811
1854
|
_: 2
|
|
1812
1855
|
}, 1024)
|
|
@@ -1822,7 +1865,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1822
1865
|
default: vue.withCtx(() => [
|
|
1823
1866
|
vue.createVNode(vue.unref(antDesignVue.Col), null, {
|
|
1824
1867
|
default: vue.withCtx(() => [
|
|
1825
|
-
_hoisted_8$
|
|
1868
|
+
_hoisted_8$2
|
|
1826
1869
|
]),
|
|
1827
1870
|
_: 1
|
|
1828
1871
|
}),
|
|
@@ -1835,7 +1878,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1835
1878
|
key: 0,
|
|
1836
1879
|
class: "bm-fc-form-item__temp-content",
|
|
1837
1880
|
content: pane.tempSelected.content
|
|
1838
|
-
}, null, 8, ["content"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_9$
|
|
1881
|
+
}, null, 8, ["content"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_9$2, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
|
|
1839
1882
|
]),
|
|
1840
1883
|
_: 2
|
|
1841
1884
|
}, 1024)
|
|
@@ -1962,7 +2005,8 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1962
2005
|
"dataFiltering",
|
|
1963
2006
|
"required",
|
|
1964
2007
|
"extraConfig",
|
|
1965
|
-
"defalutValue"
|
|
2008
|
+
"defalutValue",
|
|
2009
|
+
"disabled"
|
|
1966
2010
|
],
|
|
1967
2011
|
emits: ["change"],
|
|
1968
2012
|
setup(__props, { emit: emits }) {
|
|
@@ -1994,11 +2038,15 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
1994
2038
|
function emitChange(value) {
|
|
1995
2039
|
emits("change", value);
|
|
1996
2040
|
}
|
|
1997
|
-
vue.watch(
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2041
|
+
vue.watch(
|
|
2042
|
+
() => props.defalutValue,
|
|
2043
|
+
(val) => {
|
|
2044
|
+
val && fetch(val);
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
immediate: true
|
|
2048
|
+
}
|
|
2049
|
+
);
|
|
2002
2050
|
return (_ctx, _cache) => {
|
|
2003
2051
|
return vue.openBlock(), vue.createBlock(vue.unref(antDesignVue.Row), { gutter: [0, 24] }, {
|
|
2004
2052
|
default: vue.withCtx(() => [
|
|
@@ -2022,8 +2070,9 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
2022
2070
|
vue.createVNode(vue.unref(antDesignVue.Input), {
|
|
2023
2071
|
placeholder: "\u8BF7\u8F93\u5165",
|
|
2024
2072
|
value: __props.defalutValue,
|
|
2073
|
+
disabled: __props.disabled,
|
|
2025
2074
|
onBlur: handleBlur
|
|
2026
|
-
}, null, 8, ["value"])
|
|
2075
|
+
}, null, 8, ["value", "disabled"])
|
|
2027
2076
|
]),
|
|
2028
2077
|
_: 1
|
|
2029
2078
|
})
|
|
@@ -2136,7 +2185,7 @@ var product = {
|
|
|
2136
2185
|
|
|
2137
2186
|
const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
2138
2187
|
__name: "shop-widget",
|
|
2139
|
-
props: ["value", "extraConfig", "rule"],
|
|
2188
|
+
props: ["value", "extraConfig", "rule", "disabled"],
|
|
2140
2189
|
emits: ["change"],
|
|
2141
2190
|
setup(__props, { emit: emits }) {
|
|
2142
2191
|
const props = __props;
|
|
@@ -2176,9 +2225,10 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
2176
2225
|
"not-found-content": null,
|
|
2177
2226
|
options: options.value,
|
|
2178
2227
|
"get-popup-container": vue.unref(getContainer),
|
|
2228
|
+
disabled: __props.disabled,
|
|
2179
2229
|
onChange: handleChange,
|
|
2180
2230
|
onSearch: handleSearch
|
|
2181
|
-
}, null, 8, ["value", "options", "get-popup-container"]);
|
|
2231
|
+
}, null, 8, ["value", "options", "get-popup-container", "disabled"]);
|
|
2182
2232
|
};
|
|
2183
2233
|
}
|
|
2184
2234
|
});
|
|
@@ -2262,6 +2312,7 @@ var shop = {
|
|
|
2262
2312
|
rule: data,
|
|
2263
2313
|
extraConfig: extraConfig.shop,
|
|
2264
2314
|
value: row[field],
|
|
2315
|
+
disabled: data.disabled,
|
|
2265
2316
|
onChange: (value) => {
|
|
2266
2317
|
row[field] = value;
|
|
2267
2318
|
},
|
|
@@ -2464,6 +2515,7 @@ var materialType = {
|
|
|
2464
2515
|
multiple: data.props.multiple,
|
|
2465
2516
|
format: data.config.format,
|
|
2466
2517
|
config: extraConfig.materialType,
|
|
2518
|
+
disabled: data.disabled,
|
|
2467
2519
|
onChange: (value) => {
|
|
2468
2520
|
row[field] = value;
|
|
2469
2521
|
},
|
|
@@ -2597,7 +2649,7 @@ var department = {
|
|
|
2597
2649
|
minWidth: data.config.fieldRatio,
|
|
2598
2650
|
slots: {
|
|
2599
2651
|
default({ row }) {
|
|
2600
|
-
return vue.h(StaffSelector, Object.assign({ title: '添加部门', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, immediateFetch: true, unitStr: '个', onChange: (value) => {
|
|
2652
|
+
return vue.h(StaffSelector, Object.assign({ title: '添加部门', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, immediateFetch: true, unitStr: '个', disabled: data.disabled, onChange: (value) => {
|
|
2601
2653
|
row[field] = value;
|
|
2602
2654
|
}, defaultSelected: row[field] }, extraConfig.department));
|
|
2603
2655
|
},
|
|
@@ -2686,31 +2738,31 @@ const _hoisted_4$1 = {
|
|
|
2686
2738
|
viewBox: "0 0 64 64",
|
|
2687
2739
|
xmlns: "http://www.w3.org/2000/svg"
|
|
2688
2740
|
};
|
|
2689
|
-
const _hoisted_5 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-136.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(86.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M49.0100306,30.0029562 L50.2811889,30.3435621 L49.2521244,34.1840832 C50.0512102,34.1228141 50.8585138,33.9767838 51.6506128,33.7252224 L51.6506128,33.7252224 L52.1153688,34.9657811 C50.956208,35.2349395 49.8837503,35.3968852 48.9115186,35.4552416 L48.9115186,35.4552416 L47.4440146,40.932041 C47.3570514,41.2565921 47.4623223,41.4587258 47.7598275,41.538442 L47.7598275,41.538442 L48.3142689,41.6870042 C48.5576822,41.7522266 48.7624685,41.6911479 48.9250042,41.5172912 C49.1182092,41.3371585 49.3841438,40.6692283 49.7363308,39.517124 L49.7363308,39.517124 L50.7978485,40.207385 C50.2729661,41.7335379 49.8336254,42.6158937 49.4834499,42.8409295 C49.1675673,43.0461664 48.7490662,43.0934619 48.2216707,42.9521467 L48.2216707,42.9521467 L47.0316501,42.6332816 C46.1526576,42.3977563 45.8467442,41.8085017 46.0967634,40.8754173 L46.0967634,40.8754173 L49.0100306,30.0029562 Z M45.4831901,29.1014238 L46.7543485,29.4420297 L45.725284,33.2825507 L47.4562231,33.7463545 L47.1228642,34.9904669 L45.3919251,34.5266632 L43.9026803,40.0846004 C44.5141263,40.0745105 45.0922503,40.0265042 45.6406759,39.9270587 L45.6406759,39.9270587 L45.5553246,41.1651552 C44.4901138,41.300055 43.2906443,41.3410048 41.9668156,41.305151 L41.9668156,41.305151 L41.9611295,40.0281672 C42.3588607,40.0042941 42.617028,39.7980864 42.7184851,39.4194435 L42.7184851,39.4194435 L45.4831901,29.1014238 Z M42.5704483,28.2339938 L43.8145607,28.5673527 L43.1732072,30.9609169 L44.4037967,31.2906524 L44.0740612,32.5212419 L42.8434717,32.1915064 L42.1368957,34.8284839 C42.5652962,34.7983348 43.0009437,34.7411398 43.4230683,34.6803213 L43.4230683,34.6803213 L43.0969563,35.8973879 C42.6613088,35.9545829 42.2292848,35.9982549 41.8107837,36.0455504 L41.8107837,36.0455504 L40.850565,39.6291353 C40.6114162,40.5216507 40.0591071,40.8519575 39.2206835,40.6273026 L39.2206835,40.6273026 L38.0577088,40.3156845 L38.1242319,38.9855797 C38.4478121,39.1302582 38.7651162,39.2442673 39.0896673,39.3312305 C39.4006954,39.4145703 39.6064526,39.2957763 39.6934158,38.9712253 L39.6934158,38.9712253 L40.4543438,36.1314033 C39.9853743,36.150682 39.5200284,36.1564377 39.0718288,36.152294 L39.0718288,36.152294 L39.1040591,34.8419882 C39.6604424,34.8751197 40.2204491,34.8947282 40.7877027,34.8872909 L40.7877027,34.8872909 L41.5993592,31.8581475 L40.1794483,31.4776835 L40.5091837,30.247094 L41.9290947,30.627558 L42.5704483,28.2339938 Z M32.313038,28.3263268 L33.5841963,28.6669327 L33.2689547,29.8434303 L37.2852743,30.9195999 L35.4880349,37.6269888 L34.2303995,37.2900064 L34.4151963,36.6003354 L31.6565121,35.8611482 L30.9390657,38.5386946 L29.6679073,38.1980887 L30.3853537,35.5205423 L27.6672384,34.7922256 L27.4715712,35.5224655 L26.2139358,35.1854831 L28.0220457,28.4375253 L31.9977964,29.5028244 L32.313038,28.3263268 Z M16.5007239,28.1622065 L21.6394493,29.5391238 L21.8785981,28.6466084 L23.1497565,28.9872142 L22.9106077,29.8797297 L24.3846105,30.2746875 L24.0621219,31.4782311 L22.5881191,31.0832733 L21.732981,34.2746922 C21.4648445,35.2753913 20.8439496,35.6452961 19.8838193,35.38803 L19.8838193,35.38803 L17.9635588,34.8734977 L17.9957891,33.563192 C18.6033515,33.7839633 19.1775919,33.9668183 19.7320333,34.1153804 C20.1512451,34.2277079 20.4292114,34.055793 20.5451624,33.6230582 L20.5451624,33.6230582 L21.3169607,30.7426674 L16.1782353,29.3657501 L16.5007239,28.1622065 Z M32.3087361,33.4270151 L31.9717537,34.6846506 L34.7304379,35.4238377 L35.0674202,34.1662023 L32.3087361,33.4270151 Z M28.3194624,32.3580925 L27.98248,33.6157279 L30.7005953,34.3440447 L31.0375777,33.0864093 L28.3194624,32.3580925 Z M16.2003944,24.4147852 L17.1580625,25.2221586 C16.6586142,25.8420128 16.0888984,26.3995574 15.4624383,26.8984158 L15.4624383,26.8984158 L13.6217172,33.7680803 L12.3911277,33.4383448 L13.8550082,27.9750683 C13.2927996,28.2882287 12.7107919,28.5670962 12.1053618,28.8251938 L12.1053618,28.8251938 L12.0663538,27.5102937 C13.7464436,26.7574815 15.125665,25.7211377 16.2003944,24.4147852 L16.2003944,24.4147852 Z M32.9500897,31.0334509 L32.6094838,32.3046093 L35.368168,33.0437965 L35.7087738,31.7726381 L32.9500897,31.0334509 Z M17.8456337,30.1748748 C18.3864824,31.1314513 18.7805204,31.932739 19.0376471,32.5958845 L19.0376471,32.5958845 L17.8485277,33.0309419 C17.578849,32.3064577 17.1920579,31.4781241 16.6746316,30.5423174 L16.6746316,30.5423174 Z M28.960816,29.9645283 L28.6202102,31.2356867 L31.3383254,31.9640035 L31.6789313,30.6928451 L28.960816,29.9645283 Z M27.5840244,25.2039765 L32.6416121,26.559153 C32.5996217,26.2290367 32.5503844,25.9259663 32.4840006,25.6327953 L32.4840006,25.6327953 L33.9077952,25.7823981 C33.9326392,26.1224139 33.9601357,26.5066221 33.9668623,26.9142528 L33.9668623,26.9142528 L39.1055877,28.2911701 L38.4207525,30.8470098 L37.17664,30.5136509 L37.5462336,29.1343088 L28.5128953,26.7138331 L28.1251844,28.16079 L26.8810719,27.8274311 L27.5840244,25.2039765 Z M21.5900589,22.5833276 L22.8206484,22.9130631 L22.4546782,24.2788822 L25.3891609,25.0651745 L25.0739193,26.2416721 L22.1394366,25.4553799 L21.7662196,26.8482449 L25.2551437,27.7830993 L24.9362786,28.9731199 L16.8225017,26.7990399 L17.1413667,25.6090193 L20.5356301,26.5185094 L20.9088471,25.1256444 L18.0014104,24.3465991 L18.316652,23.1701014 L21.2240887,23.9491467 L21.5900589,22.5833276 Z M16.5505886,21.1605363 L17.5217797,21.9715331 C16.4470503,23.2778855 14.9217289,24.3185636 12.9801085,25.0737682 L12.9801085,25.0737682 L12.944724,23.7453451 C14.4154332,23.1248498 15.6185959,22.2587392 16.5505886,21.1605363 L16.5505886,21.1605363 Z" fill="#2F4EED"></path></g></g></g></g>', 1);
|
|
2690
|
-
const _hoisted_6 = [
|
|
2691
|
-
_hoisted_5
|
|
2741
|
+
const _hoisted_5$1 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-136.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(86.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M49.0100306,30.0029562 L50.2811889,30.3435621 L49.2521244,34.1840832 C50.0512102,34.1228141 50.8585138,33.9767838 51.6506128,33.7252224 L51.6506128,33.7252224 L52.1153688,34.9657811 C50.956208,35.2349395 49.8837503,35.3968852 48.9115186,35.4552416 L48.9115186,35.4552416 L47.4440146,40.932041 C47.3570514,41.2565921 47.4623223,41.4587258 47.7598275,41.538442 L47.7598275,41.538442 L48.3142689,41.6870042 C48.5576822,41.7522266 48.7624685,41.6911479 48.9250042,41.5172912 C49.1182092,41.3371585 49.3841438,40.6692283 49.7363308,39.517124 L49.7363308,39.517124 L50.7978485,40.207385 C50.2729661,41.7335379 49.8336254,42.6158937 49.4834499,42.8409295 C49.1675673,43.0461664 48.7490662,43.0934619 48.2216707,42.9521467 L48.2216707,42.9521467 L47.0316501,42.6332816 C46.1526576,42.3977563 45.8467442,41.8085017 46.0967634,40.8754173 L46.0967634,40.8754173 L49.0100306,30.0029562 Z M45.4831901,29.1014238 L46.7543485,29.4420297 L45.725284,33.2825507 L47.4562231,33.7463545 L47.1228642,34.9904669 L45.3919251,34.5266632 L43.9026803,40.0846004 C44.5141263,40.0745105 45.0922503,40.0265042 45.6406759,39.9270587 L45.6406759,39.9270587 L45.5553246,41.1651552 C44.4901138,41.300055 43.2906443,41.3410048 41.9668156,41.305151 L41.9668156,41.305151 L41.9611295,40.0281672 C42.3588607,40.0042941 42.617028,39.7980864 42.7184851,39.4194435 L42.7184851,39.4194435 L45.4831901,29.1014238 Z M42.5704483,28.2339938 L43.8145607,28.5673527 L43.1732072,30.9609169 L44.4037967,31.2906524 L44.0740612,32.5212419 L42.8434717,32.1915064 L42.1368957,34.8284839 C42.5652962,34.7983348 43.0009437,34.7411398 43.4230683,34.6803213 L43.4230683,34.6803213 L43.0969563,35.8973879 C42.6613088,35.9545829 42.2292848,35.9982549 41.8107837,36.0455504 L41.8107837,36.0455504 L40.850565,39.6291353 C40.6114162,40.5216507 40.0591071,40.8519575 39.2206835,40.6273026 L39.2206835,40.6273026 L38.0577088,40.3156845 L38.1242319,38.9855797 C38.4478121,39.1302582 38.7651162,39.2442673 39.0896673,39.3312305 C39.4006954,39.4145703 39.6064526,39.2957763 39.6934158,38.9712253 L39.6934158,38.9712253 L40.4543438,36.1314033 C39.9853743,36.150682 39.5200284,36.1564377 39.0718288,36.152294 L39.0718288,36.152294 L39.1040591,34.8419882 C39.6604424,34.8751197 40.2204491,34.8947282 40.7877027,34.8872909 L40.7877027,34.8872909 L41.5993592,31.8581475 L40.1794483,31.4776835 L40.5091837,30.247094 L41.9290947,30.627558 L42.5704483,28.2339938 Z M32.313038,28.3263268 L33.5841963,28.6669327 L33.2689547,29.8434303 L37.2852743,30.9195999 L35.4880349,37.6269888 L34.2303995,37.2900064 L34.4151963,36.6003354 L31.6565121,35.8611482 L30.9390657,38.5386946 L29.6679073,38.1980887 L30.3853537,35.5205423 L27.6672384,34.7922256 L27.4715712,35.5224655 L26.2139358,35.1854831 L28.0220457,28.4375253 L31.9977964,29.5028244 L32.313038,28.3263268 Z M16.5007239,28.1622065 L21.6394493,29.5391238 L21.8785981,28.6466084 L23.1497565,28.9872142 L22.9106077,29.8797297 L24.3846105,30.2746875 L24.0621219,31.4782311 L22.5881191,31.0832733 L21.732981,34.2746922 C21.4648445,35.2753913 20.8439496,35.6452961 19.8838193,35.38803 L19.8838193,35.38803 L17.9635588,34.8734977 L17.9957891,33.563192 C18.6033515,33.7839633 19.1775919,33.9668183 19.7320333,34.1153804 C20.1512451,34.2277079 20.4292114,34.055793 20.5451624,33.6230582 L20.5451624,33.6230582 L21.3169607,30.7426674 L16.1782353,29.3657501 L16.5007239,28.1622065 Z M32.3087361,33.4270151 L31.9717537,34.6846506 L34.7304379,35.4238377 L35.0674202,34.1662023 L32.3087361,33.4270151 Z M28.3194624,32.3580925 L27.98248,33.6157279 L30.7005953,34.3440447 L31.0375777,33.0864093 L28.3194624,32.3580925 Z M16.2003944,24.4147852 L17.1580625,25.2221586 C16.6586142,25.8420128 16.0888984,26.3995574 15.4624383,26.8984158 L15.4624383,26.8984158 L13.6217172,33.7680803 L12.3911277,33.4383448 L13.8550082,27.9750683 C13.2927996,28.2882287 12.7107919,28.5670962 12.1053618,28.8251938 L12.1053618,28.8251938 L12.0663538,27.5102937 C13.7464436,26.7574815 15.125665,25.7211377 16.2003944,24.4147852 L16.2003944,24.4147852 Z M32.9500897,31.0334509 L32.6094838,32.3046093 L35.368168,33.0437965 L35.7087738,31.7726381 L32.9500897,31.0334509 Z M17.8456337,30.1748748 C18.3864824,31.1314513 18.7805204,31.932739 19.0376471,32.5958845 L19.0376471,32.5958845 L17.8485277,33.0309419 C17.578849,32.3064577 17.1920579,31.4781241 16.6746316,30.5423174 L16.6746316,30.5423174 Z M28.960816,29.9645283 L28.6202102,31.2356867 L31.3383254,31.9640035 L31.6789313,30.6928451 L28.960816,29.9645283 Z M27.5840244,25.2039765 L32.6416121,26.559153 C32.5996217,26.2290367 32.5503844,25.9259663 32.4840006,25.6327953 L32.4840006,25.6327953 L33.9077952,25.7823981 C33.9326392,26.1224139 33.9601357,26.5066221 33.9668623,26.9142528 L33.9668623,26.9142528 L39.1055877,28.2911701 L38.4207525,30.8470098 L37.17664,30.5136509 L37.5462336,29.1343088 L28.5128953,26.7138331 L28.1251844,28.16079 L26.8810719,27.8274311 L27.5840244,25.2039765 Z M21.5900589,22.5833276 L22.8206484,22.9130631 L22.4546782,24.2788822 L25.3891609,25.0651745 L25.0739193,26.2416721 L22.1394366,25.4553799 L21.7662196,26.8482449 L25.2551437,27.7830993 L24.9362786,28.9731199 L16.8225017,26.7990399 L17.1413667,25.6090193 L20.5356301,26.5185094 L20.9088471,25.1256444 L18.0014104,24.3465991 L18.316652,23.1701014 L21.2240887,23.9491467 L21.5900589,22.5833276 Z M16.5505886,21.1605363 L17.5217797,21.9715331 C16.4470503,23.2778855 14.9217289,24.3185636 12.9801085,25.0737682 L12.9801085,25.0737682 L12.944724,23.7453451 C14.4154332,23.1248498 15.6185959,22.2587392 16.5505886,21.1605363 L16.5505886,21.1605363 Z" fill="#2F4EED"></path></g></g></g></g>', 1);
|
|
2742
|
+
const _hoisted_6$1 = [
|
|
2743
|
+
_hoisted_5$1
|
|
2692
2744
|
];
|
|
2693
|
-
const _hoisted_7 = {
|
|
2745
|
+
const _hoisted_7$1 = {
|
|
2694
2746
|
key: 2,
|
|
2695
2747
|
width: "64px",
|
|
2696
2748
|
height: "64px",
|
|
2697
2749
|
viewBox: "0 0 64 64",
|
|
2698
2750
|
xmlns: "http://www.w3.org/2000/svg"
|
|
2699
2751
|
};
|
|
2700
|
-
const _hoisted_8 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-50.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(0.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M46.493078,29.2270838 L47.8183283,29.5821835 L47.1914685,31.9216559 L52.0056429,33.21161 L50.2555085,39.7432004 L48.9708271,39.3989711 L49.1773647,38.6281623 L45.6478718,37.6824375 L44.4340104,42.2126296 L43.1087602,41.8575299 L44.3226215,37.3273378 L40.8066515,36.3852364 L40.6001139,37.1560452 L39.3154326,36.8118159 L41.065567,30.2802255 L45.8662183,31.5665561 L46.493078,29.2270838 Z M35.487069,26.3794896 L36.7582274,26.7200955 L35.7291628,30.5606166 C36.5282486,30.4993475 37.3355523,30.3533172 38.1276513,30.1017557 L38.1276513,30.1017557 L38.5924072,31.3423144 C37.4332465,31.6114729 36.3607887,31.7734186 35.388557,31.8317749 L35.388557,31.8317749 L33.921053,37.3085744 C33.8340898,37.6331255 33.9393608,37.8352591 34.2368659,37.9149754 L34.2368659,37.9149754 L34.7913074,38.0635375 C35.0347207,38.1287599 35.2395069,38.0676813 35.4020426,37.8938246 C35.5952477,37.7136919 35.8611822,37.0457616 36.2133693,35.8936573 L36.2133693,35.8936573 L37.2748869,36.5839184 C36.7500045,38.1100713 36.3106639,38.9924271 35.9604884,39.2174629 C35.6446057,39.4226997 35.2261047,39.4699952 34.6987092,39.32868 L34.6987092,39.32868 L33.5086886,39.009815 C32.6296961,38.7742896 32.3237826,38.1850351 32.5738018,37.2519507 L32.5738018,37.2519507 L35.487069,26.3794896 Z M31.9602286,25.4779572 L33.231387,25.818563 L32.2023224,29.6590841 L33.9332615,30.1228878 L33.5999026,31.3670003 L31.8689635,30.9031966 L30.3797187,36.4611338 C30.9911647,36.4510438 31.5692887,36.4030376 32.1177143,36.303592 L32.1177143,36.303592 L32.032363,37.5416886 C30.9671522,37.6765884 29.7676827,37.7175381 28.443854,37.6816844 L28.443854,37.6816844 L28.438168,36.4047006 C28.8358991,36.3808275 29.0940665,36.1746198 29.1955235,35.7959768 L29.1955235,35.7959768 L31.9602286,25.4779572 Z M46.8544862,33.1792913 L45.9848542,36.4248021 L49.5143471,37.3705269 L50.3839791,34.1250161 L46.8544862,33.1792913 Z M29.0474867,24.6105271 L30.2915992,24.9438861 L29.6502456,27.3374503 L30.8808351,27.6671857 L30.5510996,28.8977752 L29.3205101,28.5680398 L28.6139341,31.2050173 C29.0423347,31.1748682 29.4779822,31.1176732 29.9001067,31.0568547 L29.9001067,31.0568547 L29.5739947,32.2739212 C29.1383472,32.3311163 28.7063232,32.3747883 28.2878221,32.4220838 L28.2878221,32.4220838 L27.3276035,36.0056686 C27.0884547,36.8981841 26.5361455,37.2284909 25.6977219,37.003836 L25.6977219,37.003836 L24.5347472,36.6922178 L24.6012704,35.3621131 C24.9248505,35.5067916 25.2421547,35.6208007 25.5667058,35.7077639 C25.8777339,35.7911036 26.083491,35.6723097 26.1704542,35.3477586 L26.1704542,35.3477586 L26.9313822,32.5079367 C26.4624128,32.5272154 25.9970668,32.5329711 25.5488673,32.5288273 L25.5488673,32.5288273 L25.5810976,31.2185216 C26.1374808,31.2516531 26.6974875,31.2712616 27.2647411,31.2638242 L27.2647411,31.2638242 L28.0763977,28.2346808 L26.6564867,27.8542168 L26.9862222,26.6236273 L28.4061331,27.0040913 L29.0474867,24.6105271 Z M42.0132659,31.8820902 L41.1436339,35.127601 L44.6596039,36.0697023 L45.5292359,32.8241916 L42.0132659,31.8820902 Z M18.7900764,24.7028602 L20.0612348,25.043466 L19.7459932,26.2199637 L23.7623128,27.2961333 L21.9650733,34.0035222 L20.7074379,33.6665398 L20.8922347,32.9768688 L18.1335505,32.2376816 L17.4161041,34.915228 L16.1449457,34.5746221 L16.8623921,31.8970757 L14.1442769,31.1687589 L13.9486097,31.8989988 L12.6909742,31.5620164 L14.4990841,24.8140586 L18.4748348,25.8793578 L18.7900764,24.7028602 Z M18.7857745,29.8035485 L18.4487921,31.0611839 L21.2074763,31.8003711 L21.5444587,30.5427357 L18.7857745,29.8035485 Z M14.7965009,28.7346258 L14.4595185,29.9922613 L17.1776337,30.7205781 L17.5146161,29.4629426 L14.7965009,28.7346258 Z M19.4271281,27.4099843 L19.0865223,28.6811427 L21.8452064,29.4203299 L22.1858123,28.1491715 L19.4271281,27.4099843 Z M15.4378545,26.3410616 L15.0972486,27.61222 L17.8153639,28.3405368 L18.1559697,27.0693784 L15.4378545,26.3410616 Z M14.0610629,21.5805099 L19.1186505,22.9356864 C19.0766601,22.6055701 19.0274228,22.3024996 18.961039,22.0093287 L18.961039,22.0093287 L20.3848336,22.1589314 C20.4096776,22.4989473 20.4371741,22.8831555 20.4439007,23.2907861 L20.4439007,23.2907861 L25.5826261,24.6677035 L24.8977909,27.2235432 L23.6536785,26.8901843 L24.0232721,25.5108422 L14.9899337,23.0903665 L14.6022228,24.5373234 L13.3581103,24.2039644 L14.0610629,21.5805099 Z" fill="#2F4EED"></path></g></g></g></g>', 1);
|
|
2701
|
-
const _hoisted_9 = [
|
|
2702
|
-
_hoisted_8
|
|
2752
|
+
const _hoisted_8$1 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-50.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(0.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M46.493078,29.2270838 L47.8183283,29.5821835 L47.1914685,31.9216559 L52.0056429,33.21161 L50.2555085,39.7432004 L48.9708271,39.3989711 L49.1773647,38.6281623 L45.6478718,37.6824375 L44.4340104,42.2126296 L43.1087602,41.8575299 L44.3226215,37.3273378 L40.8066515,36.3852364 L40.6001139,37.1560452 L39.3154326,36.8118159 L41.065567,30.2802255 L45.8662183,31.5665561 L46.493078,29.2270838 Z M35.487069,26.3794896 L36.7582274,26.7200955 L35.7291628,30.5606166 C36.5282486,30.4993475 37.3355523,30.3533172 38.1276513,30.1017557 L38.1276513,30.1017557 L38.5924072,31.3423144 C37.4332465,31.6114729 36.3607887,31.7734186 35.388557,31.8317749 L35.388557,31.8317749 L33.921053,37.3085744 C33.8340898,37.6331255 33.9393608,37.8352591 34.2368659,37.9149754 L34.2368659,37.9149754 L34.7913074,38.0635375 C35.0347207,38.1287599 35.2395069,38.0676813 35.4020426,37.8938246 C35.5952477,37.7136919 35.8611822,37.0457616 36.2133693,35.8936573 L36.2133693,35.8936573 L37.2748869,36.5839184 C36.7500045,38.1100713 36.3106639,38.9924271 35.9604884,39.2174629 C35.6446057,39.4226997 35.2261047,39.4699952 34.6987092,39.32868 L34.6987092,39.32868 L33.5086886,39.009815 C32.6296961,38.7742896 32.3237826,38.1850351 32.5738018,37.2519507 L32.5738018,37.2519507 L35.487069,26.3794896 Z M31.9602286,25.4779572 L33.231387,25.818563 L32.2023224,29.6590841 L33.9332615,30.1228878 L33.5999026,31.3670003 L31.8689635,30.9031966 L30.3797187,36.4611338 C30.9911647,36.4510438 31.5692887,36.4030376 32.1177143,36.303592 L32.1177143,36.303592 L32.032363,37.5416886 C30.9671522,37.6765884 29.7676827,37.7175381 28.443854,37.6816844 L28.443854,37.6816844 L28.438168,36.4047006 C28.8358991,36.3808275 29.0940665,36.1746198 29.1955235,35.7959768 L29.1955235,35.7959768 L31.9602286,25.4779572 Z M46.8544862,33.1792913 L45.9848542,36.4248021 L49.5143471,37.3705269 L50.3839791,34.1250161 L46.8544862,33.1792913 Z M29.0474867,24.6105271 L30.2915992,24.9438861 L29.6502456,27.3374503 L30.8808351,27.6671857 L30.5510996,28.8977752 L29.3205101,28.5680398 L28.6139341,31.2050173 C29.0423347,31.1748682 29.4779822,31.1176732 29.9001067,31.0568547 L29.9001067,31.0568547 L29.5739947,32.2739212 C29.1383472,32.3311163 28.7063232,32.3747883 28.2878221,32.4220838 L28.2878221,32.4220838 L27.3276035,36.0056686 C27.0884547,36.8981841 26.5361455,37.2284909 25.6977219,37.003836 L25.6977219,37.003836 L24.5347472,36.6922178 L24.6012704,35.3621131 C24.9248505,35.5067916 25.2421547,35.6208007 25.5667058,35.7077639 C25.8777339,35.7911036 26.083491,35.6723097 26.1704542,35.3477586 L26.1704542,35.3477586 L26.9313822,32.5079367 C26.4624128,32.5272154 25.9970668,32.5329711 25.5488673,32.5288273 L25.5488673,32.5288273 L25.5810976,31.2185216 C26.1374808,31.2516531 26.6974875,31.2712616 27.2647411,31.2638242 L27.2647411,31.2638242 L28.0763977,28.2346808 L26.6564867,27.8542168 L26.9862222,26.6236273 L28.4061331,27.0040913 L29.0474867,24.6105271 Z M42.0132659,31.8820902 L41.1436339,35.127601 L44.6596039,36.0697023 L45.5292359,32.8241916 L42.0132659,31.8820902 Z M18.7900764,24.7028602 L20.0612348,25.043466 L19.7459932,26.2199637 L23.7623128,27.2961333 L21.9650733,34.0035222 L20.7074379,33.6665398 L20.8922347,32.9768688 L18.1335505,32.2376816 L17.4161041,34.915228 L16.1449457,34.5746221 L16.8623921,31.8970757 L14.1442769,31.1687589 L13.9486097,31.8989988 L12.6909742,31.5620164 L14.4990841,24.8140586 L18.4748348,25.8793578 L18.7900764,24.7028602 Z M18.7857745,29.8035485 L18.4487921,31.0611839 L21.2074763,31.8003711 L21.5444587,30.5427357 L18.7857745,29.8035485 Z M14.7965009,28.7346258 L14.4595185,29.9922613 L17.1776337,30.7205781 L17.5146161,29.4629426 L14.7965009,28.7346258 Z M19.4271281,27.4099843 L19.0865223,28.6811427 L21.8452064,29.4203299 L22.1858123,28.1491715 L19.4271281,27.4099843 Z M15.4378545,26.3410616 L15.0972486,27.61222 L17.8153639,28.3405368 L18.1559697,27.0693784 L15.4378545,26.3410616 Z M14.0610629,21.5805099 L19.1186505,22.9356864 C19.0766601,22.6055701 19.0274228,22.3024996 18.961039,22.0093287 L18.961039,22.0093287 L20.3848336,22.1589314 C20.4096776,22.4989473 20.4371741,22.8831555 20.4439007,23.2907861 L20.4439007,23.2907861 L25.5826261,24.6677035 L24.8977909,27.2235432 L23.6536785,26.8901843 L24.0232721,25.5108422 L14.9899337,23.0903665 L14.6022228,24.5373234 L13.3581103,24.2039644 L14.0610629,21.5805099 Z" fill="#2F4EED"></path></g></g></g></g>', 1);
|
|
2753
|
+
const _hoisted_9$1 = [
|
|
2754
|
+
_hoisted_8$1
|
|
2703
2755
|
];
|
|
2704
|
-
const _hoisted_10 = {
|
|
2756
|
+
const _hoisted_10$1 = {
|
|
2705
2757
|
key: 3,
|
|
2706
2758
|
width: "64px",
|
|
2707
2759
|
height: "64px",
|
|
2708
2760
|
viewBox: "0 0 64 64",
|
|
2709
2761
|
xmlns: "http://www.w3.org/2000/svg"
|
|
2710
2762
|
};
|
|
2711
|
-
const _hoisted_11 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-222.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(172.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M39.8311449,32.3989265 L42.9008571,33.2214534 L41.5275633,38.3466559 C41.5942072,38.4224885 41.6437047,38.5082207 41.6895787,38.6074758 C41.9199196,39.046036 42.1990473,39.4107053 42.5035392,39.680714 C42.8720225,39.9823629 43.465091,40.257226 44.2962677,40.5089269 C45.0904989,40.7362344 46.0334828,41.0034 47.1423656,41.3005243 C47.7508989,41.4635803 48.3765786,41.6167368 49.0121578,41.7870397 C49.6685069,41.9339202 50.1625804,42.0373191 50.5079014,42.1008598 L50.5079014,42.1008598 L49.8490205,43.3157244 L46.9821526,42.5475495 C46.2113438,42.3410119 45.3765437,42.102834 44.4741287,41.8465387 C43.5581908,41.5866201 42.8226458,41.3025681 42.290916,41.0151529 C41.7664333,40.7006918 41.3530469,40.2420725 41.0570329,39.6699643 C40.9293104,39.3893454 40.7689767,39.2304332 40.6067011,39.1869516 C40.3227189,39.1108588 39.6556899,39.5988468 38.6155135,40.6680619 L38.6155135,40.6680619 L37.9044315,39.5354268 C38.8948503,38.5978177 39.7053268,38.0613032 40.3223381,37.9222597 L40.3223381,37.9222597 L41.3441556,34.1087845 L39.5050329,33.6159931 L39.8311449,32.3989265 Z M49.9737843,30.2466994 L51.2584656,30.5909287 L50.7004518,32.6734648 L52.6207123,33.1879971 L52.2837299,34.4456325 L50.3634694,33.9311002 L48.8416134,39.6107441 C48.5952177,40.5303055 47.9987161,40.8632648 47.0791548,40.6168691 L47.0791548,40.6168691 L45.1724172,40.1059603 L45.2181704,38.799278 C45.8122099,39.0164259 46.3864503,39.1992809 46.9408917,39.347843 C47.3060117,39.4456766 47.5460616,39.3070837 47.6402718,38.9554867 L47.6402718,38.9554867 L49.078788,33.5868709 L43.9941545,32.2244475 L44.3311369,30.966812 L49.4157704,32.3292355 L49.9737843,30.2466994 Z M26.3180828,28.7926063 L29.3337032,29.6006394 L27.9640328,34.7123188 C28.0171538,34.784528 28.0666513,34.8702602 28.1125253,34.9695153 C28.3257198,35.417975 28.5778015,35.7753974 28.8687705,36.0417826 C29.2237308,36.339808 29.7861299,36.6209472 30.5767377,36.8617777 C31.3439231,37.0818382 32.246338,37.3381334 33.301129,37.6207638 C33.9637541,37.7983137 34.6435257,37.9659641 35.3232972,38.1336144 C36.0030688,38.3012648 36.5377112,38.4155341 36.9100781,38.4863218 L36.9100781,38.4863218 L36.2584441,39.6741404 L33.1752089,38.84799 C32.431446,38.6486994 31.6236918,38.4177684 30.7618457,38.1723436 C29.8864767,37.9232953 29.1915005,37.6501138 28.6597708,37.3626986 C28.1623339,37.0554844 27.7759935,36.604112 27.4935025,36.0356273 C27.36578,35.7550084 27.2324921,35.6033431 27.0702166,35.5598615 C26.7862344,35.4837687 26.1363518,35.9618572 25.1205688,36.9941269 L25.1205688,36.9941269 L24.4094868,35.8614917 C25.3791357,34.9473052 26.1724657,34.4206901 26.7858535,34.2951696 L26.7858535,34.2951696 L27.8112946,30.4681715 L25.9992177,29.9826269 L26.3180828,28.7926063 Z M31.3999617,25.6756869 L38.8240676,27.6649701 L38.5812954,28.5710085 C37.6157903,29.0369955 36.625181,29.380305 35.6022208,29.6279828 L35.6022208,29.6279828 L35.6652412,29.7173384 L38.3833565,30.4456552 L36.7745373,36.4498501 C36.5607528,37.2477049 36.005791,37.5338193 35.1267985,37.298294 L35.1267985,37.298294 L34.0855305,37.0192871 L34.1013251,35.8785038 L35.0469615,36.1898617 C35.3444667,36.269578 35.5466004,36.164307 35.6263166,35.8668019 L35.6263166,35.8668019 L35.8111134,35.1771308 L33.863807,34.6553516 L33.2695584,36.8731173 L32.0930608,36.5578757 L32.6873093,34.34011 L30.7805717,33.8292012 L30.1790763,36.0740129 L28.9620097,35.7479009 L30.9186817,28.4455016 L34.0289629,29.2788989 C33.6624214,28.8618194 33.2454116,28.416723 32.7706864,27.9706557 L32.7706864,27.9706557 L33.7236394,27.4433299 L31.1137079,26.7440009 L31.3999617,25.6756869 Z M45.4335346,33.6681804 C46.0074451,34.8800116 46.4111225,35.915784 46.661713,36.7655984 L46.661713,36.7655984 L45.4419242,37.2069319 C45.195928,36.2858793 44.7994976,35.2230609 44.266156,34.0221001 L44.266156,34.0221001 Z M14.3400001,21.3508797 L24.576882,24.0938439 L23.055026,29.7734878 L14.6707898,27.5269385 L13.6743365,31.2457529 C13.5366448,31.7596255 13.7247352,32.0854076 14.2386077,32.2230993 L14.2386077,32.2230993 L20.9865656,34.0312092 C21.2299789,34.0964316 21.48161,34.0768927 21.7144131,33.9653457 C21.9851325,33.8204768 22.3377701,33.0453337 22.7993718,31.6471636 L22.7993718,31.6471636 L23.9483033,32.3898348 C23.3294709,34.0502464 22.8278206,35.0028696 22.4604987,35.2378049 C22.0562313,35.4483468 21.5800149,35.4946714 21.0183266,35.3731552 L21.0183266,35.3731552 L13.5536518,33.3730017 C12.4042001,33.065007 11.9956682,32.3178111 12.3145333,31.1277905 L12.3145333,31.1277905 L14.1987359,24.0958505 L15.4969402,24.4437032 L15.0005253,26.296349 L22.0730342,28.191422 L22.9354193,24.9729572 L14.0102646,22.5814692 L14.3400001,21.3508797 Z M34.3964566,32.6674763 L34.1428139,33.6140836 L36.0901204,34.1358628 L36.343763,33.1892555 L34.3964566,32.6674763 Z M31.3132213,31.8413259 L31.0595787,32.7879332 L32.9663162,33.298842 L33.2199589,32.3522347 L31.3132213,31.8413259 Z M34.9327296,30.666078 L34.679087,31.6126853 L36.6263934,32.1344645 L36.8800361,31.1878572 L34.9327296,30.666078 Z M42.1150018,28.2568959 C42.83262,29.2028622 43.4150085,30.1125938 43.8621674,30.9860907 L43.8621674,30.9860907 L42.6790639,31.6691559 C42.3193188,30.8480691 41.7748465,29.9050156 41.0113544,28.8597942 L41.0113544,28.8597942 Z M31.8494944,29.8399276 L31.5958517,30.7865349 L33.5025893,31.2974437 L33.756232,30.3508364 L31.8494944,29.8399276 Z M33.7912542,27.4614473 C34.2181636,27.9236901 34.6216505,28.365163 34.980945,28.8092885 C35.6250022,28.6774919 36.2393609,28.494256 36.8203976,28.2731038 L36.8203976,28.2731038 Z M28.6461321,24.6479232 C29.3736497,25.6110358 29.9524148,26.5342904 30.3860508,27.4041639 L30.3860508,27.4041639 L29.2408636,28.0539071 C28.8811184,27.2328203 28.3194998,26.2996663 27.5424847,25.2508214 L27.5424847,25.2508214 Z" fill="#29CC7A"></path></g></g></g></g>', 1);
|
|
2763
|
+
const _hoisted_11$1 = /* @__PURE__ */ vue.createStaticVNode('<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-222.000000, -92.000000)"><g transform="translate(50.000000, 42.000000)"><g transform="translate(172.000000, 50.000000)"><rect fill="#FFFFFF" opacity="0" x="0" y="0" width="64" height="64"></rect><path d="M33.7074572,12.1085688 L34.98805,12.2686429 L34.2410375,13.3358036 L34.4544696,14.5630384 L33.2272348,14.1895322 L32,14.8298286 L32,13.5492358 L31.0395554,12.6955072 L32.3201482,12.2152848 L32.9604447,11.0947661 L33.7074572,12.1085688 Z M23.9429365,13.8693839 L25.2235294,13.6559518 L24.7966651,14.8831866 L25.3836035,16.0037054 L24.0496526,16.0570634 L23.089208,17.0175081 L22.7157017,15.7902732 L21.5951829,15.2566929 L22.6623437,14.4563224 L22.9291338,13.1757295 L23.9429365,13.8693839 Z M42.5648912,13.6559518 L42.8850394,14.8831866 L44.0055581,15.5768411 L42.8850394,16.2704956 L42.5648912,17.4977304 L41.5510885,16.6440019 L40.2171375,16.7507179 L40.6973599,15.5768411 L40.2171375,14.4029643 L41.5510885,14.5096804 L42.5648912,13.6559518 Z M47.9006947,20.0055581 L49.2346457,19.792126 L48.8611394,21.0193608 L49.5014359,22.1398796 L48.1674849,22.1398796 L47.2603983,23.0469662 L46.780176,21.8197313 L45.5529412,21.286151 L46.5667439,20.5391385 L46.780176,19.2585456 L47.9006947,20.0055581 Z M45.5529412,23.8473367 L43.738768,23.3671144 C41.0708661,19.792126 36.8022233,17.4977304 32.053358,17.4977304 C29.9723946,17.4977304 28.0515053,17.9245947 26.2373321,18.7249652 L24.3698008,18.2447429 C26.6108383,16.910792 29.2253821,16.1637795 32,16.1637795 C37.7626679,16.1637795 42.7783233,19.2585456 45.5529412,23.8473367 Z M32.053358,8 C43.4186197,8 52.9697082,15.8969893 55.4241779,26.4618805 L54.0368689,26.0883742 C51.4223252,16.3772117 42.5648912,9.28059284 32,9.28059284 C25.7037517,9.28059284 19.9944419,11.8417786 15.9392311,15.8969893 L14.5519222,15.5234831 C18.9272811,10.881334 25.1168133,8 32.053358,8 Z M17.219824,42.0957851 L18.3403428,42.7894396 L17.273182,43.483094 L17.0597499,44.7103289 L15.9925891,43.8566003 L14.7119963,43.9633163 L15.1388606,42.7894396 L14.5519222,41.6155628 L15.8858731,41.7222788 L16.8463177,40.8685503 L17.219824,42.0957851 Z M18.4470588,40.0681797 L20.3145901,40.548402 C22.9824919,44.1233904 27.2511348,46.417786 32,46.417786 C34.0276054,46.417786 36.0018527,45.9909217 37.8160259,45.1905512 L39.6835572,45.6707735 C37.4425197,46.9513664 34.8279759,47.6450209 32.053358,47.6450209 C26.2373321,47.6983789 21.2216767,44.6569708 18.4470588,40.0681797 Z M5.1075498,17.6044465 L1.47920333,30.9973136 C1.21241315,32.0111163 1.79935157,33.024919 2.81315422,33.2917091 L56.6514127,47.6983789 C57.6652154,47.965169 58.6790181,47.3782306 58.9458082,46.364428 L62.5207967,32.9715609 C62.7875869,31.9577582 62.2006485,30.9439555 61.1868458,30.6771653 L7.40194533,16.2704956 C6.38814263,16.0037054 5.37433994,16.5906438 5.1075498,17.6044465 Z M4.04038905,16.6440019 C4.36053729,15.310051 5.80120426,14.5096804 7.13515514,14.8831866 L62.1472904,29.5566466 C63.4812413,29.9301528 64.2816118,31.3174618 63.9081056,32.6514127 L59.9596109,47.2715146 C59.6394627,48.6054655 58.1987957,49.405836 56.8648448,49.0323298 L1.85270957,34.3588698 C0.518758684,34.0387216 -0.281611874,32.5980546 0.0918944055,31.2641038 L4.04038905,16.6440019 Z M42.404817,48.1786012 L43.5253358,48.7121816 L42.4581751,49.5125521 L42.2447429,50.793145 L41.2309402,50.0461325 L40.0037054,50.3129227 L40.4305697,49.0856878 L39.8436313,47.965169 L41.1775822,47.911811 L42.0313108,46.9513664 L42.404817,48.1786012 Z M23.195924,47.1114405 L24.2097267,47.911811 L25.5436776,47.858453 L25.0100973,49.0323298 L25.4903196,50.2062066 L24.2097267,50.0994905 L23.195924,50.899861 L22.9291338,49.6726262 L21.8086151,48.9789717 L22.9291338,48.2853173 L23.195924,47.1114405 Z M33.7074572,50.3662807 L34.6679018,51.2200093 L33.440667,51.6468735 L32.8003705,52.7673923 L32,51.7535896 L30.6660491,51.5401575 L31.4130616,50.5263548 L31.1996295,49.29912 L32.4268643,49.6726262 L33.7074572,49.0856878 L33.7074572,50.3662807 Z M8.57582212,37.4536359 L9.96313105,37.8271422 C12.6310329,47.5383048 21.4884669,54.6349236 32,54.6349236 C38.2962483,54.6349236 44.0055581,52.1270959 48.0607689,48.0185271 L49.4480778,48.3920334 C45.0727188,53.0341825 38.8831867,55.9155164 32,55.9155164 C20.5813803,55.9155164 11.0836498,48.0185271 8.57582212,37.4536359 Z M39.8311449,32.3989265 L42.9008571,33.2214534 L41.5275633,38.3466559 C41.5942072,38.4224885 41.6437047,38.5082207 41.6895787,38.6074758 C41.9199196,39.046036 42.1990473,39.4107053 42.5035392,39.680714 C42.8720225,39.9823629 43.465091,40.257226 44.2962677,40.5089269 C45.0904989,40.7362344 46.0334828,41.0034 47.1423656,41.3005243 C47.7508989,41.4635803 48.3765786,41.6167368 49.0121578,41.7870397 C49.6685069,41.9339202 50.1625804,42.0373191 50.5079014,42.1008598 L50.5079014,42.1008598 L49.8490205,43.3157244 L46.9821526,42.5475495 C46.2113438,42.3410119 45.3765437,42.102834 44.4741287,41.8465387 C43.5581908,41.5866201 42.8226458,41.3025681 42.290916,41.0151529 C41.7664333,40.7006918 41.3530469,40.2420725 41.0570329,39.6699643 C40.9293104,39.3893454 40.7689767,39.2304332 40.6067011,39.1869516 C40.3227189,39.1108588 39.6556899,39.5988468 38.6155135,40.6680619 L38.6155135,40.6680619 L37.9044315,39.5354268 C38.8948503,38.5978177 39.7053268,38.0613032 40.3223381,37.9222597 L40.3223381,37.9222597 L41.3441556,34.1087845 L39.5050329,33.6159931 L39.8311449,32.3989265 Z M49.9737843,30.2466994 L51.2584656,30.5909287 L50.7004518,32.6734648 L52.6207123,33.1879971 L52.2837299,34.4456325 L50.3634694,33.9311002 L48.8416134,39.6107441 C48.5952177,40.5303055 47.9987161,40.8632648 47.0791548,40.6168691 L47.0791548,40.6168691 L45.1724172,40.1059603 L45.2181704,38.799278 C45.8122099,39.0164259 46.3864503,39.1992809 46.9408917,39.347843 C47.3060117,39.4456766 47.5460616,39.3070837 47.6402718,38.9554867 L47.6402718,38.9554867 L49.078788,33.5868709 L43.9941545,32.2244475 L44.3311369,30.966812 L49.4157704,32.3292355 L49.9737843,30.2466994 Z M26.3180828,28.7926063 L29.3337032,29.6006394 L27.9640328,34.7123188 C28.0171538,34.784528 28.0666513,34.8702602 28.1125253,34.9695153 C28.3257198,35.417975 28.5778015,35.7753974 28.8687705,36.0417826 C29.2237308,36.339808 29.7861299,36.6209472 30.5767377,36.8617777 C31.3439231,37.0818382 32.246338,37.3381334 33.301129,37.6207638 C33.9637541,37.7983137 34.6435257,37.9659641 35.3232972,38.1336144 C36.0030688,38.3012648 36.5377112,38.4155341 36.9100781,38.4863218 L36.9100781,38.4863218 L36.2584441,39.6741404 L33.1752089,38.84799 C32.431446,38.6486994 31.6236918,38.4177684 30.7618457,38.1723436 C29.8864767,37.9232953 29.1915005,37.6501138 28.6597708,37.3626986 C28.1623339,37.0554844 27.7759935,36.604112 27.4935025,36.0356273 C27.36578,35.7550084 27.2324921,35.6033431 27.0702166,35.5598615 C26.7862344,35.4837687 26.1363518,35.9618572 25.1205688,36.9941269 L25.1205688,36.9941269 L24.4094868,35.8614917 C25.3791357,34.9473052 26.1724657,34.4206901 26.7858535,34.2951696 L26.7858535,34.2951696 L27.8112946,30.4681715 L25.9992177,29.9826269 L26.3180828,28.7926063 Z M31.3999617,25.6756869 L38.8240676,27.6649701 L38.5812954,28.5710085 C37.6157903,29.0369955 36.625181,29.380305 35.6022208,29.6279828 L35.6022208,29.6279828 L35.6652412,29.7173384 L38.3833565,30.4456552 L36.7745373,36.4498501 C36.5607528,37.2477049 36.005791,37.5338193 35.1267985,37.298294 L35.1267985,37.298294 L34.0855305,37.0192871 L34.1013251,35.8785038 L35.0469615,36.1898617 C35.3444667,36.269578 35.5466004,36.164307 35.6263166,35.8668019 L35.6263166,35.8668019 L35.8111134,35.1771308 L33.863807,34.6553516 L33.2695584,36.8731173 L32.0930608,36.5578757 L32.6873093,34.34011 L30.7805717,33.8292012 L30.1790763,36.0740129 L28.9620097,35.7479009 L30.9186817,28.4455016 L34.0289629,29.2788989 C33.6624214,28.8618194 33.2454116,28.416723 32.7706864,27.9706557 L32.7706864,27.9706557 L33.7236394,27.4433299 L31.1137079,26.7440009 L31.3999617,25.6756869 Z M45.4335346,33.6681804 C46.0074451,34.8800116 46.4111225,35.915784 46.661713,36.7655984 L46.661713,36.7655984 L45.4419242,37.2069319 C45.195928,36.2858793 44.7994976,35.2230609 44.266156,34.0221001 L44.266156,34.0221001 Z M14.3400001,21.3508797 L24.576882,24.0938439 L23.055026,29.7734878 L14.6707898,27.5269385 L13.6743365,31.2457529 C13.5366448,31.7596255 13.7247352,32.0854076 14.2386077,32.2230993 L14.2386077,32.2230993 L20.9865656,34.0312092 C21.2299789,34.0964316 21.48161,34.0768927 21.7144131,33.9653457 C21.9851325,33.8204768 22.3377701,33.0453337 22.7993718,31.6471636 L22.7993718,31.6471636 L23.9483033,32.3898348 C23.3294709,34.0502464 22.8278206,35.0028696 22.4604987,35.2378049 C22.0562313,35.4483468 21.5800149,35.4946714 21.0183266,35.3731552 L21.0183266,35.3731552 L13.5536518,33.3730017 C12.4042001,33.065007 11.9956682,32.3178111 12.3145333,31.1277905 L12.3145333,31.1277905 L14.1987359,24.0958505 L15.4969402,24.4437032 L15.0005253,26.296349 L22.0730342,28.191422 L22.9354193,24.9729572 L14.0102646,22.5814692 L14.3400001,21.3508797 Z M34.3964566,32.6674763 L34.1428139,33.6140836 L36.0901204,34.1358628 L36.343763,33.1892555 L34.3964566,32.6674763 Z M31.3132213,31.8413259 L31.0595787,32.7879332 L32.9663162,33.298842 L33.2199589,32.3522347 L31.3132213,31.8413259 Z M34.9327296,30.666078 L34.679087,31.6126853 L36.6263934,32.1344645 L36.8800361,31.1878572 L34.9327296,30.666078 Z M42.1150018,28.2568959 C42.83262,29.2028622 43.4150085,30.1125938 43.8621674,30.9860907 L43.8621674,30.9860907 L42.6790639,31.6691559 C42.3193188,30.8480691 41.7748465,29.9050156 41.0113544,28.8597942 L41.0113544,28.8597942 Z M31.8494944,29.8399276 L31.5958517,30.7865349 L33.5025893,31.2974437 L33.756232,30.3508364 L31.8494944,29.8399276 Z M33.7912542,27.4614473 C34.2181636,27.9236901 34.6216505,28.365163 34.980945,28.8092885 C35.6250022,28.6774919 36.2393609,28.494256 36.8203976,28.2731038 L36.8203976,28.2731038 Z M28.6461321,24.6479232 C29.3736497,25.6110358 29.9524148,26.5342904 30.3860508,27.4041639 L30.3860508,27.4041639 L29.2408636,28.0539071 C28.8811184,27.2328203 28.3194998,26.2996663 27.5424847,25.2508214 L27.5424847,25.2508214 Z" fill="#29CC7A"></path></g></g></g></g>', 1);
|
|
2712
2764
|
const _hoisted_12 = [
|
|
2713
|
-
_hoisted_11
|
|
2765
|
+
_hoisted_11$1
|
|
2714
2766
|
];
|
|
2715
2767
|
const _hoisted_13 = {
|
|
2716
2768
|
key: 4,
|
|
@@ -2761,34 +2813,48 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
2761
2813
|
props: ["status"],
|
|
2762
2814
|
setup(__props) {
|
|
2763
2815
|
return (_ctx, _cache) => {
|
|
2764
|
-
return __props.status === 1 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_1$1, _hoisted_3$1)) : __props.status === 2 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_4$1, _hoisted_6)) : __props.status === 3 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_7, _hoisted_9)) : __props.status === 4 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_10, _hoisted_12)) : __props.status === 5 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_13, _hoisted_15)) : __props.status === 6 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_16, _hoisted_18)) : __props.status === 7 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_19, _hoisted_21)) : (vue.openBlock(), vue.createElementBlock("svg", _hoisted_22, _hoisted_24));
|
|
2816
|
+
return __props.status === 1 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_1$1, _hoisted_3$1)) : __props.status === 2 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_4$1, _hoisted_6$1)) : __props.status === 3 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_7$1, _hoisted_9$1)) : __props.status === 4 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_10$1, _hoisted_12)) : __props.status === 5 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_13, _hoisted_15)) : __props.status === 6 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_16, _hoisted_18)) : __props.status === 7 ? (vue.openBlock(), vue.createElementBlock("svg", _hoisted_19, _hoisted_21)) : (vue.openBlock(), vue.createElementBlock("svg", _hoisted_22, _hoisted_24));
|
|
2765
2817
|
};
|
|
2766
2818
|
}
|
|
2767
2819
|
});
|
|
2768
2820
|
var ApprovalStatus = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "approvalStatus.vue"]]);
|
|
2769
2821
|
|
|
2770
|
-
const _hoisted_1 = {
|
|
2822
|
+
const _hoisted_1 = { key: 0 };
|
|
2823
|
+
const _hoisted_2 = { class: "bm-form-basic-info__title" };
|
|
2824
|
+
const _hoisted_3 = {
|
|
2771
2825
|
key: 0,
|
|
2772
|
-
class: "bm-form-basic-
|
|
2826
|
+
class: "bm-form-basic-info__shop"
|
|
2773
2827
|
};
|
|
2774
|
-
const
|
|
2775
|
-
const
|
|
2776
|
-
const
|
|
2828
|
+
const _hoisted_4 = { class: "bm-form-basic-info__summary" };
|
|
2829
|
+
const _hoisted_5 = { class: "bm-form-basic-info__summary mt10" };
|
|
2830
|
+
const _hoisted_6 = { key: 1 };
|
|
2831
|
+
const _hoisted_7 = /* @__PURE__ */ vue.createElementVNode("div", { class: "bm-form-basic-info__status" }, "\u5BA1\u6279\u72B6\u6001", -1);
|
|
2832
|
+
const _hoisted_8 = /* @__PURE__ */ vue.createElementVNode("div", { class: "bm-form-basic-info__title" }, "\u8868\u5355\u540D\u79F0\uFF08\u7533\u8BF7\u5355\u53F7\uFF09", -1);
|
|
2833
|
+
const _hoisted_9 = /* @__PURE__ */ vue.createElementVNode("div", { class: "bm-form-basic-info__summary" }, " \u7533\u8BF7\u4EBA\uFF1A\u81EA\u52A8\u83B7\u53D6 (\u663E\u793A\u5458\u5DE5\u7F16\u53F7\uFF0C\u59D3\u540D\uFF0C\u6240\u5728\u90E8\u95E8) ", -1);
|
|
2834
|
+
const _hoisted_10 = /* @__PURE__ */ vue.createElementVNode("div", { class: "bm-form-basic-info__summary mt10" }, " \u63D0\u4EA4\u65F6\u95F4\uFF1A\u81EA\u52A8\u83B7\u53D6 (\u5982:2021-11-12 12:34) ", -1);
|
|
2835
|
+
const _hoisted_11 = [
|
|
2836
|
+
_hoisted_7,
|
|
2837
|
+
_hoisted_8,
|
|
2838
|
+
_hoisted_9,
|
|
2839
|
+
_hoisted_10
|
|
2840
|
+
];
|
|
2777
2841
|
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
2778
2842
|
__name: "formBasicInfo",
|
|
2779
2843
|
props: ["info"],
|
|
2780
2844
|
setup(__props) {
|
|
2781
2845
|
return (_ctx, _cache) => {
|
|
2782
|
-
return vue.openBlock(), vue.createElementBlock("div",
|
|
2783
|
-
|
|
2784
|
-
key: 1,
|
|
2846
|
+
return __props.info?.applyCode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
|
|
2847
|
+
vue.createVNode(ApprovalStatus, {
|
|
2785
2848
|
class: "bm-form-basic-info__approval-status",
|
|
2786
|
-
status: __props.info
|
|
2787
|
-
}, null, 8, ["status"])
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2849
|
+
status: __props.info.auditStatus
|
|
2850
|
+
}, null, 8, ["status"]),
|
|
2851
|
+
vue.createElementVNode("div", null, [
|
|
2852
|
+
vue.createElementVNode("span", _hoisted_2, vue.toDisplayString(__props.info.flowName + `\uFF08${__props.info.applyCode}\uFF09`), 1),
|
|
2853
|
+
__props.info.shopName ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3, vue.toDisplayString(__props.info.shopName), 1)) : vue.createCommentVNode("v-if", true)
|
|
2854
|
+
]),
|
|
2855
|
+
vue.createElementVNode("div", _hoisted_4, " \u7533\u8BF7\u4EBA\uFF1A" + vue.toDisplayString(`${__props.info.applyUserCode}-${__props.info.applyUserName}-${__props.info.applyDeptName}`), 1),
|
|
2856
|
+
vue.createElementVNode("div", _hoisted_5, " \u63D0\u4EA4\u65F6\u95F4\uFF1A" + vue.toDisplayString(__props.info.applyTime), 1)
|
|
2857
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_6, _hoisted_11));
|
|
2792
2858
|
};
|
|
2793
2859
|
}
|
|
2794
2860
|
});
|
|
@@ -2796,7 +2862,13 @@ var FormBasicInfo = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "formBa
|
|
|
2796
2862
|
|
|
2797
2863
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
2798
2864
|
__name: "form-create",
|
|
2799
|
-
props: [
|
|
2865
|
+
props: [
|
|
2866
|
+
"fdRule",
|
|
2867
|
+
"extraConfig",
|
|
2868
|
+
"value",
|
|
2869
|
+
"info",
|
|
2870
|
+
"formPermissions"
|
|
2871
|
+
],
|
|
2800
2872
|
emits: ["update:value"],
|
|
2801
2873
|
setup(__props, { expose, emit: emits }) {
|
|
2802
2874
|
const props = __props;
|
|
@@ -2813,6 +2885,20 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
2813
2885
|
};
|
|
2814
2886
|
const fApi = vue.ref();
|
|
2815
2887
|
const rule = vue.ref([]);
|
|
2888
|
+
const processFormPermissions = vue.computed(
|
|
2889
|
+
() => props.formPermissions.reduce((result, item) => {
|
|
2890
|
+
if (item.disabled) {
|
|
2891
|
+
if (item.name === "picture") {
|
|
2892
|
+
((item.props = {}).uploadProps = {}).disabled = true;
|
|
2893
|
+
} else {
|
|
2894
|
+
(item.props = {}).disabled = true;
|
|
2895
|
+
}
|
|
2896
|
+
delete item.disabled;
|
|
2897
|
+
}
|
|
2898
|
+
result[item.field] = item;
|
|
2899
|
+
return result;
|
|
2900
|
+
}, {})
|
|
2901
|
+
);
|
|
2816
2902
|
function setRule(fdRule) {
|
|
2817
2903
|
fdRule = getRuleData(fdRule);
|
|
2818
2904
|
rule.value = fdRule.map((data) => {
|
|
@@ -2821,12 +2907,30 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
2821
2907
|
if (data.name === "row" && childRules?.length) {
|
|
2822
2908
|
const rowRule = rule2.children.find((item) => item.type === "row");
|
|
2823
2909
|
childRules.forEach((ruleItem) => {
|
|
2824
|
-
rowRule.children.push(
|
|
2910
|
+
rowRule.children.push(
|
|
2911
|
+
mergeFormPermission(
|
|
2912
|
+
ruleItem.field,
|
|
2913
|
+
ruleList[ruleItem.name].rowRule(ruleItem, props.extraConfig)
|
|
2914
|
+
)
|
|
2915
|
+
);
|
|
2916
|
+
});
|
|
2917
|
+
} else if (data.name === "table" && childRules?.length) {
|
|
2918
|
+
childRules.forEach((childRule) => {
|
|
2919
|
+
const rulePermission = processFormPermissions.value[childRule.field];
|
|
2920
|
+
if (rulePermission) {
|
|
2921
|
+
childRule.hidden = rulePermission.hidden;
|
|
2922
|
+
childRule.disabled = rulePermission.props?.disabled;
|
|
2923
|
+
}
|
|
2825
2924
|
});
|
|
2826
2925
|
}
|
|
2827
|
-
return rule2;
|
|
2926
|
+
return mergeFormPermission(data.field, rule2);
|
|
2828
2927
|
});
|
|
2829
2928
|
}
|
|
2929
|
+
function mergeFormPermission(field, rule2) {
|
|
2930
|
+
if (processFormPermissions.value[field])
|
|
2931
|
+
rule2 = lodashEs.merge(rule2, processFormPermissions.value[field]);
|
|
2932
|
+
return rule2;
|
|
2933
|
+
}
|
|
2830
2934
|
function handleValue(value) {
|
|
2831
2935
|
emits("update:value", value);
|
|
2832
2936
|
}
|
|
@@ -2842,11 +2946,15 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
2842
2946
|
});
|
|
2843
2947
|
return ruleData;
|
|
2844
2948
|
}
|
|
2845
|
-
vue.watch(
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2949
|
+
vue.watch(
|
|
2950
|
+
() => props.fdRule,
|
|
2951
|
+
(fdRule) => {
|
|
2952
|
+
setRule(fdRule);
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
immediate: true
|
|
2956
|
+
}
|
|
2957
|
+
);
|
|
2850
2958
|
expose({ fApi });
|
|
2851
2959
|
return (_ctx, _cache) => {
|
|
2852
2960
|
const _component_formCreate = vue.resolveComponent("formCreate", true);
|