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.
Files changed (64) hide show
  1. package/es/components/__tests__/util/domHook.d.ts +6 -0
  2. package/es/components/feedback/index.js +2 -2
  3. package/es/components/float-table/index.js +36 -27
  4. package/es/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
  5. package/es/components/form-create/index.js +215 -107
  6. package/es/components/form-designer/index.js +86 -47
  7. package/es/components/input-tags-display/index.js +30 -13
  8. package/es/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
  9. package/es/components/over-tooltips/index.js +27 -20
  10. package/es/components/search-filter/index.js +18 -10
  11. package/es/components/select-all/index.js +17 -9
  12. package/es/components/shops-filter/index.js +19 -13
  13. package/es/components/staffs-selector/index.js +116 -82
  14. package/es/components/timeline/__tests__/index.test.d.ts +1 -0
  15. package/es/components/timeline/index.js +8 -7
  16. package/es/components/upload/__tests__/mock.d.ts +2 -0
  17. package/es/components/upload/__tests__/requests.d.ts +7 -0
  18. package/es/components/upload/__tests__/upload.test.d.ts +1 -0
  19. package/es/components/upload/index.js +115 -78
  20. package/index.esm.js +41000 -4676
  21. package/index.js +40999 -4675
  22. package/lib/components/__tests__/util/domHook.d.ts +6 -0
  23. package/lib/components/feedback/index.js +1 -1
  24. package/lib/components/float-table/index.js +36 -27
  25. package/lib/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
  26. package/lib/components/form-create/index.js +214 -106
  27. package/lib/components/form-designer/index.js +86 -47
  28. package/lib/components/input-tags-display/index.js +30 -13
  29. package/lib/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
  30. package/lib/components/over-tooltips/index.js +27 -20
  31. package/lib/components/search-filter/index.js +18 -10
  32. package/lib/components/select-all/index.js +17 -9
  33. package/lib/components/shops-filter/index.js +19 -13
  34. package/lib/components/staffs-selector/index.js +116 -82
  35. package/lib/components/timeline/__tests__/index.test.d.ts +1 -0
  36. package/lib/components/timeline/index.js +8 -7
  37. package/lib/components/upload/__tests__/mock.d.ts +2 -0
  38. package/lib/components/upload/__tests__/requests.d.ts +7 -0
  39. package/lib/components/upload/__tests__/upload.test.d.ts +1 -0
  40. package/lib/components/upload/index.js +115 -78
  41. package/package.json +1 -1
  42. package/theme-chalk/button.css +1 -1
  43. package/theme-chalk/feedback.css +1 -1
  44. package/theme-chalk/float-table.css +1 -1
  45. package/theme-chalk/floating-vue.css +1 -1
  46. package/theme-chalk/flow-designer.css +1 -1
  47. package/theme-chalk/form-create.css +1 -1
  48. package/theme-chalk/form-designer.css +1 -1
  49. package/theme-chalk/index.css +1 -1
  50. package/theme-chalk/input-tags-display.css +1 -1
  51. package/theme-chalk/modal.css +1 -1
  52. package/theme-chalk/over-tooltips.css +1 -1
  53. package/theme-chalk/search-filter.css +1 -1
  54. package/theme-chalk/select-all.css +1 -1
  55. package/theme-chalk/staffs-selector.css +1 -1
  56. package/theme-chalk/timeline.css +1 -1
  57. package/theme-chalk/upload.css +1 -1
  58. package/types/components/__tests__/util/domHook.d.ts +6 -0
  59. package/types/components/flow-designer/src/bm-nodes/BmConditionNode.vue.d.ts +4 -4
  60. package/types/components/input-tags-display/src/input-tags-display.vue.d.ts +9 -0
  61. package/types/components/timeline/__tests__/index.test.d.ts +1 -0
  62. package/types/components/upload/__tests__/mock.d.ts +2 -0
  63. package/types/components/upload/__tests__/requests.d.ts +7 -0
  64. package/types/components/upload/__tests__/upload.test.d.ts +1 -0
@@ -6,7 +6,7 @@ import Picture from 'bm-admin-ui/es/components/upload';
6
6
  import BmStaffsSelector from 'bm-admin-ui/es/components/staffs-selector';
7
7
  import { BmTagsDisplay, BmFloatTable } from 'bm-admin-ui/es/components';
8
8
  import { SearchOutlined, CheckCircleFilled, PlusOutlined } from '@ant-design/icons-vue';
9
- import { cloneDeep, debounce } from 'lodash-es';
9
+ import { cloneDeep, debounce, merge } from 'lodash-es';
10
10
  import FC from '@form-create/ant-design-vue';
11
11
 
12
12
  const fieldRatioMap = {
@@ -75,6 +75,7 @@ var input = {
75
75
  return h(Input, {
76
76
  value: row[field],
77
77
  placeholder: data.props.placeholder,
78
+ disabled: data.disabled,
78
79
  maxlength: 200,
79
80
  'onUpdate:value': (value) => {
80
81
  row[field] = value;
@@ -142,6 +143,7 @@ var textarea = {
142
143
  value: row[field],
143
144
  maxlength: 5000,
144
145
  placeholder: data.props.placeholder,
146
+ disabled: data.disabled,
145
147
  'onUpdate:value': (value) => {
146
148
  row[field] = value;
147
149
  },
@@ -215,6 +217,7 @@ var numInput = {
215
217
  style: {
216
218
  width: '100%',
217
219
  },
220
+ disabled: data.disabled,
218
221
  });
219
222
  },
220
223
  },
@@ -275,6 +278,7 @@ var radio = {
275
278
  value: row[field],
276
279
  placeholder: data.props.placeholder,
277
280
  options: data.options,
281
+ disabled: data.disabled,
278
282
  getPopupContainer: getContainer,
279
283
  'onUpdate:value': (value) => {
280
284
  row[field] = value;
@@ -339,6 +343,7 @@ var checkbox = {
339
343
  options: data.options,
340
344
  mode: 'multiple',
341
345
  getPopupContainer: getContainer,
346
+ disabled: data.disabled,
342
347
  'onUpdate:value': (value) => {
343
348
  row[field] = value;
344
349
  },
@@ -429,6 +434,7 @@ var date = {
429
434
  width: '100%',
430
435
  },
431
436
  getCalendarContainer: getContainer,
437
+ disabled: data.disabled,
432
438
  });
433
439
  },
434
440
  },
@@ -510,6 +516,7 @@ var dateRange = {
510
516
  width: '100%',
511
517
  },
512
518
  getCalendarContainer: getContainer,
519
+ disabled: data.disabled,
513
520
  });
514
521
  },
515
522
  },
@@ -536,7 +543,7 @@ var instruction = {
536
543
  },
537
544
  };
538
545
 
539
- /*! *****************************************************************************
546
+ /******************************************************************************
540
547
  Copyright (c) Microsoft Corporation.
541
548
 
542
549
  Permission to use, copy, modify, and/or distribute this software for any
@@ -761,7 +768,7 @@ var _export_sfc = (sfc, props) => {
761
768
 
762
769
  const _sfc_main$a = /* @__PURE__ */ defineComponent({
763
770
  __name: "staff-selector",
764
- props: ["placeholder", "defaultSelected"],
771
+ props: ["placeholder", "defaultSelected", "disabled"],
765
772
  emits: ["change"],
766
773
  setup(__props, { emit: emits }) {
767
774
  const props = __props;
@@ -773,11 +780,15 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
773
780
  function handleAdd() {
774
781
  visible.value = true;
775
782
  }
776
- watch(() => props.defaultSelected, (val) => {
777
- selected.value = val;
778
- }, {
779
- immediate: true
780
- });
783
+ watch(
784
+ () => props.defaultSelected,
785
+ (val) => {
786
+ selected.value = val;
787
+ },
788
+ {
789
+ immediate: true
790
+ }
791
+ );
781
792
  watch(selected, (val) => {
782
793
  selectedChange(val);
783
794
  });
@@ -787,9 +798,10 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
787
798
  list: selected.value,
788
799
  "onUpdate:list": _cache[0] || (_cache[0] = ($event) => selected.value = $event),
789
800
  "show-empty-btn": false,
801
+ disabled: __props.disabled,
790
802
  "show-empty": "",
791
803
  onAddClick: handleAdd
792
- }, null, 8, ["list"]),
804
+ }, null, 8, ["list", "disabled"]),
793
805
  createVNode(unref(BmStaffsSelector), mergeProps({
794
806
  select: selected.value,
795
807
  "onUpdate:select": _cache[1] || (_cache[1] = ($event) => selected.value = $event),
@@ -889,7 +901,7 @@ var people = {
889
901
  minWidth: data.config.fieldRatio,
890
902
  slots: {
891
903
  default({ row }) {
892
- return h(StaffSelector, Object.assign({ title: '添加员工', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, onChange: (value) => {
904
+ return h(StaffSelector, Object.assign({ title: '添加员工', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, disabled: data.disabled, onChange: (value) => {
893
905
  row[field] = value;
894
906
  }, defaultSelected: row[field] }, extraConfig.people));
895
907
  },
@@ -926,7 +938,9 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
926
938
  return (_ctx, _cache) => {
927
939
  return openBlock(), createElementBlock("div", {
928
940
  class: "bm-fc-rect-outer",
929
- style: normalizeStyle(unref(layerBackGround) ? { backgroundImage: `url('${unref(layerBackGround)}')` } : {})
941
+ style: normalizeStyle(
942
+ unref(layerBackGround) ? { backgroundImage: `url('${unref(layerBackGround)}')` } : {}
943
+ )
930
944
  }, [
931
945
  (openBlock(true), createElementBlock(Fragment, null, renderList(unref(layers), (layer) => {
932
946
  return openBlock(), createElementBlock("div", {
@@ -945,12 +959,12 @@ const _hoisted_1$5 = { class: "bm-fc-select-material-temp__content__item-info" }
945
959
  const _hoisted_2$5 = { class: "bm-fc-select-material-temp__content__item-info__cover" };
946
960
  const _hoisted_3$4 = ["src"];
947
961
  const _hoisted_4$4 = ["onClick"];
948
- const _hoisted_5$3 = {
962
+ const _hoisted_5$4 = {
949
963
  key: 1,
950
964
  class: "bm-fc-select-material-temp__content__circle"
951
965
  };
952
- const _hoisted_6$3 = ["title"];
953
- const _hoisted_7$3 = { class: "bm-fc-select-material-temp__content__item-time" };
966
+ const _hoisted_6$4 = ["title"];
967
+ const _hoisted_7$4 = { class: "bm-fc-select-material-temp__content__item-time" };
954
968
  const _sfc_main$8 = /* @__PURE__ */ defineComponent({
955
969
  __name: "select-material-temp",
956
970
  props: ["visible", "fetchMaterialType", "fetchMaterialTemp"],
@@ -1135,13 +1149,13 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
1135
1149
  selectItem.value.id === item.id ? (openBlock(), createBlock(unref(CheckCircleFilled), {
1136
1150
  key: 0,
1137
1151
  class: "bm-fc-select-material-temp__content__check-icon"
1138
- })) : (openBlock(), createElementBlock("span", _hoisted_5$3)),
1152
+ })) : (openBlock(), createElementBlock("span", _hoisted_5$4)),
1139
1153
  createElementVNode("span", {
1140
1154
  class: "bm-fc-select-material-temp__content__name",
1141
1155
  title: item.templateName
1142
- }, toDisplayString(item.templateName), 9, _hoisted_6$3)
1156
+ }, toDisplayString(item.templateName), 9, _hoisted_6$4)
1143
1157
  ], 8, _hoisted_4$4),
1144
- createElementVNode("div", _hoisted_7$3, toDisplayString(unref(dayjs)(item.lastUpdateTime).format("YYYY/MM/DD")), 1)
1158
+ createElementVNode("div", _hoisted_7$4, toDisplayString(unref(dayjs)(item.lastUpdateTime).format("YYYY/MM/DD")), 1)
1145
1159
  ])
1146
1160
  ]),
1147
1161
  _: 2
@@ -1177,9 +1191,9 @@ const _hoisted_1$4 = { class: "bm-dc-table-widget" };
1177
1191
  const _hoisted_2$4 = { class: "bm-dc-table-widget__title" };
1178
1192
  const _hoisted_3$3 = { class: "bm-dc-table-widget__title-samll" };
1179
1193
  const _hoisted_4$3 = { class: "bm-dc-table-widget__top-bar" };
1180
- const _hoisted_5$2 = { class: "bm-dc-table-widget__table" };
1181
- const _hoisted_6$2 = ["onClick"];
1182
- const _hoisted_7$2 = ["onClick"];
1194
+ const _hoisted_5$3 = { class: "bm-dc-table-widget__table" };
1195
+ const _hoisted_6$3 = ["onClick"];
1196
+ const _hoisted_7$3 = ["onClick"];
1183
1197
  const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1184
1198
  __name: "table-widget",
1185
1199
  props: ["rule", "extraConfig"],
@@ -1247,19 +1261,24 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1247
1261
  width: "54px"
1248
1262
  });
1249
1263
  }
1250
- childRules?.length && columns.push(...childRules.reduce((pre, cur) => {
1251
- const name = cur.name;
1252
- if (name === "product") {
1253
- pre.push(...getProductColumn(cur));
1254
- } else {
1255
- pre.push(ruleList[name].tableRule(cur, props.extraConfig));
1256
- }
1257
- return pre;
1258
- }, []));
1264
+ childRules?.length && columns.push(
1265
+ ...childRules.reduce((pre, cur) => {
1266
+ if (cur.hidden) {
1267
+ return pre;
1268
+ }
1269
+ const name = cur.name;
1270
+ if (name === "product") {
1271
+ pre.push(...getProductColumn(cur));
1272
+ } else {
1273
+ pre.push(ruleList[name].tableRule(cur, props.extraConfig));
1274
+ }
1275
+ return pre;
1276
+ }, [])
1277
+ );
1259
1278
  columns.push({
1260
1279
  field: oper,
1261
1280
  title: "\u64CD\u4F5C",
1262
- width: "100px",
1281
+ minWidth: "100px",
1263
1282
  fixed: "right",
1264
1283
  slots: {
1265
1284
  default: "floatHandle"
@@ -1291,6 +1310,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1291
1310
  return h(Input, {
1292
1311
  value: row[field],
1293
1312
  placeholder: "\u8BF7\u8F93\u5165",
1313
+ disabled: rule.disabled,
1294
1314
  "onUpdate:value": (value) => {
1295
1315
  row[field] = value;
1296
1316
  },
@@ -1321,11 +1341,15 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1321
1341
  }
1322
1342
  });
1323
1343
  }
1324
- return h("div", {
1325
- style: {
1326
- color: "#9393A3"
1327
- }
1328
- }, [row[childField] || "\u7CFB\u7EDF\u81EA\u52A8\u5E26\u51FA"]);
1344
+ return h(
1345
+ "div",
1346
+ {
1347
+ style: {
1348
+ color: "#9393A3"
1349
+ }
1350
+ },
1351
+ [row[childField] || "\u7CFB\u7EDF\u81EA\u52A8\u5E26\u51FA"]
1352
+ );
1329
1353
  }
1330
1354
  }
1331
1355
  });
@@ -1402,14 +1426,22 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1402
1426
  }
1403
1427
  return data2;
1404
1428
  }
1405
- watch(() => props.rule, () => {
1406
- initConfig();
1407
- }, {
1408
- immediate: true
1409
- });
1410
- watch(() => data, () => {
1411
- emitChange();
1412
- }, { deep: true, immediate: true });
1429
+ watch(
1430
+ () => props.rule,
1431
+ () => {
1432
+ initConfig();
1433
+ },
1434
+ {
1435
+ immediate: true
1436
+ }
1437
+ );
1438
+ watch(
1439
+ () => data,
1440
+ () => {
1441
+ emitChange();
1442
+ },
1443
+ { deep: true, immediate: true }
1444
+ );
1413
1445
  return (_ctx, _cache) => {
1414
1446
  return openBlock(), createElementBlock("div", _hoisted_1$4, [
1415
1447
  createElementVNode("div", _hoisted_2$4, [
@@ -1460,7 +1492,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1460
1492
  })
1461
1493
  ])
1462
1494
  ]),
1463
- createElementVNode("div", _hoisted_5$2, [
1495
+ createElementVNode("div", _hoisted_5$3, [
1464
1496
  createVNode(unref(FormItemRest), null, {
1465
1497
  default: withCtx(() => [
1466
1498
  createVNode(unref(BmFloatTable), {
@@ -1472,12 +1504,12 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
1472
1504
  unref(copyFeature) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
1473
1505
  createElementVNode("a", {
1474
1506
  onClick: ($event) => handleCopy(row)
1475
- }, "\u590D\u5236", 8, _hoisted_6$2),
1507
+ }, "\u590D\u5236", 8, _hoisted_6$3),
1476
1508
  createVNode(unref(Divider), { type: "vertical" })
1477
1509
  ], 64)) : createCommentVNode("v-if", true),
1478
1510
  createElementVNode("a", {
1479
1511
  onClick: ($event) => handleDelete(rowIndex)
1480
- }, "\u5220\u9664", 8, _hoisted_7$2)
1512
+ }, "\u5220\u9664", 8, _hoisted_7$3)
1481
1513
  ]),
1482
1514
  _: 1
1483
1515
  }, 8, ["config"])
@@ -1495,11 +1527,11 @@ const _hoisted_1$3 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-
1495
1527
  const _hoisted_2$3 = { key: 0 };
1496
1528
  const _hoisted_3$2 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u7D20\u6750\u7C7B\u578B\uFF1A", -1);
1497
1529
  const _hoisted_4$2 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u5C3A\u5BF8\uFF1A", -1);
1498
- const _hoisted_5$1 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u5C01\u9762\u56FE\uFF1A", -1);
1499
- const _hoisted_6$1 = ["src"];
1500
- const _hoisted_7$1 = { key: 1 };
1501
- const _hoisted_8$1 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u6A21\u677F\u7ED3\u6784\u56FE\uFF1A", -1);
1502
- const _hoisted_9$1 = { key: 1 };
1530
+ const _hoisted_5$2 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u5C01\u9762\u56FE\uFF1A", -1);
1531
+ const _hoisted_6$2 = ["src"];
1532
+ const _hoisted_7$2 = { key: 1 };
1533
+ const _hoisted_8$2 = /* @__PURE__ */ createElementVNode("span", { class: "bm-fc-form-item-label" }, "\u6A21\u677F\u7ED3\u6784\u56FE\uFF1A", -1);
1534
+ const _hoisted_9$2 = { key: 1 };
1503
1535
  const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1504
1536
  __name: "material-temp",
1505
1537
  props: [
@@ -1521,7 +1553,9 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1521
1553
  tempSelected: {}
1522
1554
  }
1523
1555
  ]);
1524
- computed(() => panes.find((pane) => pane.key === activeKey.value));
1556
+ computed(
1557
+ () => panes.find((pane) => pane.key === activeKey.value)
1558
+ );
1525
1559
  let index = 2;
1526
1560
  const measrueDicts = ref([]);
1527
1561
  function selectTemp() {
@@ -1554,7 +1588,10 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1554
1588
  index++;
1555
1589
  }
1556
1590
  function handleDelete(targetKey) {
1557
- panes.splice(panes.findIndex((pane) => pane.key === targetKey), 1);
1591
+ panes.splice(
1592
+ panes.findIndex((pane) => pane.key === targetKey),
1593
+ 1
1594
+ );
1558
1595
  }
1559
1596
  function getTableRule(coverageArr) {
1560
1597
  const fieldTypeMap = {
@@ -1647,12 +1684,16 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1647
1684
  props.extraConfig.getDict().then((data) => {
1648
1685
  measrueDicts.value = data;
1649
1686
  });
1650
- watch(() => panes, () => {
1651
- emitChange();
1652
- }, {
1653
- immediate: true,
1654
- deep: true
1655
- });
1687
+ watch(
1688
+ () => panes,
1689
+ () => {
1690
+ emitChange();
1691
+ },
1692
+ {
1693
+ immediate: true,
1694
+ deep: true
1695
+ }
1696
+ );
1656
1697
  return (_ctx, _cache) => {
1657
1698
  return openBlock(), createElementBlock(Fragment, null, [
1658
1699
  createVNode(unref(Tabs), {
@@ -1766,7 +1807,9 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1766
1807
  flex: 1
1767
1808
  }, {
1768
1809
  default: withCtx(() => [
1769
- createTextVNode(toDisplayString(measrueDicts.value.find((dict) => dict.dictId + "" === pane.tempSelected.measure + "")?.dictName || "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"), 1)
1810
+ createTextVNode(toDisplayString(measrueDicts.value.find(
1811
+ (dict) => dict.dictId + "" === pane.tempSelected.measure + ""
1812
+ )?.dictName || "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"), 1)
1770
1813
  ]),
1771
1814
  _: 2
1772
1815
  }, 1024)
@@ -1782,7 +1825,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1782
1825
  default: withCtx(() => [
1783
1826
  createVNode(unref(Col), null, {
1784
1827
  default: withCtx(() => [
1785
- _hoisted_5$1
1828
+ _hoisted_5$2
1786
1829
  ]),
1787
1830
  _: 1
1788
1831
  }),
@@ -1795,7 +1838,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1795
1838
  key: 0,
1796
1839
  class: "bm-fc-form-item__cover",
1797
1840
  src: pane.tempSelected.coverPlanPath
1798
- }, null, 8, _hoisted_6$1)) : (openBlock(), createElementBlock("span", _hoisted_7$1, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
1841
+ }, null, 8, _hoisted_6$2)) : (openBlock(), createElementBlock("span", _hoisted_7$2, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
1799
1842
  ]),
1800
1843
  _: 2
1801
1844
  }, 1024)
@@ -1811,7 +1854,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1811
1854
  default: withCtx(() => [
1812
1855
  createVNode(unref(Col), null, {
1813
1856
  default: withCtx(() => [
1814
- _hoisted_8$1
1857
+ _hoisted_8$2
1815
1858
  ]),
1816
1859
  _: 1
1817
1860
  }),
@@ -1824,7 +1867,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
1824
1867
  key: 0,
1825
1868
  class: "bm-fc-form-item__temp-content",
1826
1869
  content: pane.tempSelected.content
1827
- }, null, 8, ["content"])) : (openBlock(), createElementBlock("span", _hoisted_9$1, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
1870
+ }, null, 8, ["content"])) : (openBlock(), createElementBlock("span", _hoisted_9$2, "\u7CFB\u7EDF\u81EA\u52A8\u83B7\u53D6"))
1828
1871
  ]),
1829
1872
  _: 2
1830
1873
  }, 1024)
@@ -1951,7 +1994,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
1951
1994
  "dataFiltering",
1952
1995
  "required",
1953
1996
  "extraConfig",
1954
- "defalutValue"
1997
+ "defalutValue",
1998
+ "disabled"
1955
1999
  ],
1956
2000
  emits: ["change"],
1957
2001
  setup(__props, { emit: emits }) {
@@ -1983,11 +2027,15 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
1983
2027
  function emitChange(value) {
1984
2028
  emits("change", value);
1985
2029
  }
1986
- watch(() => props.defalutValue, (val) => {
1987
- val && fetch(val);
1988
- }, {
1989
- immediate: true
1990
- });
2030
+ watch(
2031
+ () => props.defalutValue,
2032
+ (val) => {
2033
+ val && fetch(val);
2034
+ },
2035
+ {
2036
+ immediate: true
2037
+ }
2038
+ );
1991
2039
  return (_ctx, _cache) => {
1992
2040
  return openBlock(), createBlock(unref(Row), { gutter: [0, 24] }, {
1993
2041
  default: withCtx(() => [
@@ -2011,8 +2059,9 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
2011
2059
  createVNode(unref(Input), {
2012
2060
  placeholder: "\u8BF7\u8F93\u5165",
2013
2061
  value: __props.defalutValue,
2062
+ disabled: __props.disabled,
2014
2063
  onBlur: handleBlur
2015
- }, null, 8, ["value"])
2064
+ }, null, 8, ["value", "disabled"])
2016
2065
  ]),
2017
2066
  _: 1
2018
2067
  })
@@ -2125,7 +2174,7 @@ var product = {
2125
2174
 
2126
2175
  const _sfc_main$4 = /* @__PURE__ */ defineComponent({
2127
2176
  __name: "shop-widget",
2128
- props: ["value", "extraConfig", "rule"],
2177
+ props: ["value", "extraConfig", "rule", "disabled"],
2129
2178
  emits: ["change"],
2130
2179
  setup(__props, { emit: emits }) {
2131
2180
  const props = __props;
@@ -2165,9 +2214,10 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
2165
2214
  "not-found-content": null,
2166
2215
  options: options.value,
2167
2216
  "get-popup-container": unref(getContainer),
2217
+ disabled: __props.disabled,
2168
2218
  onChange: handleChange,
2169
2219
  onSearch: handleSearch
2170
- }, null, 8, ["value", "options", "get-popup-container"]);
2220
+ }, null, 8, ["value", "options", "get-popup-container", "disabled"]);
2171
2221
  };
2172
2222
  }
2173
2223
  });
@@ -2251,6 +2301,7 @@ var shop = {
2251
2301
  rule: data,
2252
2302
  extraConfig: extraConfig.shop,
2253
2303
  value: row[field],
2304
+ disabled: data.disabled,
2254
2305
  onChange: (value) => {
2255
2306
  row[field] = value;
2256
2307
  },
@@ -2453,6 +2504,7 @@ var materialType = {
2453
2504
  multiple: data.props.multiple,
2454
2505
  format: data.config.format,
2455
2506
  config: extraConfig.materialType,
2507
+ disabled: data.disabled,
2456
2508
  onChange: (value) => {
2457
2509
  row[field] = value;
2458
2510
  },
@@ -2586,7 +2638,7 @@ var department = {
2586
2638
  minWidth: data.config.fieldRatio,
2587
2639
  slots: {
2588
2640
  default({ row }) {
2589
- return h(StaffSelector, Object.assign({ title: '添加部门', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, immediateFetch: true, unitStr: '个', onChange: (value) => {
2641
+ return h(StaffSelector, Object.assign({ title: '添加部门', mode: data.props.limit ? 'radio' : 'multiple', placeholder: data.props.placeholder, immediateFetch: true, unitStr: '个', disabled: data.disabled, onChange: (value) => {
2590
2642
  row[field] = value;
2591
2643
  }, defaultSelected: row[field] }, extraConfig.department));
2592
2644
  },
@@ -2675,31 +2727,31 @@ const _hoisted_4$1 = {
2675
2727
  viewBox: "0 0 64 64",
2676
2728
  xmlns: "http://www.w3.org/2000/svg"
2677
2729
  };
2678
- const _hoisted_5 = /* @__PURE__ */ 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);
2679
- const _hoisted_6 = [
2680
- _hoisted_5
2730
+ const _hoisted_5$1 = /* @__PURE__ */ 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);
2731
+ const _hoisted_6$1 = [
2732
+ _hoisted_5$1
2681
2733
  ];
2682
- const _hoisted_7 = {
2734
+ const _hoisted_7$1 = {
2683
2735
  key: 2,
2684
2736
  width: "64px",
2685
2737
  height: "64px",
2686
2738
  viewBox: "0 0 64 64",
2687
2739
  xmlns: "http://www.w3.org/2000/svg"
2688
2740
  };
2689
- const _hoisted_8 = /* @__PURE__ */ 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);
2690
- const _hoisted_9 = [
2691
- _hoisted_8
2741
+ const _hoisted_8$1 = /* @__PURE__ */ 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);
2742
+ const _hoisted_9$1 = [
2743
+ _hoisted_8$1
2692
2744
  ];
2693
- const _hoisted_10 = {
2745
+ const _hoisted_10$1 = {
2694
2746
  key: 3,
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_11 = /* @__PURE__ */ 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);
2752
+ const _hoisted_11$1 = /* @__PURE__ */ 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);
2701
2753
  const _hoisted_12 = [
2702
- _hoisted_11
2754
+ _hoisted_11$1
2703
2755
  ];
2704
2756
  const _hoisted_13 = {
2705
2757
  key: 4,
@@ -2750,34 +2802,48 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
2750
2802
  props: ["status"],
2751
2803
  setup(__props) {
2752
2804
  return (_ctx, _cache) => {
2753
- return __props.status === 1 ? (openBlock(), createElementBlock("svg", _hoisted_1$1, _hoisted_3$1)) : __props.status === 2 ? (openBlock(), createElementBlock("svg", _hoisted_4$1, _hoisted_6)) : __props.status === 3 ? (openBlock(), createElementBlock("svg", _hoisted_7, _hoisted_9)) : __props.status === 4 ? (openBlock(), createElementBlock("svg", _hoisted_10, _hoisted_12)) : __props.status === 5 ? (openBlock(), createElementBlock("svg", _hoisted_13, _hoisted_15)) : __props.status === 6 ? (openBlock(), createElementBlock("svg", _hoisted_16, _hoisted_18)) : __props.status === 7 ? (openBlock(), createElementBlock("svg", _hoisted_19, _hoisted_21)) : (openBlock(), createElementBlock("svg", _hoisted_22, _hoisted_24));
2805
+ return __props.status === 1 ? (openBlock(), createElementBlock("svg", _hoisted_1$1, _hoisted_3$1)) : __props.status === 2 ? (openBlock(), createElementBlock("svg", _hoisted_4$1, _hoisted_6$1)) : __props.status === 3 ? (openBlock(), createElementBlock("svg", _hoisted_7$1, _hoisted_9$1)) : __props.status === 4 ? (openBlock(), createElementBlock("svg", _hoisted_10$1, _hoisted_12)) : __props.status === 5 ? (openBlock(), createElementBlock("svg", _hoisted_13, _hoisted_15)) : __props.status === 6 ? (openBlock(), createElementBlock("svg", _hoisted_16, _hoisted_18)) : __props.status === 7 ? (openBlock(), createElementBlock("svg", _hoisted_19, _hoisted_21)) : (openBlock(), createElementBlock("svg", _hoisted_22, _hoisted_24));
2754
2806
  };
2755
2807
  }
2756
2808
  });
2757
2809
  var ApprovalStatus = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "approvalStatus.vue"]]);
2758
2810
 
2759
- const _hoisted_1 = {
2811
+ const _hoisted_1 = { key: 0 };
2812
+ const _hoisted_2 = { class: "bm-form-basic-info__title" };
2813
+ const _hoisted_3 = {
2760
2814
  key: 0,
2761
- class: "bm-form-basic-info__status"
2815
+ class: "bm-form-basic-info__shop"
2762
2816
  };
2763
- const _hoisted_2 = /* @__PURE__ */ createElementVNode("div", { class: "bm-form-basic-info__title" }, "\u8868\u5355\u540D\u79F0\uFF08\u7533\u8BF7\u5355\u53F7\uFF09", -1);
2764
- const _hoisted_3 = /* @__PURE__ */ 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);
2765
- const _hoisted_4 = /* @__PURE__ */ 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);
2817
+ const _hoisted_4 = { class: "bm-form-basic-info__summary" };
2818
+ const _hoisted_5 = { class: "bm-form-basic-info__summary mt10" };
2819
+ const _hoisted_6 = { key: 1 };
2820
+ const _hoisted_7 = /* @__PURE__ */ createElementVNode("div", { class: "bm-form-basic-info__status" }, "\u5BA1\u6279\u72B6\u6001", -1);
2821
+ const _hoisted_8 = /* @__PURE__ */ createElementVNode("div", { class: "bm-form-basic-info__title" }, "\u8868\u5355\u540D\u79F0\uFF08\u7533\u8BF7\u5355\u53F7\uFF09", -1);
2822
+ const _hoisted_9 = /* @__PURE__ */ 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);
2823
+ const _hoisted_10 = /* @__PURE__ */ 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);
2824
+ const _hoisted_11 = [
2825
+ _hoisted_7,
2826
+ _hoisted_8,
2827
+ _hoisted_9,
2828
+ _hoisted_10
2829
+ ];
2766
2830
  const _sfc_main$1 = /* @__PURE__ */ defineComponent({
2767
2831
  __name: "formBasicInfo",
2768
2832
  props: ["info"],
2769
2833
  setup(__props) {
2770
2834
  return (_ctx, _cache) => {
2771
- return openBlock(), createElementBlock("div", null, [
2772
- !__props.info?.status ? (openBlock(), createElementBlock("div", _hoisted_1, "\u5BA1\u6279\u72B6\u6001")) : (openBlock(), createBlock(ApprovalStatus, {
2773
- key: 1,
2835
+ return __props.info?.applyCode ? (openBlock(), createElementBlock("div", _hoisted_1, [
2836
+ createVNode(ApprovalStatus, {
2774
2837
  class: "bm-form-basic-info__approval-status",
2775
- status: __props.info?.status
2776
- }, null, 8, ["status"])),
2777
- _hoisted_2,
2778
- _hoisted_3,
2779
- _hoisted_4
2780
- ]);
2838
+ status: __props.info.auditStatus
2839
+ }, null, 8, ["status"]),
2840
+ createElementVNode("div", null, [
2841
+ createElementVNode("span", _hoisted_2, toDisplayString(__props.info.flowName + `\uFF08${__props.info.applyCode}\uFF09`), 1),
2842
+ __props.info.shopName ? (openBlock(), createElementBlock("span", _hoisted_3, toDisplayString(__props.info.shopName), 1)) : createCommentVNode("v-if", true)
2843
+ ]),
2844
+ createElementVNode("div", _hoisted_4, " \u7533\u8BF7\u4EBA\uFF1A" + toDisplayString(`${__props.info.applyUserCode}-${__props.info.applyUserName}-${__props.info.applyDeptName}`), 1),
2845
+ createElementVNode("div", _hoisted_5, " \u63D0\u4EA4\u65F6\u95F4\uFF1A" + toDisplayString(__props.info.applyTime), 1)
2846
+ ])) : (openBlock(), createElementBlock("div", _hoisted_6, _hoisted_11));
2781
2847
  };
2782
2848
  }
2783
2849
  });
@@ -2785,7 +2851,13 @@ var FormBasicInfo = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "formBa
2785
2851
 
2786
2852
  const _sfc_main = /* @__PURE__ */ defineComponent({
2787
2853
  __name: "form-create",
2788
- props: ["fdRule", "extraConfig", "value", "info"],
2854
+ props: [
2855
+ "fdRule",
2856
+ "extraConfig",
2857
+ "value",
2858
+ "info",
2859
+ "formPermissions"
2860
+ ],
2789
2861
  emits: ["update:value"],
2790
2862
  setup(__props, { expose, emit: emits }) {
2791
2863
  const props = __props;
@@ -2802,6 +2874,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2802
2874
  };
2803
2875
  const fApi = ref();
2804
2876
  const rule = ref([]);
2877
+ const processFormPermissions = computed(
2878
+ () => props.formPermissions.reduce((result, item) => {
2879
+ if (item.disabled) {
2880
+ if (item.name === "picture") {
2881
+ ((item.props = {}).uploadProps = {}).disabled = true;
2882
+ } else {
2883
+ (item.props = {}).disabled = true;
2884
+ }
2885
+ delete item.disabled;
2886
+ }
2887
+ result[item.field] = item;
2888
+ return result;
2889
+ }, {})
2890
+ );
2805
2891
  function setRule(fdRule) {
2806
2892
  fdRule = getRuleData(fdRule);
2807
2893
  rule.value = fdRule.map((data) => {
@@ -2810,12 +2896,30 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2810
2896
  if (data.name === "row" && childRules?.length) {
2811
2897
  const rowRule = rule2.children.find((item) => item.type === "row");
2812
2898
  childRules.forEach((ruleItem) => {
2813
- rowRule.children.push(ruleList[ruleItem.name].rowRule(ruleItem, props.extraConfig));
2899
+ rowRule.children.push(
2900
+ mergeFormPermission(
2901
+ ruleItem.field,
2902
+ ruleList[ruleItem.name].rowRule(ruleItem, props.extraConfig)
2903
+ )
2904
+ );
2905
+ });
2906
+ } else if (data.name === "table" && childRules?.length) {
2907
+ childRules.forEach((childRule) => {
2908
+ const rulePermission = processFormPermissions.value[childRule.field];
2909
+ if (rulePermission) {
2910
+ childRule.hidden = rulePermission.hidden;
2911
+ childRule.disabled = rulePermission.props?.disabled;
2912
+ }
2814
2913
  });
2815
2914
  }
2816
- return rule2;
2915
+ return mergeFormPermission(data.field, rule2);
2817
2916
  });
2818
2917
  }
2918
+ function mergeFormPermission(field, rule2) {
2919
+ if (processFormPermissions.value[field])
2920
+ rule2 = merge(rule2, processFormPermissions.value[field]);
2921
+ return rule2;
2922
+ }
2819
2923
  function handleValue(value) {
2820
2924
  emits("update:value", value);
2821
2925
  }
@@ -2831,11 +2935,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
2831
2935
  });
2832
2936
  return ruleData;
2833
2937
  }
2834
- watch(() => props.fdRule, (fdRule) => {
2835
- setRule(fdRule);
2836
- }, {
2837
- immediate: true
2838
- });
2938
+ watch(
2939
+ () => props.fdRule,
2940
+ (fdRule) => {
2941
+ setRule(fdRule);
2942
+ },
2943
+ {
2944
+ immediate: true
2945
+ }
2946
+ );
2839
2947
  expose({ fApi });
2840
2948
  return (_ctx, _cache) => {
2841
2949
  const _component_formCreate = resolveComponent("formCreate", true);