@airpower/web 0.3.16 → 0.4.0

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 (83) hide show
  1. package/dist/components/button/Button.vue.d.ts +16 -16
  2. package/dist/components/copy/Copy.vue.d.ts +4 -4
  3. package/dist/components/datetime/DateTime.vue.d.ts +8 -8
  4. package/dist/components/desensitize/Desensitize.vue.d.ts +10 -10
  5. package/dist/components/dialog/Dialog.vue.d.ts +40 -40
  6. package/dist/components/group/Group.vue.d.ts +16 -16
  7. package/dist/components/money/Money.vue.d.ts +8 -8
  8. package/dist/components/panel/Panel.vue.d.ts +10 -10
  9. package/dist/components/payload/Payload.vue.d.ts +4 -4
  10. package/dist/components/phone/Call.vue.d.ts +2 -2
  11. package/dist/components/phone/Phone.vue.d.ts +8 -8
  12. package/dist/components/qrcode/Qrcode.vue.d.ts +4 -4
  13. package/dist/components/select/Selector.vue.d.ts +18 -18
  14. package/dist/components/tab/Tab.vue.d.ts +2 -2
  15. package/dist/components/table/useTableButton.d.ts +1 -1
  16. package/dist/components/table/useTableColumn.d.ts +1 -1
  17. package/dist/components/user/User.vue.d.ts +6 -6
  18. package/dist/config/WebConfig.d.ts +1 -1
  19. package/dist/config/WebConstant.d.ts +1 -1
  20. package/dist/decorator/@Field/IFieldConfig.d.ts +1 -1
  21. package/dist/decorator/@Field/type.d.ts +1 -1
  22. package/dist/decorator/@Form/FormTrim.d.ts +1 -1
  23. package/dist/decorator/@Form/IFormField.d.ts +1 -1
  24. package/dist/decorator/@Model/IModelConfig.d.ts +1 -1
  25. package/dist/decorator/@Search/ISearchField.d.ts +1 -1
  26. package/dist/decorator/@Table/IElementTableColumn.d.ts +1 -1
  27. package/dist/decorator/@Table/ITableColumn.d.ts +1 -1
  28. package/dist/dialog/DialogProps.d.ts +1 -1
  29. package/dist/dialog/DialogUtil.d.ts +1 -1
  30. package/dist/enum/DateTimeType.d.ts +1 -1
  31. package/dist/enum/DisableEnum.d.ts +6 -0
  32. package/dist/enum/WebColor.d.ts +1 -1
  33. package/dist/enum/type.d.ts +3 -0
  34. package/dist/file/WebFileUtil.d.ts +1 -1
  35. package/dist/hooks/detail/IDetailOption.d.ts +1 -1
  36. package/dist/hooks/detail/IDetailResult.d.ts +1 -1
  37. package/dist/hooks/detail/useDetail.d.ts +1 -1
  38. package/dist/hooks/editor/IEditorOption.d.ts +1 -1
  39. package/dist/hooks/editor/IEditorResult.d.ts +1 -1
  40. package/dist/hooks/editor/useEditor.d.ts +1 -1
  41. package/dist/hooks/table/base/IBaseTableOption.d.ts +1 -1
  42. package/dist/hooks/table/base/IBaseTableResult.d.ts +1 -1
  43. package/dist/hooks/table/base/useBaseTable.d.ts +1 -1
  44. package/dist/hooks/table/list/ITableOption.d.ts +1 -1
  45. package/dist/hooks/table/list/ITableResult.d.ts +1 -1
  46. package/dist/hooks/table/list/useTable.d.ts +1 -1
  47. package/dist/hooks/table/selector/ISelectorOption.d.ts +1 -1
  48. package/dist/hooks/table/selector/ISelectorResult.d.ts +1 -1
  49. package/dist/hooks/table/selector/useSelector.d.ts +1 -1
  50. package/dist/hooks/table/tree/ITableTreeOption.d.ts +1 -1
  51. package/dist/hooks/table/tree/ITableTreeResult.d.ts +1 -1
  52. package/dist/hooks/table/tree/useTableTree.d.ts +1 -1
  53. package/dist/http/Http.d.ts +1 -1
  54. package/dist/http/HttpResponse.d.ts +1 -1
  55. package/dist/http/enum/HttpContentType.d.ts +1 -1
  56. package/dist/http/enum/HttpHeader.d.ts +1 -1
  57. package/dist/http/enum/HttpMethod.d.ts +1 -1
  58. package/dist/http/enum/HttpStatus.d.ts +1 -1
  59. package/dist/http/type.d.ts +3 -3
  60. package/dist/i18n/WebI18n.d.ts +1 -1
  61. package/dist/interface/IEntity.d.ts +1 -1
  62. package/dist/interface/IFile.d.ts +1 -1
  63. package/dist/interface/IMenu.d.ts +1 -1
  64. package/dist/interface/IPayload.d.ts +1 -1
  65. package/dist/interface/ITree.d.ts +1 -1
  66. package/dist/interface/IUploadProps.d.ts +1 -1
  67. package/dist/interface/IUser.d.ts +1 -1
  68. package/dist/main.js +247 -233
  69. package/dist/model/RootEntity.d.ts +1 -1
  70. package/dist/model/export/ExportModel.d.ts +1 -1
  71. package/dist/model/query/QueryPage.d.ts +1 -1
  72. package/dist/model/query/QueryRequest.d.ts +1 -1
  73. package/dist/model/query/QueryRequestPage.d.ts +1 -1
  74. package/dist/model/query/QueryResponsePage.d.ts +1 -1
  75. package/dist/model/query/QuerySort.d.ts +1 -1
  76. package/dist/permission/PermissionAction.d.ts +1 -1
  77. package/dist/permission/PermissionUtil.d.ts +1 -1
  78. package/dist/router/RouterUtil.d.ts +1 -1
  79. package/dist/service/AbstractCurdService.d.ts +1 -1
  80. package/dist/service/AbstractService.d.ts +1 -1
  81. package/dist/validator/WebValidator.d.ts +1 -1
  82. package/dist/web.css +70 -70
  83. package/package.json +5 -5
package/dist/main.js CHANGED
@@ -1223,49 +1223,49 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
1223
1223
  __name: "Button",
1224
1224
  props: {
1225
1225
  /**
1226
- * # 权限标识
1226
+ * ## 权限标识
1227
1227
  */
1228
1228
  permission: {
1229
1229
  type: String,
1230
1230
  default: void 0
1231
1231
  },
1232
1232
  /**
1233
- * # 是否是链接按钮
1233
+ * ### 是否是链接按钮
1234
1234
  */
1235
1235
  link: {
1236
1236
  type: Boolean,
1237
1237
  default: false
1238
1238
  },
1239
1239
  /**
1240
- * # 是否是主按钮
1240
+ * ### 是否是主按钮
1241
1241
  */
1242
1242
  primary: {
1243
1243
  type: Boolean,
1244
1244
  default: false
1245
1245
  },
1246
1246
  /**
1247
- * # 是否是危险按钮
1247
+ * ### 是否是危险按钮
1248
1248
  */
1249
1249
  danger: {
1250
1250
  type: Boolean,
1251
1251
  default: false
1252
1252
  },
1253
1253
  /**
1254
- * # 是否是危险按钮
1254
+ * ### 是否是危险按钮
1255
1255
  */
1256
1256
  warning: {
1257
1257
  type: Boolean,
1258
1258
  default: false
1259
1259
  },
1260
1260
  /**
1261
- * # 是否成功按钮
1261
+ * ### 是否成功按钮
1262
1262
  */
1263
1263
  success: {
1264
1264
  type: Boolean,
1265
1265
  default: false
1266
1266
  },
1267
1267
  /**
1268
- * # 是否禁用按钮
1268
+ * ### 是否禁用按钮
1269
1269
  * 如不禁用,且传入了 `permission` 则按权限判断是否禁用 否则不禁用
1270
1270
  */
1271
1271
  disabled: {
@@ -1273,7 +1273,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
1273
1273
  default: false
1274
1274
  },
1275
1275
  /**
1276
- * # 图标
1276
+ * ### 图标
1277
1277
  */
1278
1278
  icon: {
1279
1279
  type: String,
@@ -2082,22 +2082,22 @@ const _I18n = class _I18n2 {
2082
2082
  * @returns 当前使用的语言
2083
2083
  */
2084
2084
  static getCurrentLanguage() {
2085
- return this.currentLanguage;
2085
+ return _I18n2.currentLanguage.language;
2086
2086
  }
2087
2087
  /**
2088
2088
  * ### 获取支持的语言列表
2089
2089
  * @returns 语言列表
2090
2090
  */
2091
2091
  static getLanguages() {
2092
- return this.languages.map((item) => item.language);
2092
+ return _I18n2.languages.map((item) => item.language);
2093
2093
  }
2094
2094
  /**
2095
2095
  * ### 获取翻译后的字符串
2096
2096
  * @returns 翻译后的字符串
2097
2097
  */
2098
2098
  static get() {
2099
- this.initDefaultLanguage();
2100
- return this.package || new _I18n2();
2099
+ _I18n2.update(new this());
2100
+ return _I18n2.currentLanguage;
2101
2101
  }
2102
2102
  /**
2103
2103
  * ### 添加国际化语言
@@ -2105,34 +2105,42 @@ const _I18n = class _I18n2 {
2105
2105
  */
2106
2106
  static addLanguage(...languages) {
2107
2107
  if (languages.length === 0) {
2108
- throw new Error("languages is empty");
2108
+ throw new Error("请传入语言包");
2109
2109
  }
2110
- this.initDefaultLanguage();
2110
+ _I18n2.update(new this());
2111
2111
  languages.forEach((item) => {
2112
2112
  _I18n2.languages.push(item);
2113
2113
  });
2114
- _I18n2.package = _I18n2.languages.find((item) => item.language === _I18n2.currentLanguage) || _I18n2.languages[0];
2115
2114
  }
2116
2115
  /**
2117
2116
  * ### 设置当前使用的语言
2118
2117
  * @param language 语言
2119
2118
  */
2120
2119
  static setCurrentLanguage(language) {
2121
- this.currentLanguage = language;
2122
- this.package = this.languages.find((item) => item.language === this.currentLanguage) || this.languages[0];
2120
+ if (_I18n2.languages.length === 0) {
2121
+ _I18n2.update(new this());
2122
+ }
2123
+ _I18n2.currentLanguage = _I18n2.languages.find((item) => item.language === language) || _I18n2.languages[0];
2123
2124
  }
2124
2125
  /**
2125
- * ### 初始化默认语言
2126
+ * ### 更新语言
2127
+ * @param language 语言
2126
2128
  */
2127
- static initDefaultLanguage() {
2128
- if (this.languages.length === 0) {
2129
- this.languages.push(JSON.parse(JSON.stringify(new this())));
2130
- this.setCurrentLanguage(this.languages[0].language);
2129
+ static update(language) {
2130
+ let isExist = false;
2131
+ for (let i = 0; i < _I18n2.languages.length; i++) {
2132
+ if (_I18n2.languages[i].language === language.language) {
2133
+ _I18n2.languages[i] = language;
2134
+ isExist = true;
2135
+ break;
2136
+ }
2137
+ }
2138
+ if (!isExist) {
2139
+ _I18n2.languages.push(language);
2131
2140
  }
2132
2141
  }
2133
2142
  };
2134
- __publicField$2(_I18n, "currentLanguage", Language.ChineseSimplified);
2135
- __publicField$2(_I18n, "package");
2143
+ __publicField$2(_I18n, "currentLanguage");
2136
2144
  __publicField$2(_I18n, "languages", []);
2137
2145
  let I18n = _I18n;
2138
2146
  class WebI18n extends I18n {
@@ -2361,14 +2369,14 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
2361
2369
  __name: "Copy",
2362
2370
  props: {
2363
2371
  /**
2364
- * # 复制的内容
2372
+ * ### 复制的内容
2365
2373
  */
2366
2374
  content: {
2367
2375
  type: String,
2368
2376
  required: true
2369
2377
  },
2370
2378
  /**
2371
- * # 是否隐藏图标
2379
+ * ### 是否隐藏图标
2372
2380
  */
2373
2381
  hideIcon: {
2374
2382
  type: Boolean,
@@ -2407,7 +2415,7 @@ const _export_sfc = (sfc, props) => {
2407
2415
  }
2408
2416
  return target;
2409
2417
  };
2410
- const ACopy = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-04d85a67"]]);
2418
+ const ACopy = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-997899dc"]]);
2411
2419
  var cryptoJs$1 = { exports: {} };
2412
2420
  function commonjsRequire(path) {
2413
2421
  throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
@@ -9082,14 +9090,14 @@ class CryptoUtil {
9082
9090
  return CryptoJS.MD5(data).toString();
9083
9091
  }
9084
9092
  /**
9085
- * # Base64编码
9093
+ * ### Base64编码
9086
9094
  * @param data
9087
9095
  */
9088
9096
  static base64Encode(data) {
9089
9097
  return CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(data));
9090
9098
  }
9091
9099
  /**
9092
- * # Base64解码
9100
+ * ### Base64解码
9093
9101
  * @param data
9094
9102
  */
9095
9103
  static base64Decode(data) {
@@ -9719,21 +9727,21 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
9719
9727
  __name: "DateTime",
9720
9728
  props: {
9721
9729
  /**
9722
- * # 毫秒时间戳
9730
+ * ### 毫秒时间戳
9723
9731
  */
9724
9732
  milliSecond: {
9725
9733
  type: Number,
9726
9734
  default: void 0
9727
9735
  },
9728
9736
  /**
9729
- * # 时间日期对象
9737
+ * ### 时间日期对象
9730
9738
  */
9731
9739
  date: {
9732
9740
  type: Date,
9733
9741
  default: () => /* @__PURE__ */ new Date()
9734
9742
  },
9735
9743
  /**
9736
- * # 时间格式化模板
9744
+ * ### 时间格式化模板
9737
9745
  * 建议使用 `DateTimeFormatter`
9738
9746
  */
9739
9747
  formatter: {
@@ -9741,7 +9749,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
9741
9749
  default: DateTimeFormatter.FULL_DATE_TIME
9742
9750
  },
9743
9751
  /**
9744
- * # 是否显示友好时间
9752
+ * ### 是否显示友好时间
9745
9753
  */
9746
9754
  isFriendly: {
9747
9755
  type: Boolean,
@@ -9786,27 +9794,27 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
9786
9794
  };
9787
9795
  }
9788
9796
  });
9789
- const ADateTime = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-d98b1a03"]]);
9797
+ const ADateTime = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-cc323118"]]);
9790
9798
  const _hoisted_1$h = { class: "a-desensitize" };
9791
9799
  const _sfc_main$s = /* @__PURE__ */ defineComponent({
9792
9800
  __name: "Desensitize",
9793
9801
  props: {
9794
9802
  /**
9795
- * # 复制的内容
9803
+ * ### 复制的内容
9796
9804
  */
9797
9805
  content: {
9798
9806
  type: String,
9799
9807
  required: true
9800
9808
  },
9801
9809
  /**
9802
- * # 是否脱敏
9810
+ * ### 是否脱敏
9803
9811
  */
9804
9812
  type: {
9805
9813
  type: DesensitizeType,
9806
9814
  default: DesensitizeType.CUSTOM
9807
9815
  },
9808
9816
  /**
9809
- * # 脱敏开始保留
9817
+ * ### 脱敏开始保留
9810
9818
  * 默认使用传入的参数
9811
9819
  */
9812
9820
  head: {
@@ -9814,7 +9822,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
9814
9822
  default: 0
9815
9823
  },
9816
9824
  /**
9817
- * # 脱敏末尾保留
9825
+ * ### 脱敏末尾保留
9818
9826
  * 默认使用传入的参数
9819
9827
  */
9820
9828
  tail: {
@@ -9822,7 +9830,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
9822
9830
  default: 0
9823
9831
  },
9824
9832
  /**
9825
- * # 脱敏符号
9833
+ * ### 脱敏符号
9826
9834
  */
9827
9835
  symbol: {
9828
9836
  type: String,
@@ -9860,7 +9868,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
9860
9868
  };
9861
9869
  }
9862
9870
  });
9863
- const ADesensitize = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-30bf4899"]]);
9871
+ const ADesensitize = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-d78b4ba9"]]);
9864
9872
  const _hoisted_1$g = ["id"];
9865
9873
  const _hoisted_2$c = ["id"];
9866
9874
  const _hoisted_3$a = { class: "title" };
@@ -9882,28 +9890,28 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
9882
9890
  __name: "Dialog",
9883
9891
  props: {
9884
9892
  /**
9885
- * # 弹窗标题
9893
+ * ### 弹窗标题
9886
9894
  */
9887
9895
  title: {
9888
9896
  type: String,
9889
9897
  required: true
9890
9898
  },
9891
9899
  /**
9892
- * # 确定按钮文字
9900
+ * ### 确定按钮文字
9893
9901
  */
9894
9902
  confirmText: {
9895
9903
  type: String,
9896
9904
  default: () => WebI18n.get().Confirm
9897
9905
  },
9898
9906
  /**
9899
- * # 取消按钮文字
9907
+ * ### 取消按钮文字
9900
9908
  */
9901
9909
  cancelText: {
9902
9910
  type: String,
9903
9911
  default: () => WebI18n.get().Cancel
9904
9912
  },
9905
9913
  /**
9906
- * # 宽度
9914
+ * ### 宽度
9907
9915
  * 支持像素和百分比
9908
9916
  */
9909
9917
  width: {
@@ -9911,7 +9919,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
9911
9919
  default: ""
9912
9920
  },
9913
9921
  /**
9914
- * # 高度
9922
+ * ### 高度
9915
9923
  * 支持像素和百分比
9916
9924
  */
9917
9925
  height: {
@@ -9919,7 +9927,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
9919
9927
  default: ""
9920
9928
  },
9921
9929
  /**
9922
- * # 最小宽度
9930
+ * ### 最小宽度
9923
9931
  * 支持像素和百分比
9924
9932
  */
9925
9933
  minWidth: {
@@ -9927,7 +9935,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
9927
9935
  default: "500px"
9928
9936
  },
9929
9937
  /**
9930
- * # 最小高度
9938
+ * ### 最小高度
9931
9939
  * 支持像素和百分比
9932
9940
  */
9933
9941
  minHeight: {
@@ -9935,77 +9943,77 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
9935
9943
  default: "300px"
9936
9944
  },
9937
9945
  /**
9938
- * # 隐藏底部按钮
9946
+ * ### 隐藏底部按钮
9939
9947
  */
9940
9948
  hideButtons: {
9941
9949
  type: Boolean,
9942
9950
  default: false
9943
9951
  },
9944
9952
  /**
9945
- * # 隐藏 `Footer`
9953
+ * ### 隐藏 `Footer`
9946
9954
  */
9947
9955
  hideFooter: {
9948
9956
  type: Boolean,
9949
9957
  default: false
9950
9958
  },
9951
9959
  /**
9952
- * # 隐藏确认按钮
9960
+ * ### 隐藏确认按钮
9953
9961
  */
9954
9962
  hideConfirm: {
9955
9963
  type: Boolean,
9956
9964
  default: false
9957
9965
  },
9958
9966
  /**
9959
- * # 是否禁用确认按钮
9967
+ * ### 是否禁用确认按钮
9960
9968
  */
9961
9969
  disableConfirm: {
9962
9970
  type: Boolean,
9963
9971
  default: false
9964
9972
  },
9965
9973
  /**
9966
- * # 显示取消按钮
9974
+ * ### 显示取消按钮
9967
9975
  */
9968
9976
  showCancel: {
9969
9977
  type: Boolean,
9970
9978
  default: false
9971
9979
  },
9972
9980
  /**
9973
- * # 隐藏右上角关闭
9981
+ * ### 隐藏右上角关闭
9974
9982
  */
9975
9983
  hideClose: {
9976
9984
  type: Boolean,
9977
9985
  default: false
9978
9986
  },
9979
9987
  /**
9980
- * # 是否正在 `Loading`
9988
+ * ### 是否正在 `Loading`
9981
9989
  */
9982
9990
  loading: {
9983
9991
  type: Boolean,
9984
9992
  default: false
9985
9993
  },
9986
9994
  /**
9987
- * # 隐藏全屏按钮
9995
+ * ### 隐藏全屏按钮
9988
9996
  */
9989
9997
  hideFullscreen: {
9990
9998
  type: Boolean,
9991
9999
  default: false
9992
10000
  },
9993
10001
  /**
9994
- * # 是否全屏
10002
+ * ### 是否全屏
9995
10003
  */
9996
10004
  fullScreen: {
9997
10005
  type: Boolean,
9998
10006
  default: false
9999
10007
  },
10000
10008
  /**
10001
- * # 允许移动
10009
+ * ### 允许移动
10002
10010
  */
10003
10011
  movable: {
10004
10012
  type: Boolean,
10005
10013
  default: true
10006
10014
  },
10007
10015
  /**
10008
- * # Form的Ref实例
10016
+ * ### Form的Ref实例
10009
10017
  * 如传入此参数,则自动校验,否则请自行校验
10010
10018
  */
10011
10019
  formRef: {
@@ -10013,14 +10021,14 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
10013
10021
  default: void 0
10014
10022
  },
10015
10023
  /**
10016
- * # 是否是选择器
10024
+ * ### 是否是选择器
10017
10025
  */
10018
10026
  isSelector: {
10019
10027
  type: Boolean,
10020
10028
  default: false
10021
10029
  },
10022
10030
  /**
10023
- * # 是否支持点击遮罩层关闭
10031
+ * ### 是否支持点击遮罩层关闭
10024
10032
  */
10025
10033
  hoverClose: {
10026
10034
  type: Boolean,
@@ -10242,7 +10250,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
10242
10250
  };
10243
10251
  }
10244
10252
  });
10245
- const ADialog = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-bd72e84c"]]);
10253
+ const ADialog = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-937b915a"]]);
10246
10254
  const _imports_0 = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20version='1.1'%20viewBox='0%200%20120%20120'%20height='120px'%20width='120px'%3e%3ctitle%3eError!%3c/title%3e%3cdefs%3e%3clinearGradient%20id='linearGradient-1'%20y2='100%25'%20x2='50%25'%20y1='0%25'%20x1='50%25'%3e%3cstop%20offset='0%25'%20stop-color='%23F0F0F0'%3e%3c/stop%3e%3cstop%20offset='100%25'%20stop-color='%23DBDBDB'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient%20id='linearGradient-2'%20y2='100%25'%20x2='50%25'%20y1='0%25'%20x1='50%25'%3e%3cstop%20offset='0%25'%20stop-color='%23F8F8F8'%3e%3c/stop%3e%3cstop%20offset='100%25'%20stop-color='%23E7E7E7'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3cg%20fill-rule='evenodd'%20fill='none'%20stroke-width='1'%20stroke='none'%20id='调整'%3e%3cg%20transform='translate(-1053.000000,%20-221.000000)'%20id='切图备份'%3e%3cg%20transform='translate(932.000000,%20160.000000)'%20id='编组-4备份'%3e%3crect%20height='242'%20width='362'%20y='0'%20x='0'%20id='矩形备份-12'%3e%3c/rect%3e%3cg%20transform='translate(136.000000,%2079.000000)'%20id='编组-3'%3e%3cpath%20transform='translate(46.359054,%2079.256608)%20rotate(5.000000)%20translate(-46.359054,%20-79.256608)'%20fill-rule='nonzero'%20fill='%23000000'%20fill-opacity='0.05'%20id='路径'%20d='M78.9503255,77.036952%20C80.7447866,78.31027%2081.9959007,76.7673533%2085.7661446,77.8817054%20C89.5363884,78.9960574%2091.4884881,82.6947131%2091.522496,85.1606995%20C91.5575653,87.7469779%2088.3737349,91.1798155%2084.3278614,92.4273981%20L83.6415666,92.6253395%20C83.4088898,92.6879452%2083.1723834,92.7471309%2082.9322942,92.8027612%20L82.5695042,92.8835232%20L81.8634446,93.0223861%20L81.139799,93.1407814%20C80.1637846,93.2846838%2079.1442979,93.3721281%2078.0950342,93.3956023%20C75.9965069,93.4425505%2068.8878619,94.2183775%2067.1245946,93.7983804%20L66.4740485,93.6313381%20C62.5295405,92.5430563%2060.3115963,89.2695424%2060.2769435,86.7350564%20C60.2529407,84.979509%2059.6273739,84.2172683%2058.6260269,83.6918887%20C57.9584622,83.3416357%2056.4347344,83.267836%2054.0548435,83.4704898%20L42.0469504,85.5974769%20L39.1325463,86.0909149%20L34.4293694,86.9428463%20L26.1062059,88.4836966%20L24.0212699,88.8536895%20L21.5060941,89.2776678%20L19.5716508,89.5798453%20L18.1687813,89.7815566%20L17.2573172,89.9029719%20L15.9270511,90.0639183%20L15.0655604,90.1561715%20L14.2249389,90.235648%20L13.4056894,90.3017124%20L12.6083146,90.3537293%20L11.8333172,90.3910635%20L11.0812002,90.4130796%20L10.3524662,90.4191421%20L9.99702488,90.4159922%20L9.6476179,90.4086158%20L8.9671582,90.3808652%20L8.31158981,90.3352552%20L7.68141548,90.2711501%20L7.37600821,90.2319635%20L7.07713799,90.1879148%20L6.4992601,90.0849139%20C3.48853739,89.4817378%201.62564866,88.0081194%201.25381316,85.2303229%20C0.801929733,81.8545285%203.00529064,79.5331796%207.03213462,77.7476042%20L7.38173895,77.5958549%20L8.03316219,77.3290875%20L8.36937183,77.1986717%20L9.0623629,76.9435113%20L9.41897462,76.818661%20L10.1520061,76.5741553%20L10.5282563,76.4543942%20L11.2998009,76.2195908%20L12.0961723,75.9907265%20L12.9166918,75.7673778%20L14.1912636,75.4417709%20L15.5163499,75.1261932%20L16.8896598,74.8192161%20L18.3089021,74.5194109%20L19.7717859,74.225349%20L21.7862243,73.8397311%20L24.9338368,73.2682784%20L35.7036078,71.3924087%20L38.0697485,70.961615%20L40.4001071,70.5174049%20L42.1202482,70.1794568%20L62.0307178,66.6498183%20L65.0900686,66.0533163%20L66.5625628,65.7806006%20L67.9943499,65.5286929%20L69.3834903,65.3004315%20L70.7280443,65.0986548%20L71.5986856,64.9802523%20L72.4480738,64.8757232%20L73.2756344,64.7859085%20L74.0807926,64.7116492%20L74.8629736,64.6537863%20L75.6216027,64.6131608%20L75.9919058,64.5995748%20L76.3561053,64.5906136%20C76.8892781,72.0392938%2077.7540182,76.1880733%2078.9503255,77.036952%20Z'%3e%3c/path%3e%3cg%20transform='translate(6.000000,%200.000000)'%20id='编组-10备份'%3e%3cpath%20fill='url(%23linearGradient-1)'%20id='矩形'%20d='M11.6746079,1.47362958%20L53.6746079,0.334338358%20C60.299588,0.154629272%2065.8158784,5.37955374%2065.9955875,12.0045338%20C65.998529,12.1129729%2066,12.2214469%2066,12.3299259%20L66,65.5263991%20C66,71.9413707%2060.954673,77.2218847%2054.5463537,77.513955%20L12.5463537,79.4281781%20C5.92580938,79.7299209%200.314186877,74.6075202%200.0124440516,67.9869759%20C0.00414909285,67.804976%203.57502537e-15,67.6228109%200,67.4406222%20L0,13.4692171%20C2.75660975e-15,6.96853523%205.17631638,1.64990212%2011.6746079,1.47362958%20Z'%3e%3c/path%3e%3cpath%20fill='url(%23linearGradient-2)'%20id='矩形'%20d='M12.7609095,5.467978%20L58.7609095,4.24552869%20C63.729718,4.11348268%2067.8647776,8.03445339%2067.9968236,13.0032619%20C67.9989411,13.0829411%2068,13.162645%2068,13.2423523%20L68,68.5352299%20C68,73.3496761%2064.2111128,77.3115159%2059.4014587,77.5262716%20L13.4014587,79.5802158%20C8.43584344,79.8019353%204.23067779,75.956248%204.00895829,70.9906328%20C4.00298684,70.8568965%204,70.7230436%204,70.5891741%20L4,14.4648017%20C4,9.58736567%207.88519495,5.59755004%2012.7609095,5.467978%20Z'%3e%3c/path%3e%3cpath%20fill='%23FFFFFF'%20id='矩形'%20d='M13.8370136,9.3631501%20L57.8370136,8.16747558%20C61.1494993,8.07746071%2063.907771,10.6897894%2063.9977859,14.0022751%20C63.9992619,14.0565914%2064,14.1109252%2064,14.1652615%20L64,67.7108429%20C64,70.9181402%2061.4776231,73.5583119%2058.2736637,73.7045987%20L14.2736637,75.7135563%20C10.9634038,75.8646965%208.1573845,73.3037241%208.00624423,69.9934642%20C8.00208195,69.9023023%208,69.8110573%208,69.7198005%20L8,15.360936%20C8,12.1107078%2010.5879849,9.45144057%2013.8370136,9.3631501%20Z'%3e%3c/path%3e%3cg%20fill-rule='nonzero'%20transform='translate(14.000000,%2015.785515)'%20id='编组-2'%3e%3cg%20transform='translate(0.771287,%200.305710)'%20id='编组-8'%3e%3cpath%20fill='%23EDEDED'%20id='路径'%20d='M40.4372184,4.26435671%20L19.0202079,5.5638691%20C18.7375688,5.56428852%2018.4762266,5.39967604%2018.3347903,5.13212095%20C18.1933541,4.86456586%2018.1933541,4.53479694%2018.3347903,4.26724186%20C18.4762266,3.99968677%2018.7375688,3.83507429%2019.0202079,3.83551562%20L40.4372184,2.53602162%20C40.7198575,2.53558381%2040.9811998,2.70019629%2041.122636,2.96775138%20C41.2640722,3.23530646%2041.2640722,3.56507538%2041.122636,3.83263047%20C40.9811998,4.10018556%2040.7198575,4.26479804%2040.4372184,4.26435671%20Z'%3e%3c/path%3e%3cpath%20fill='%23EDEDED'%20id='路径'%20d='M32.2585021,10.8846094%20L20.7676233,11.3933544%20C20.2903339,11.3933544%2019.9034143,11.0064348%2019.9034143,10.5291454%20C19.9034143,10.051856%2020.2903339,9.66493642%2020.7676233,9.66493642%20L32.2585021,9.1561915%20C32.7357915,9.1561915%2033.122711,9.54311103%2033.122711,10.0204005%20C33.122711,10.4976899%2032.7357915,10.8846094%2032.2585021,10.8846094%20Z'%3e%3c/path%3e%3cpath%20fill='%23EDEDED'%20id='路径'%20d='M1.04210395,27.3511696%20C0.592880621,27.3511696%200.228713161,26.964269%200.228713161,26.487003%20C0.228713161,26.0097369%200.592880621,25.6228363%201.04210395,25.6228363%20L40.4153224,23.6228363%20C40.8645457,23.6228363%2041.2287132,24.0097369%2041.2287132,24.487003%20C41.2287132,24.964269%2040.8645457,25.3511696%2040.4153224,25.3511696%20L1.04210395,27.3511696%20Z'%3e%3c/path%3e%3cpath%20fill='%23EDEDED'%20id='路径'%20d='M1.04214218,32.7659223%20C0.59289774,32.7659223%200.228713161,32.3790028%200.228713161,31.9017134%20C0.228713161,31.4244239%200.59289774,31.0375044%201.04214218,31.0375044%20L40.4152841,29.0375044%20C40.8645286,29.0375044%2041.2287132,29.4244239%2041.2287132,29.9017134%20C41.2287132,30.3790028%2040.8645286,30.7659223%2040.4152841,30.7659223%20L1.04214218,32.7659223%20Z'%3e%3c/path%3e%3cpath%20fill='%23F3F3F3'%20id='路径'%20d='M40.4153454,41.7493146%20L1.04208091,43.5172686%20C0.592870304,43.5172686%200.228713161,43.130368%200.228713161,42.6531019%20C0.228713161,42.1758359%200.592870304,41.7889353%201.04208091,41.7889353%20L40.4153454,40.0209813%20C40.864556,40.0209813%2041.2287132,40.4078819%2041.2287132,40.8851479%20C41.2287132,41.362414%2040.864556,41.7493146%2040.4153454,41.7493146%20Z'%3e%3c/path%3e%3cpath%20fill='%23F3F3F3'%20id='路径'%20d='M40.416976,47.0833184%20L1.04045036,48.9320266%20C0.592140282,48.9320266%200.228713161,48.5451071%200.228713161,48.0678176%20C0.228713161,47.5905282%200.592140282,47.2036087%201.04045036,47.2036087%20L40.416976,45.3549004%20C40.865286,45.3549004%2041.2287132,45.74182%2041.2287132,46.2191094%20C41.2287132,46.6963988%2040.865286,47.0833184%2040.416976,47.0833184%20Z'%3e%3c/path%3e%3cpath%20fill='%23F3F3F3'%20id='路径'%20d='M16.4327002,8.21559882%20C16.4350664,10.0714965%2015.8067728,11.8731271%2014.6508331,13.3250793%20C14.2769419,13.7976635%2013.8512753,14.2268655%2013.3817996,14.6046526%20C12.1006077,15.6439682%2010.5352339,16.2718379%208.8909558,16.4059251%20C8.66711861,16.4253126%208.44146781,16.4341252%208.21409857,16.4341252%20C7.76355055,16.4341252%207.31376488,16.39709%206.86933407,16.3230983%20C6.71253347,16.2984233%206.55917503,16.2684503%206.40581659,16.2332109%20C6.13890161,16.1738065%205.87533062,16.1002655%205.61621767,16.0128987%20C4.77590582,15.7332218%203.98659247,15.3189294%203.27910182,14.7862004%20C3.09054454,14.6452006%202.90904606,14.4953883%202.7327963,14.3367635%20C2.51723197,14.1455597%202.31300966,13.9419388%202.12117087,13.7269393%20C2.07005844,13.6705394%202.01893367,13.612377%201.96962075,13.5542146%20C-0.394225598,10.7875478%20-0.656607248,6.79555522%201.32477819,3.74328946%20C3.30616363,0.691023693%207.05925328,-0.694316331%2010.5485632,0.338606971%20C14.0378732,1.37153027%2016.4320793,4.57662407%2016.4327002,8.2156094%20L16.4327002,8.21559882%20Z'%3e%3c/path%3e%3ccircle%20r='3.36794077'%20cy='7.65245969'%20cx='7.92805755'%20fill='%23FFDCD5'%20id='椭圆形'%3e%3c/circle%3e%3cpath%20fill='%232F2E41'%20id='路径'%20d='M11.6774786,6.01071259%20C11.6927471,5.70976862%2011.6078236,5.4122525%2011.4359953,5.16471375%20L11.3143935,4.99198898%20C10.8754911,4.14599014%2010.1511275,3.38459119%209.620658,2.82764195%20C9.22228772,2.40993003%208.82400909,2.2090053%208.44147133,2.22839278%20C8.16311832,2.24826956%207.90395542,2.37753892%207.72063626,2.58794228%20C6.69132071,2.52507974%205.72254614,3.07797323%205.25313965,3.99617785%20C3.64047198,4.84745537%204.1216303,7.36078573%204.12688078,7.3872232%20L4.51647206,8.0411098%20L4.5605345,7.95827241%20C4.5605345,7.95650991%204.56578321,7.94945992%204.57284025,7.93535994%20C4.64865938,7.79964763%205.06105208,7.04529867%205.33954433,6.56766182%20C5.44119161,6.40474511%205.57637919,6.26535169%205.73610628,6.15876238%20C5.99694053,5.98054184%206.29673352,5.86751505%206.61030508,5.82917533%20L7.46685423,5.71813799%20L7.14258288,6.20458732%20L9.4760768,6.20458732%20L10.3731616,6.09883746%20C10.4630931,6.46719946%2011.1751491,7.896585%2011.2614604,8.06930976%20L11.2685104,8.08340974%20L11.3160978,8.18034711%20L11.582279,7.44891061%20C11.7376875,6.98577831%2011.7704858,6.49028842%2011.6774786,6.01071259%20Z'%3e%3c/path%3e%3cpath%20fill='%23ccc'%20id='路径'%20d='M3.30382437,14.8038077%20C3.44834917,14.613458%204.19741064,13.7251592%205.92113328,13.2545724%20L6.83410703,12.2376113%20L10.4948145,11.6542246%20L12.3577744,12.6835231%20L14.6507838,13.3250723%20C14.2769163,13.7976658%2013.8512602,14.226869%2013.3817855,14.6046455%20C12.1005888,15.6439531%2010.5352177,16.2718218%208.8909417,16.405918%20C8.66710451,16.4253055%208.44150482,16.4341182%208.21414263,16.4341182%20C7.7635871,16.4342197%207.31379401,16.3970808%206.86935698,16.3230806%20C6.71249469,16.2984057%206.5591574,16.2684432%206.40582011,16.2331933%20C6.13890189,16.1738018%205.87533023,16.1002606%205.6162212,16.0128811%20C4.7854108,15.7368485%204.00457837,15.3285779%203.30382437,14.8038077%20C3.29501188,14.7985202%203.28796189,14.7914702%203.2791494,14.7861828%20L3.30382437,14.8038077%20Z'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg%20transform='translate(50.000000,%2018.785515)'%20id='undraw_map_re_60yfw备份'%3e%3cpolygon%20points='25.5795757%2067.619667%2023.9776047%2067.619667%2023.2154672%2061.4404243%2025.5799463%2061.4404243'%20fill-rule='nonzero'%20fill='%23FFC5B9'%20id='路径'%3e%3c/polygon%3e%3cpolygon%20points='19.3714286%2066.6101128%2017.8087379%2066.9630183%2015.7041515%2061.1033298%2018.0105747%2060.5826799'%20fill-rule='nonzero'%20fill='%23FFC5B9'%20id='路径'%3e%3c/polygon%3e%3cpath%20fill-rule='nonzero'%20fill='%232F2E41'%20id='路径'%20d='M20.122884,67.9968106%20C18.6837616,68.990244%2015.4400225,69.564029%2014.6833839,69.2793135%20C13.9267454,68.994598%2014.6833839,66.9028893%2016.7641239,66.9028893%20L17.380146,65.9586334%20L18.941933,66.057946%20L19.3817863,65.9586334%20C20.219863,66.9399849%2020.4668955,67.6193773%2020.122884,67.9968106%20Z'%3e%3c/path%3e%3cpath%20transform='translate(26.194614,%2068.274285)%20scale(-1,%201)%20rotate(13.000000)%20translate(-26.194614,%20-68.274285)'%20fill-rule='nonzero'%20fill='%232F2E41'%20id='路径'%20d='M28.9826618,68.6156433%20C27.5435394,69.6090767%2024.2998002,70.1828617%2023.5431617,69.8981462%20C22.7865232,69.6134307%2023.5431617,67.521722%2025.6239017,67.521722%20L26.2399238,66.5774661%20L27.8017107,66.6767787%20L28.2415641,66.5774661%20C29.0796408,67.5588176%2029.3266733,68.23821%2028.9826618,68.6156433%20Z'%3e%3c/path%3e%3cpath%20fill-rule='nonzero'%20fill='%23ccc'%20id='路径'%20d='M27.6086476,29.8430095%20C30.2652054,33.0322683%2028.1148918,52.8401242%2027.1871185,54.7753754%20C25.9482091,57.3596267%2026.7308381,62.524081%2025.8550767,64.2385408%20L23.3148836,64.2385408%20L22.6906361,57.2584373%20L22.1408546,56.4713234%20L22.0571986,50.175528%20C21.8322828,49.643001%2021.8121485,48.4396781%2021.9967958,46.5655594%20L21.8992644,40.7363515%20C19.0291846,45.6936458%2017.3081306,48.3154159%2016.7361026,48.6016617%20C18.3836291,55.1746297%2019.2188117,59.30936%2019.2416503,61.0058525%20L19.9220155,64.0086297%20L16.795646,64.2881168%20L15.4159869,60.2159297%20C14.3997791,59.3000305%2013.3672124,57.2940863%2012.3182869,54.1980972%20C11.2693614,51.1021082%2010.8855789,48.9275824%2011.1669395,47.6745201%20L13.0483617,43.3078935%20L13.8173263,41.5231911%20L18.1116412,32.5564437%20L27.6086476,29.8430095%20Z'%3e%3c/path%3e%3cpath%20fill='%23FFDCD5'%20id='路径-4'%20d='M5.94827543,18.4333344%20L5.27009174,17.3895275%20C4.83443551,16.5719148%204.08928054,16.3675116%203.03462682,16.776318%20C1.45264626,17.3895275%201.3718101,16.3403398%200.554824829,16.184494%20C-0.262160437,16.0286483%200.529026031,17.9663925%201.68086243,18.1998634%20C2.83269882,18.4333344%204.11911201,18.1998634%205.27009174,19.3090823%20C6.03741155,20.0485615%206.26347278,19.7566455%205.94827543,18.4333344%20Z'%3e%3c/path%3e%3cpath%20transform='translate(41.831975,%2019.103608)%20scale(-1,%201)%20translate(-41.831975,%20-19.103608)'%20fill='%23FFDCD5'%20id='路径-4'%20d='M44.5385828,19.4333344%20L43.7300746,17.997982%20C43.3159141,17.6701867%2042.6818267,17.6038294%2041.8278125,17.7989101%20C40.5467912,18.091531%2040.3051416,17.6065553%2039.4729182,17.3139343%20C38.6406947,17.0213133%2039.4252116,19.0868139%2040.5384013,19.0868139%20C41.651591,19.0868139%2042.6754099,19.4333344%2043.5399119,20.5495911%20C44.1162465,21.2937622%2044.4491368,20.9216766%2044.5385828,19.4333344%20Z'%3e%3c/path%3e%3cpath%20fill='%23FFCBC1'%20id='路径-2'%20d='M19.2825127,10.1155281%20C19.2825127,10.1155281%2019.3838387,10.955527%2019.5864906,12.6355247%20L22.5,12.6355247%20L22.2617226,9.16346741%20C20.2755826,9.79817454%2019.2825127,10.1155281%2019.2825127,10.1155281%20Z'%3e%3c/path%3e%3cpath%20fill-rule='nonzero'%20fill='%23EAEAEA'%20id='路径'%20d='M22.7618588,12.0481651%20L23.217659,13.2043475%20L23.810398,13.4490624%20C28.3916817,9.58369474%2030.2942116,18.0321874%2031.3533173,19.8406667%20C32.3113271,21.1676098%2035.2260102,20.4648354%2040.0973663,17.7323436%20L41.9885406,20.4578209%20C36.6567935,22.8165181%2033.6097646,24.1255362%2032.8474541,24.3848752%20C31.7039883,24.7738836%2030.2647595,24.2290574%2029.6522484,23.9150352%20L26.7876968,19.9801339%20C26.6500441,21.6628262%2027.7234426,27.5335875%2028.3916817,28.9133343%20C28.8371744,29.8331655%2029.0033726,31.3220322%2028.8902764,33.3799345%20C27.6632753,33.2310478%2026.9624154,33.1566045%2026.7876968,33.1566045%20C26.4661312,33.1566045%2023.5209619,33.5854896%2017.952189,34.4432599%20L16.5058134,33.7116281%20L17.1320755,30.6999744%20L16.7170379,29.3535727%20C17.516183,23.0190354%2017.7710732,20.0537848%2017.4817086,20.4578209%20C17.0476616,21.063875%2016.5774018,22.6653382%2016.0709292,23.5085536%20C15.5747778,24.4274914%2014.6913021,24.8837487%2013.4205022,24.8773255%20C12.1497023,24.8709023%209.1739663,23.264995%204.49329433,20.0596037%20L5.55947876,17.2498894%20C10.1362178,20.4325701%2012.7565589,21.5018806%2013.4205022,20.4578209%20C13.8717384,19.70438%2013.7219021,16.6804605%2014.4258575,15.0668737%20C15.129813,13.4532868%2016.7915618,12.8414713%2018.5622148,13.8335736%20C18.6846341,13.8818589%2018.8005935,13.9320075%2018.9103258,13.9839054%20L19.1334645,13.6663177%20L19.1458168,12.1506893%20L22.7618588,12.0481651%20Z'%3e%3c/path%3e%3ccircle%20r='3.55660377'%20cy='7.19811321'%20cx='20.6886792'%20fill-rule='nonzero'%20fill='%23FFDCD5'%20id='椭圆形'%3e%3c/circle%3e%3cpath%20transform='translate(24.350000,%207.216267)%20scale(-1,%201)%20translate(-24.350000,%20-7.216267)'%20fill='%23FFDCD5'%20id='椭圆形备份'%20d='M24.5320755,8.13253403%20C24.946289,8.13253403%2025.1,7.46421356%2025.1,7.05%20C25.1,6.63578644%2024.7642136,6.3%2024.35,6.3%20C23.9357864,6.3%2023.6,6.63578644%2023.6,7.05%20C23.6,7.46421356%2024.1178619,8.13253403%2024.5320755,8.13253403%20Z'%3e%3c/path%3e%3cpath%20fill-rule='nonzero'%20fill='%232F2E41'%20id='路径'%20d='M18.5,5.47086143%20C18.5779152,5.47144038%2018.9810582,5.5295179%2019.709429,5.64509401%20C19.7992894,5.65935284%2019.9452178,5.6827102%2020.1472144,5.71516609%20C20.4515042,5.63427297%2020.6721794,5.57935034%2020.80924,5.55039821%20C21.0508897,5.49935306%2021.2701683,5.85082223%2021.4701385,5.83153725%20C22.0830859,5.77242504%2022.5017664,5.4758785%2022.7231172,5.71516609%20C22.9064071,5.91330849%2023.6428805,5.81226146%2024.0113525,6.3496666%20C24.1375066,6.53365842%2024.1766143,6.70299562%2024.1286755,6.85767819%20C24.2838567,6.85818284%2024.3864104,6.82843813%2024.4363365,6.76844406%20C24.5569917,6.24063419%2025.0012264,5.99214935%2025.1000131,4.98563576%20C25.1000131,3.88379478%2024.9158649,1.72039509%2022.1127586,1.35310078%20C22.0802726,1.34884409%2022.0802726,1.14637967%2022.1127586,0.745707512%20C21.7778009,1.05512633%2021.5586506,1.1936357%2021.4553078,1.16123562%20C21.3740815,1.1357695%2021.5331226,0.768175272%2021.4553078,0.745707512%20C21.2908482,0.698222464%2020.90243,1.00472189%2020.80924,1%20C20.109976,0.964568651%2019.2887667,1.40216236%2018.5,1.64474869%20C17.5060845,1.95042882%2017.2317941,2.39417405%2016.95,3.64150943%20C16.7997103,4.00268007%2016.7286186,4.58428618%2016.7367249,5.38632774%20L17.1231308,7.10649109%20L17.4998894,6.3%20L17.6937008,5.47086143%20L18.0248604,5.61205387%20C18.0992632,5.46006118%2018.1887684,5.38481914%2018.293376,5.38632774%20L18.5,5.47086143%20Z'%3e%3c/path%3e%3cpath%20fill='%23FFDCD5'%20id='椭圆形'%20d='M17.1320755,8.13253403%20C17.546289,8.13253403%2017.7,7.46421356%2017.7,7.05%20C17.7,6.63578644%2017.3642136,6.3%2016.95,6.3%20C16.5357864,6.3%2016.2,6.63578644%2016.2,7.05%20C16.2,7.46421356%2016.7178619,8.13253403%2017.1320755,8.13253403%20Z'%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
10247
10255
  const _sfc_main$q = /* @__PURE__ */ defineComponent({
10248
10256
  __name: "Empty",
@@ -10288,7 +10296,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
10288
10296
  __name: "FormField",
10289
10297
  props: {
10290
10298
  /**
10291
- * # 实体类
10299
+ * ### 实体类
10292
10300
  * 传入表单内容的类型,如传入则覆盖自动注入的类
10293
10301
  */
10294
10302
  entity: {
@@ -10296,35 +10304,35 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
10296
10304
  default: null
10297
10305
  },
10298
10306
  /**
10299
- * # 字段的名称
10307
+ * ### 字段的名称
10300
10308
  */
10301
10309
  field: {
10302
10310
  type: String,
10303
10311
  required: true
10304
10312
  },
10305
10313
  /**
10306
- * # 手动绑定的表单对象
10314
+ * ### 手动绑定的表单对象
10307
10315
  */
10308
10316
  modelValue: {
10309
10317
  type: Object,
10310
10318
  default: null
10311
10319
  },
10312
10320
  /**
10313
- * # 是否禁用输入
10321
+ * ### 是否禁用输入
10314
10322
  */
10315
10323
  disabled: {
10316
10324
  type: Boolean,
10317
10325
  default: false
10318
10326
  },
10319
10327
  /**
10320
- * # 是否只读
10328
+ * ### 是否只读
10321
10329
  */
10322
10330
  readonly: {
10323
10331
  type: Boolean,
10324
10332
  default: false
10325
10333
  },
10326
10334
  /**
10327
- * # 禁用时显示的值
10335
+ * ### 禁用时显示的值
10328
10336
  * 如果被禁用时传入了这个值, 则会显示这个值.
10329
10337
  */
10330
10338
  disabledValue: {
@@ -10332,7 +10340,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
10332
10340
  default: void 0
10333
10341
  },
10334
10342
  /**
10335
- * # 可选数组
10343
+ * ### 可选数组
10336
10344
  * 优先级: `AInput`传入 > `@Form`
10337
10345
  */
10338
10346
  list: {
@@ -10340,7 +10348,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
10340
10348
  default: void 0
10341
10349
  },
10342
10350
  /**
10343
- * # 可选树结构
10351
+ * ### 可选树结构
10344
10352
  * 优先级: `AInput` 传入 > `@Form`
10345
10353
  */
10346
10354
  tree: {
@@ -13134,7 +13142,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
13134
13142
  __name: "ChildMenu",
13135
13143
  props: {
13136
13144
  /**
13137
- * # 菜单列表
13145
+ * ### 菜单列表
13138
13146
  * 请确保传入的数组类型为 `IMenu` 的实现类
13139
13147
  */
13140
13148
  menuList: {
@@ -13186,12 +13194,12 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
13186
13194
  };
13187
13195
  }
13188
13196
  });
13189
- const ChildMenu = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-cfb70050"]]);
13197
+ const ChildMenu = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-88627393"]]);
13190
13198
  const _sfc_main$n = /* @__PURE__ */ defineComponent({
13191
13199
  __name: "Menu",
13192
13200
  props: {
13193
13201
  /**
13194
- * # 菜单列表
13202
+ * ### 菜单列表
13195
13203
  * 请确保传入的数组类型为 `IMenu` 的实现类
13196
13204
  */
13197
13205
  menuList: {
@@ -13199,7 +13207,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
13199
13207
  required: true
13200
13208
  },
13201
13209
  /**
13202
- * # 是否只保持展开一个菜单
13210
+ * ### 是否只保持展开一个菜单
13203
13211
  */
13204
13212
  uniqueOpened: {
13205
13213
  type: Boolean,
@@ -13245,14 +13253,14 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
13245
13253
  __name: "Frame",
13246
13254
  props: {
13247
13255
  /**
13248
- * # 左侧宽度
13256
+ * ### 左侧宽度
13249
13257
  */
13250
13258
  menuWidth: {
13251
13259
  type: Number,
13252
13260
  default: 220
13253
13261
  },
13254
13262
  /**
13255
- * # 菜单列表
13263
+ * ### 菜单列表
13256
13264
  * 请确保传入的数组类型为 `IMenu` 的实现类
13257
13265
  */
13258
13266
  menuList: {
@@ -13260,14 +13268,14 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
13260
13268
  default: () => []
13261
13269
  },
13262
13270
  /**
13263
- * # 是否只保持展开一个菜单
13271
+ * ### 是否只保持展开一个菜单
13264
13272
  */
13265
13273
  uniqueOpened: {
13266
13274
  type: Boolean,
13267
13275
  default: false
13268
13276
  },
13269
13277
  /**
13270
- * # 是否隐藏菜单
13278
+ * ### 是否隐藏菜单
13271
13279
  */
13272
13280
  hideMenu: {
13273
13281
  type: Boolean,
@@ -13320,7 +13328,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
13320
13328
  };
13321
13329
  }
13322
13330
  });
13323
- const Frame = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-1dc20cb3"]]);
13331
+ const Frame = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-53b58994"]]);
13324
13332
  const _hoisted_1$e = {
13325
13333
  key: 0,
13326
13334
  class: "group-title"
@@ -13336,28 +13344,28 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
13336
13344
  __name: "Group",
13337
13345
  props: {
13338
13346
  /**
13339
- * # 最低高度
13347
+ * ### 最低高度
13340
13348
  */
13341
13349
  minHeight: {
13342
13350
  type: String,
13343
13351
  default: void 0
13344
13352
  },
13345
13353
  /**
13346
- * # 隐藏标题
13354
+ * ### 隐藏标题
13347
13355
  */
13348
13356
  hideTitle: {
13349
13357
  type: Boolean,
13350
13358
  default: false
13351
13359
  },
13352
13360
  /**
13353
- * # 分组标题
13361
+ * ### 分组标题
13354
13362
  */
13355
13363
  title: {
13356
13364
  type: String,
13357
13365
  default: ""
13358
13366
  },
13359
13367
  /**
13360
- * # 分组列数
13368
+ * ### 分组列数
13361
13369
  * 配置范围 `1~3`, 默认为 `1`
13362
13370
  */
13363
13371
  column: {
@@ -13365,28 +13373,28 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
13365
13373
  default: 1
13366
13374
  },
13367
13375
  /**
13368
- * # 自适应高度
13376
+ * ### 自适应高度
13369
13377
  */
13370
13378
  autoHeight: {
13371
13379
  type: Boolean,
13372
13380
  default: false
13373
13381
  },
13374
13382
  /**
13375
- * # 列数自适应
13383
+ * ### 列数自适应
13376
13384
  */
13377
13385
  autoCol: {
13378
13386
  type: Boolean,
13379
13387
  default: false
13380
13388
  },
13381
13389
  /**
13382
- * # 是否禁用展开收起
13390
+ * ### 是否禁用展开收起
13383
13391
  */
13384
13392
  disableCollapse: {
13385
13393
  type: Boolean,
13386
13394
  default: false
13387
13395
  },
13388
13396
  /**
13389
- * # 是否默认收起
13397
+ * ### 是否默认收起
13390
13398
  */
13391
13399
  collapse: {
13392
13400
  type: Boolean,
@@ -13481,14 +13489,14 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
13481
13489
  __name: "Image",
13482
13490
  props: {
13483
13491
  /**
13484
- * # 显示的URL
13492
+ * ### 显示的URL
13485
13493
  */
13486
13494
  src: {
13487
13495
  type: String,
13488
13496
  default: () => void 0
13489
13497
  },
13490
13498
  /**
13491
- * # 是否显示删除图标
13499
+ * ### 是否显示删除图标
13492
13500
  * 仅 `upload` 时有效, 如传入 `false`, 则上传后不允许删除
13493
13501
  */
13494
13502
  clearable: {
@@ -13496,14 +13504,14 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
13496
13504
  default: true
13497
13505
  },
13498
13506
  /**
13499
- * # 提示文本
13507
+ * ### 提示文本
13500
13508
  */
13501
13509
  placeholder: {
13502
13510
  type: String,
13503
13511
  default: void 0
13504
13512
  },
13505
13513
  /**
13506
- * # 允许上传
13514
+ * ### 允许上传
13507
13515
  */
13508
13516
  upload: {
13509
13517
  type: Boolean,
@@ -13526,49 +13534,49 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
13526
13534
  }
13527
13535
  },
13528
13536
  /**
13529
- * # 显示上传 `tips`
13537
+ * ### 显示上传 `tips`
13530
13538
  */
13531
13539
  showTips: {
13532
13540
  type: Boolean,
13533
13541
  default: false
13534
13542
  },
13535
13543
  /**
13536
- * # 图片宽度
13544
+ * ### 图片宽度
13537
13545
  */
13538
13546
  width: {
13539
13547
  type: Number,
13540
13548
  default: 100
13541
13549
  },
13542
13550
  /**
13543
- * # 图片高度
13551
+ * ### 图片高度
13544
13552
  */
13545
13553
  height: {
13546
13554
  type: Number,
13547
13555
  default: 100
13548
13556
  },
13549
13557
  /**
13550
- * # 限制上传的大小
13558
+ * ### 限制上传的大小
13551
13559
  */
13552
13560
  limit: {
13553
13561
  type: Number,
13554
13562
  default: () => 3 * 1024 * 1024
13555
13563
  },
13556
13564
  /**
13557
- * # 允许上传的格式
13565
+ * ### 允许上传的格式
13558
13566
  */
13559
13567
  extensions: {
13560
13568
  type: Array,
13561
13569
  default: () => ["jpg", "jpeg", "png"]
13562
13570
  },
13563
13571
  /**
13564
- * # 上传地址
13572
+ * ### 上传地址
13565
13573
  */
13566
13574
  uploadUrl: {
13567
13575
  type: String,
13568
13576
  default: ""
13569
13577
  },
13570
13578
  /**
13571
- * # 上传文件的字段名
13579
+ * ### 上传文件的字段名
13572
13580
  * 默认为 `file`
13573
13581
  */
13574
13582
  uploadFileName: {
@@ -13576,7 +13584,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
13576
13584
  default: "file"
13577
13585
  },
13578
13586
  /**
13579
- * # 接收的文件实体类
13587
+ * ### 接收的文件实体类
13580
13588
  */
13581
13589
  entity: {
13582
13590
  type: Function,
@@ -13767,7 +13775,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13767
13775
  default: () => ({})
13768
13776
  },
13769
13777
  /**
13770
- * # 如果是循环, 则此项必须传入
13778
+ * ### 如果是循环, 则此项必须传入
13771
13779
  * 字段名
13772
13780
  */
13773
13781
  modifier: {
@@ -13775,21 +13783,21 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13775
13783
  default: void 0
13776
13784
  },
13777
13785
  /**
13778
- * # 是否禁用输入
13786
+ * ### 是否禁用输入
13779
13787
  */
13780
13788
  disabled: {
13781
13789
  type: Boolean,
13782
13790
  default: false
13783
13791
  },
13784
13792
  /**
13785
- * # 是否只读
13793
+ * ### 是否只读
13786
13794
  */
13787
13795
  readonly: {
13788
13796
  type: Boolean,
13789
13797
  default: false
13790
13798
  },
13791
13799
  /**
13792
- * # 禁用时显示的值
13800
+ * ### 禁用时显示的值
13793
13801
  * 如果被禁用时传入了这个值, 则会显示这个值.
13794
13802
  */
13795
13803
  disabledValue: {
@@ -13797,14 +13805,14 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13797
13805
  default: void 0
13798
13806
  },
13799
13807
  /**
13800
- * # 显示的格式化方式
13808
+ * ### 显示的格式化方式
13801
13809
  */
13802
13810
  dateShowFormatter: {
13803
13811
  type: String,
13804
13812
  default: void 0
13805
13813
  },
13806
13814
  /**
13807
- * # 传入的实体类
13815
+ * ### 传入的实体类
13808
13816
  * 如同时传入了 `modifier` 或 `v-model` 指令的 `modifier` 则自动生成兜底的 `placeholder` 等信息
13809
13817
  */
13810
13818
  entity: {
@@ -13812,7 +13820,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13812
13820
  default: void 0
13813
13821
  },
13814
13822
  /**
13815
- * # 自定义提示文字
13823
+ * ### 自定义提示文字
13816
13824
  * 优先级: `AInput` 传入 > `@Form` > 自动生成
13817
13825
  */
13818
13826
  placeholder: {
@@ -13820,7 +13828,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13820
13828
  default: ""
13821
13829
  },
13822
13830
  /**
13823
- * # 可选数组
13831
+ * ### 可选数组
13824
13832
  * 优先级: `AInput` 传入 > `@Form`
13825
13833
  */
13826
13834
  list: {
@@ -13828,7 +13836,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13828
13836
  default: void 0
13829
13837
  },
13830
13838
  /**
13831
- * # 可选树结构
13839
+ * ### 可选树结构
13832
13840
  * 优先级: `AInput` 传入 > `@Form`
13833
13841
  */
13834
13842
  tree: {
@@ -13836,7 +13844,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13836
13844
  default: void 0
13837
13845
  },
13838
13846
  /**
13839
- * # 是否显示清空的图标
13847
+ * ### 是否显示清空的图标
13840
13848
  * 仅在普通输入框的 `readonly` 下有效
13841
13849
  */
13842
13850
  showClear: {
@@ -13844,7 +13852,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
13844
13852
  default: false
13845
13853
  },
13846
13854
  /**
13847
- * # 远程搜索的回调方法
13855
+ * ### 远程搜索的回调方法
13848
13856
  * 如传入 则会回调此方法进行自定义搜索
13849
13857
  */
13850
13858
  onSearch: {
@@ -14274,14 +14282,14 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
14274
14282
  __name: "Money",
14275
14283
  props: {
14276
14284
  /**
14277
- * # 💰金额
14285
+ * ### 💰金额
14278
14286
  */
14279
14287
  money: {
14280
14288
  type: Number,
14281
14289
  default: 0
14282
14290
  },
14283
14291
  /**
14284
- * # 💰金额的小数精度
14292
+ * ### 💰金额的小数精度
14285
14293
  * 默认为 `WebConfig.moneyPrecision`
14286
14294
  */
14287
14295
  precision: {
@@ -14289,14 +14297,14 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
14289
14297
  default: () => WebConfig.moneyPrecision
14290
14298
  },
14291
14299
  /**
14292
- * # 💰金额的前缀
14300
+ * ### 💰金额的前缀
14293
14301
  */
14294
14302
  prefix: {
14295
14303
  type: String,
14296
14304
  default: "¥"
14297
14305
  },
14298
14306
  /**
14299
- * # 💰金额的小数舍弃方式
14307
+ * ### 💰金额的小数舍弃方式
14300
14308
  * 默认为 `WebConfig.moneyDirection`
14301
14309
  */
14302
14310
  direction: {
@@ -14332,7 +14340,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
14332
14340
  };
14333
14341
  }
14334
14342
  });
14335
- const AMoney = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-81e092b7"]]);
14343
+ const AMoney = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-f91c14e3"]]);
14336
14344
  class QueryPage extends Transformer {
14337
14345
  constructor() {
14338
14346
  super(...arguments);
@@ -14425,7 +14433,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
14425
14433
  __name: "Page",
14426
14434
  props: {
14427
14435
  /**
14428
- * # 响应对象
14436
+ * ### 响应对象
14429
14437
  */
14430
14438
  response: {
14431
14439
  type: QueryResponsePage,
@@ -14630,7 +14638,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
14630
14638
  __name: "Panel",
14631
14639
  props: {
14632
14640
  /**
14633
- * # 卡片的标题
14641
+ * ### 卡片的标题
14634
14642
  * 默认读取当前路由元数据里的 `name` 属性
14635
14643
  */
14636
14644
  title: {
@@ -14638,28 +14646,28 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
14638
14646
  default: ""
14639
14647
  },
14640
14648
  /**
14641
- * # 描述
14649
+ * ### 描述
14642
14650
  */
14643
14651
  description: {
14644
14652
  type: String,
14645
14653
  default: ""
14646
14654
  },
14647
14655
  /**
14648
- * # 是否显示标题
14656
+ * ### 是否显示标题
14649
14657
  */
14650
14658
  showTitle: {
14651
14659
  type: Boolean,
14652
14660
  default: true
14653
14661
  },
14654
14662
  /**
14655
- * # 是否显示图标
14663
+ * ### 是否显示图标
14656
14664
  */
14657
14665
  hideIcon: {
14658
14666
  type: Boolean,
14659
14667
  default: false
14660
14668
  },
14661
14669
  /**
14662
- * # 是否允许全屏
14670
+ * ### 是否允许全屏
14663
14671
  */
14664
14672
  allowFullscreen: {
14665
14673
  type: Boolean,
@@ -14707,7 +14715,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
14707
14715
  };
14708
14716
  }
14709
14717
  });
14710
- const APanel = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-212156a1"]]);
14718
+ const APanel = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-62d334f9"]]);
14711
14719
  class DialogProps {
14712
14720
  /**
14713
14721
  * ### 使用无参 `DialogProps` 配置
@@ -15182,49 +15190,49 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
15182
15190
  __name: "Upload",
15183
15191
  props: {
15184
15192
  /**
15185
- * # 标准确认返回
15193
+ * ### 标准确认返回
15186
15194
  */
15187
15195
  onConfirm: {
15188
15196
  type: Function,
15189
15197
  default: () => null
15190
15198
  },
15191
15199
  /**
15192
- * # 自定义确认按钮事件
15200
+ * ### 自定义确认按钮事件
15193
15201
  */
15194
15202
  onCustomConfirm: {
15195
15203
  type: Function,
15196
15204
  default: () => null
15197
15205
  },
15198
15206
  /**
15199
- * # 自定义上传成功回调
15207
+ * ### 自定义上传成功回调
15200
15208
  */
15201
15209
  onCustomSuccess: {
15202
15210
  type: Function,
15203
15211
  default: null
15204
15212
  },
15205
15213
  /**
15206
- * # 标准取消返回
15214
+ * ### 标准取消返回
15207
15215
  */
15208
15216
  onCancel: {
15209
15217
  type: Function,
15210
15218
  default: () => null
15211
15219
  },
15212
15220
  /**
15213
- * # 上传弹窗中的标题
15221
+ * ### 上传弹窗中的标题
15214
15222
  */
15215
15223
  title: {
15216
15224
  type: String,
15217
15225
  default: "文件上传"
15218
15226
  },
15219
15227
  /**
15220
- * # 确认按钮的文字
15228
+ * ### 确认按钮的文字
15221
15229
  */
15222
15230
  confirmText: {
15223
15231
  type: String,
15224
15232
  default: void 0
15225
15233
  },
15226
15234
  /**
15227
- * # 上传允许的最大文件大小
15235
+ * ### 上传允许的最大文件大小
15228
15236
  * 默认 `10m`
15229
15237
  */
15230
15238
  maxSize: {
@@ -15232,49 +15240,49 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
15232
15240
  default: () => FileUtil.RADIX_FILE_SIZE ** 2 * 10
15233
15241
  },
15234
15242
  /**
15235
- * # 上传文件使用的`name`属性
15243
+ * ### 上传文件使用的`name`属性
15236
15244
  */
15237
15245
  uploadName: {
15238
15246
  type: String,
15239
15247
  default: () => WebConfig.uploadFileName
15240
15248
  },
15241
15249
  /**
15242
- * # 上传成功的文案提示
15250
+ * ### 上传成功的文案提示
15243
15251
  */
15244
15252
  uploadSuccess: {
15245
15253
  type: String,
15246
15254
  default: () => WebI18n.get().UploadSuccess
15247
15255
  },
15248
15256
  /**
15249
- * # 手动指定的上传路径
15257
+ * ### 手动指定的上传路径
15250
15258
  */
15251
15259
  uploadUrl: {
15252
15260
  type: String,
15253
15261
  default: () => WebConfig.uploadUrl
15254
15262
  },
15255
15263
  /**
15256
- * # 允许上传的后缀
15264
+ * ### 允许上传的后缀
15257
15265
  */
15258
15266
  extensions: {
15259
15267
  type: Array,
15260
15268
  default: () => ["jpg", "jpeg", "png"]
15261
15269
  },
15262
15270
  /**
15263
- * # 接收文件的实体类
15271
+ * ### 接收文件的实体类
15264
15272
  */
15265
15273
  entity: {
15266
15274
  type: Function,
15267
15275
  required: true
15268
15276
  },
15269
15277
  /**
15270
- * # 上传文件同时发送的数据
15278
+ * ### 上传文件同时发送的数据
15271
15279
  */
15272
15280
  data: {
15273
15281
  type: Object,
15274
15282
  default: () => null
15275
15283
  },
15276
15284
  /**
15277
- * # 上传文件同时发送的 `header`
15285
+ * ### 上传文件同时发送的 `header`
15278
15286
  */
15279
15287
  header: {
15280
15288
  type: Object,
@@ -15496,14 +15504,14 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
15496
15504
  __name: "Payload",
15497
15505
  props: {
15498
15506
  /**
15499
- * # 负载对象
15507
+ * ### 负载对象
15500
15508
  */
15501
15509
  payload: {
15502
15510
  type: Object,
15503
15511
  required: true
15504
15512
  },
15505
15513
  /**
15506
- * # 视图文件
15514
+ * ### 视图文件
15507
15515
  */
15508
15516
  view: {
15509
15517
  type: Object,
@@ -15540,14 +15548,14 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
15540
15548
  };
15541
15549
  }
15542
15550
  });
15543
- const APayload = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-0c60ad91"]]);
15551
+ const APayload = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-06da71fc"]]);
15544
15552
  const _hoisted_1$6 = { class: "a-phone-call__content" };
15545
15553
  const _sfc_main$c = /* @__PURE__ */ defineComponent({
15546
15554
  __name: "Call",
15547
15555
  props: {
15548
15556
  ...DialogProps.withParam(""),
15549
15557
  /**
15550
- * # 💡提示
15558
+ * ### 💡提示
15551
15559
  */
15552
15560
  tips: {
15553
15561
  type: String,
@@ -15596,27 +15604,27 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
15596
15604
  };
15597
15605
  }
15598
15606
  });
15599
- const ACall = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-461f5bc2"]]);
15607
+ const ACall = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-23375435"]]);
15600
15608
  const _hoisted_1$5 = { key: 1 };
15601
15609
  const _sfc_main$b = /* @__PURE__ */ defineComponent({
15602
15610
  __name: "Phone",
15603
15611
  props: {
15604
15612
  /**
15605
- * # 电话号码
15613
+ * ### 电话号码
15606
15614
  */
15607
15615
  phone: {
15608
15616
  type: String,
15609
15617
  required: true
15610
15618
  },
15611
15619
  /**
15612
- * # 是否脱敏
15620
+ * ### 是否脱敏
15613
15621
  */
15614
15622
  desensitize: {
15615
15623
  type: DesensitizeType,
15616
15624
  default: void 0
15617
15625
  },
15618
15626
  /**
15619
- * # 脱敏开始保留
15627
+ * ### 脱敏开始保留
15620
15628
  * 默认使用传入的参数
15621
15629
  */
15622
15630
  desensitizeHead: {
@@ -15624,7 +15632,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
15624
15632
  default: 0
15625
15633
  },
15626
15634
  /**
15627
- * # 脱敏末尾保留
15635
+ * ### 脱敏末尾保留
15628
15636
  * 默认使用传入的参数
15629
15637
  */
15630
15638
  desensitizeTail: {
@@ -15661,7 +15669,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
15661
15669
  };
15662
15670
  }
15663
15671
  });
15664
- const APhone = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-7f508993"]]);
15672
+ const APhone = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-8e8f9579"]]);
15665
15673
  /*!
15666
15674
  * qrcode.vue v3.6.0
15667
15675
  * A Vue.js component to generate QRCode. Both support Vue 2 and Vue 3
@@ -16665,14 +16673,14 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
16665
16673
  __name: "Qrcode",
16666
16674
  props: {
16667
16675
  /**
16668
- * # 二维码内容
16676
+ * ### 二维码内容
16669
16677
  */
16670
16678
  content: {
16671
16679
  type: String,
16672
16680
  required: true
16673
16681
  },
16674
16682
  /**
16675
- * # 二维码尺寸
16683
+ * ### 二维码尺寸
16676
16684
  */
16677
16685
  size: {
16678
16686
  type: Number,
@@ -16706,54 +16714,54 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
16706
16714
  };
16707
16715
  }
16708
16716
  });
16709
- const AQrcode = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-ac255c28"]]);
16717
+ const AQrcode = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-024409f5"]]);
16710
16718
  const _sfc_main$9 = /* @__PURE__ */ defineComponent({
16711
16719
  __name: "Select",
16712
16720
  props: /* @__PURE__ */ mergeModels({
16713
16721
  /**
16714
- * # 默认空值的提示
16722
+ * ### 默认空值的提示
16715
16723
  */
16716
16724
  default: {
16717
16725
  type: String,
16718
16726
  default: ""
16719
16727
  },
16720
16728
  /**
16721
- * # 选择按钮文案
16729
+ * ### 选择按钮文案
16722
16730
  */
16723
16731
  selectLabel: {
16724
16732
  type: String,
16725
16733
  default: "选择"
16726
16734
  },
16727
16735
  /**
16728
- * # 清除按钮文案
16736
+ * ### 清除按钮文案
16729
16737
  */
16730
16738
  clearLabel: {
16731
16739
  type: String,
16732
16740
  default: "清除"
16733
16741
  },
16734
16742
  /**
16735
- * # 提示信息
16743
+ * ### 提示信息
16736
16744
  */
16737
16745
  placeholder: {
16738
16746
  type: String,
16739
16747
  default: "请选择..."
16740
16748
  },
16741
16749
  /**
16742
- * # 使用的选择器视图
16750
+ * ### 使用的选择器视图
16743
16751
  */
16744
16752
  selector: {
16745
16753
  type: Object,
16746
16754
  required: true
16747
16755
  },
16748
16756
  /**
16749
- * # 选择器参数
16757
+ * ### 选择器参数
16750
16758
  */
16751
16759
  param: {
16752
16760
  type: Object,
16753
16761
  default: () => null
16754
16762
  },
16755
16763
  /**
16756
- * # 是否禁用
16764
+ * ### 是否禁用
16757
16765
  */
16758
16766
  disabled: {
16759
16767
  type: Boolean,
@@ -17160,7 +17168,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
17160
17168
  __name: "Tab",
17161
17169
  props: {
17162
17170
  /**
17163
- * # Tab标题
17171
+ * ### Tab标题
17164
17172
  */
17165
17173
  label: {
17166
17174
  type: String,
@@ -17276,7 +17284,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
17276
17284
  };
17277
17285
  }
17278
17286
  });
17279
- const ColumnSelector = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-b290585a"]]);
17287
+ const ColumnSelector = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-f5fa5768"]]);
17280
17288
  const _sfc_main$4 = /* @__PURE__ */ defineComponent({
17281
17289
  __name: "CopyColumn",
17282
17290
  props: {
@@ -17463,7 +17471,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17463
17471
  __name: "Table",
17464
17472
  props: {
17465
17473
  /**
17466
- * # 直接使用表格Hook
17474
+ * ### 直接使用表格Hook
17467
17475
  * 请注意,将不会再触发一些事件,请使用 Hook 的前后置等拦截方法处理
17468
17476
  */
17469
17477
  useHook: {
@@ -17471,105 +17479,105 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17471
17479
  default: void 0
17472
17480
  },
17473
17481
  /**
17474
- * # 是否禁用分页
17482
+ * ### 是否禁用分页
17475
17483
  */
17476
17484
  disablePage: {
17477
17485
  type: Boolean,
17478
17486
  default: false
17479
17487
  },
17480
17488
  /**
17481
- * # 表格加载中
17489
+ * ### 表格加载中
17482
17490
  */
17483
17491
  loading: {
17484
17492
  type: Boolean,
17485
17493
  default: false
17486
17494
  },
17487
17495
  /**
17488
- * # 隐藏添加按钮
17496
+ * ### 隐藏添加按钮
17489
17497
  */
17490
17498
  hideAdd: {
17491
17499
  type: Boolean,
17492
17500
  default: false
17493
17501
  },
17494
17502
  /**
17495
- * # 行尾编辑按钮的权限标识
17503
+ * ### 行尾编辑按钮的权限标识
17496
17504
  */
17497
17505
  editPermission: {
17498
17506
  type: String,
17499
17507
  default: void 0
17500
17508
  },
17501
17509
  /**
17502
- * # 行尾禁用按钮的权限标识
17510
+ * ### 行尾禁用按钮的权限标识
17503
17511
  */
17504
17512
  disablePermission: {
17505
17513
  type: String,
17506
17514
  default: void 0
17507
17515
  },
17508
17516
  /**
17509
- * # 行尾启用按钮的权限标识
17517
+ * ### 行尾启用按钮的权限标识
17510
17518
  */
17511
17519
  enablePermission: {
17512
17520
  type: String,
17513
17521
  default: void 0
17514
17522
  },
17515
17523
  /**
17516
- * # 行尾详情按钮的权限标识
17524
+ * ### 行尾详情按钮的权限标识
17517
17525
  */
17518
17526
  detailPermission: {
17519
17527
  type: String,
17520
17528
  default: void 0
17521
17529
  },
17522
17530
  /**
17523
- * # 行尾删除按钮的权限标识
17531
+ * ### 行尾删除按钮的权限标识
17524
17532
  */
17525
17533
  deletePermission: {
17526
17534
  type: String,
17527
17535
  default: void 0
17528
17536
  },
17529
17537
  /**
17530
- * # 行尾添加按钮的权限标识
17538
+ * ### 行尾添加按钮的权限标识
17531
17539
  */
17532
17540
  addRowPermission: {
17533
17541
  type: String,
17534
17542
  default: void 0
17535
17543
  },
17536
17544
  /**
17537
- * # 左侧添加按钮的权限标识
17545
+ * ### 左侧添加按钮的权限标识
17538
17546
  */
17539
17547
  addPermission: {
17540
17548
  type: String,
17541
17549
  default: void 0
17542
17550
  },
17543
17551
  /**
17544
- * # 右侧导出按钮的权限标识
17552
+ * ### 右侧导出按钮的权限标识
17545
17553
  */
17546
17554
  exportPermission: {
17547
17555
  type: String,
17548
17556
  default: void 0
17549
17557
  },
17550
17558
  /**
17551
- * # 左侧导入按钮的权限标识
17559
+ * ### 左侧导入按钮的权限标识
17552
17560
  */
17553
17561
  importPermission: {
17554
17562
  type: String,
17555
17563
  default: void 0
17556
17564
  },
17557
17565
  /**
17558
- * # 表格显示的数据数组
17566
+ * ### 表格显示的数据数组
17559
17567
  */
17560
17568
  dataList: {
17561
17569
  type: Array,
17562
17570
  default: () => []
17563
17571
  },
17564
17572
  /**
17565
- * # 默认选中的数据数组
17573
+ * ### 默认选中的数据数组
17566
17574
  */
17567
17575
  selectList: {
17568
17576
  type: Array,
17569
17577
  default: () => []
17570
17578
  },
17571
17579
  /**
17572
- * # 显示字段列表
17580
+ * ### 显示字段列表
17573
17581
  * 如传入 则优先使用
17574
17582
  */
17575
17583
  columnList: {
@@ -17577,56 +17585,56 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17577
17585
  default: () => []
17578
17586
  },
17579
17587
  /**
17580
- * # 默认表格空文案
17588
+ * ### 默认表格空文案
17581
17589
  */
17582
17590
  emptyText: {
17583
17591
  type: String,
17584
17592
  default: void 0
17585
17593
  },
17586
17594
  /**
17587
- * # 是否隐藏编辑按钮
17595
+ * ### 是否隐藏编辑按钮
17588
17596
  */
17589
17597
  hideEdit: {
17590
17598
  type: Boolean,
17591
17599
  default: false
17592
17600
  },
17593
17601
  /**
17594
- * # 控制是否禁用行内编辑按钮的回调方法
17602
+ * ### 控制是否禁用行内编辑按钮的回调方法
17595
17603
  */
17596
17604
  disableEdit: {
17597
17605
  type: Function,
17598
17606
  default: null
17599
17607
  },
17600
17608
  /**
17601
- * # 控制是否禁用行内添加按钮的回调方法
17609
+ * ### 控制是否禁用行内添加按钮的回调方法
17602
17610
  */
17603
17611
  disableAddRow: {
17604
17612
  type: Function,
17605
17613
  default: null
17606
17614
  },
17607
17615
  /**
17608
- * # 控制是否允许操作禁用启用
17616
+ * ### 控制是否允许操作禁用启用
17609
17617
  */
17610
17618
  disableChangeStatus: {
17611
17619
  type: Function,
17612
17620
  default: null
17613
17621
  },
17614
17622
  /**
17615
- * # 控制是否禁用行内详情按钮的回调方法
17623
+ * ### 控制是否禁用行内详情按钮的回调方法
17616
17624
  */
17617
17625
  disableDetail: {
17618
17626
  type: Function,
17619
17627
  default: null
17620
17628
  },
17621
17629
  /**
17622
- * # 控制是否禁用行内删除按钮的回调方法
17630
+ * ### 控制是否禁用行内删除按钮的回调方法
17623
17631
  */
17624
17632
  disableDelete: {
17625
17633
  type: Function,
17626
17634
  default: null
17627
17635
  },
17628
17636
  /**
17629
- * # 控制是否整行显示禁用状态
17637
+ * ### 控制是否整行显示禁用状态
17630
17638
  * 如禁用了行,则行将被模糊并显示灰色背景色
17631
17639
  */
17632
17640
  disableRow: {
@@ -17634,21 +17642,21 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17634
17642
  default: null
17635
17643
  },
17636
17644
  /**
17637
- * # 是否隐藏删除按钮
17645
+ * ### 是否隐藏删除按钮
17638
17646
  */
17639
17647
  hideDelete: {
17640
17648
  type: Boolean,
17641
17649
  default: false
17642
17650
  },
17643
17651
  /**
17644
- * # 控制是否禁用多选按钮的回调方法
17652
+ * ### 控制是否禁用多选按钮的回调方法
17645
17653
  */
17646
17654
  selectable: {
17647
17655
  type: Function,
17648
17656
  default: null
17649
17657
  },
17650
17658
  /**
17651
- * # 是否显示多选框
17659
+ * ### 是否显示多选框
17652
17660
  * 可触发 `@on-select(selectList)` 事件, 可配置 `:select-list` 默认选中
17653
17661
  */
17654
17662
  showSelect: {
@@ -17656,42 +17664,42 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17656
17664
  default: false
17657
17665
  },
17658
17666
  /**
17659
- * # 是否显示禁用启用
17667
+ * ### 是否显示禁用启用
17660
17668
  */
17661
17669
  showEnableAndDisable: {
17662
17670
  type: Boolean,
17663
17671
  default: false
17664
17672
  },
17665
17673
  /**
17666
- * # 是否隐藏序号
17674
+ * ### 是否隐藏序号
17667
17675
  */
17668
17676
  hideIndex: {
17669
17677
  type: Boolean,
17670
17678
  default: false
17671
17679
  },
17672
17680
  /**
17673
- * # 表格字段缓存Key
17681
+ * ### 表格字段缓存Key
17674
17682
  */
17675
17683
  fieldCacheKey: {
17676
17684
  type: String,
17677
17685
  default: void 0
17678
17686
  },
17679
17687
  /**
17680
- * # 是否隐藏字段选择
17688
+ * ### 是否隐藏字段选择
17681
17689
  */
17682
17690
  hideColumnSelector: {
17683
17691
  type: Boolean,
17684
17692
  default: false
17685
17693
  },
17686
17694
  /**
17687
- * # 操作区宽度
17695
+ * ### 操作区宽度
17688
17696
  */
17689
17697
  ctrlWidth: {
17690
17698
  type: String,
17691
17699
  default: ""
17692
17700
  },
17693
17701
  /**
17694
- * # 自动撑起高度
17702
+ * ### 自动撑起高度
17695
17703
  * 默认fix滚动
17696
17704
  */
17697
17705
  autoHeight: {
@@ -17699,56 +17707,56 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17699
17707
  default: false
17700
17708
  },
17701
17709
  /**
17702
- * # 是否隐藏操作按钮
17710
+ * ### 是否隐藏操作按钮
17703
17711
  */
17704
17712
  hideCtrl: {
17705
17713
  type: Boolean,
17706
17714
  default: false
17707
17715
  },
17708
17716
  /**
17709
- * # 是否显示详情按钮
17717
+ * ### 是否显示详情按钮
17710
17718
  */
17711
17719
  showDetail: {
17712
17720
  type: Boolean,
17713
17721
  default: false
17714
17722
  },
17715
17723
  /**
17716
- * # 是否显示行添加按钮
17724
+ * ### 是否显示行添加按钮
17717
17725
  */
17718
17726
  showAddRow: {
17719
17727
  type: Boolean,
17720
17728
  default: false
17721
17729
  },
17722
17730
  /**
17723
- * # 是否自定义删除事件
17731
+ * ### 是否自定义删除事件
17724
17732
  */
17725
17733
  customDelete: {
17726
17734
  type: Boolean,
17727
17735
  default: false
17728
17736
  },
17729
17737
  /**
17730
- * # 删除确认框提示标题
17738
+ * ### 删除确认框提示标题
17731
17739
  */
17732
17740
  deleteTitle: {
17733
17741
  type: String,
17734
17742
  default: ""
17735
17743
  },
17736
17744
  /**
17737
- * # 删除确认框提示内容
17745
+ * ### 删除确认框提示内容
17738
17746
  */
17739
17747
  deleteContent: {
17740
17748
  type: String,
17741
17749
  default: ""
17742
17750
  },
17743
17751
  /**
17744
- * # 表格绑定的数据实体
17752
+ * ### 表格绑定的数据实体
17745
17753
  */
17746
17754
  entity: {
17747
17755
  type: Function,
17748
17756
  default: void 0
17749
17757
  },
17750
17758
  /**
17751
- * # 是否显示导入按钮
17759
+ * ### 是否显示导入按钮
17752
17760
  * - `import-url` `可选` 导入的API接口地址
17753
17761
  * - `import-title` `可选` 指定上传框的标题
17754
17762
  */
@@ -17757,7 +17765,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17757
17765
  default: false
17758
17766
  },
17759
17767
  /**
17760
- * # 导入上传的标题
17768
+ * ### 导入上传的标题
17761
17769
  * 默认按传入的 `service` 自动生成
17762
17770
  */
17763
17771
  importTitle: {
@@ -17765,14 +17773,14 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17765
17773
  default: void 0
17766
17774
  },
17767
17775
  /**
17768
- * # 导出的请求参数
17776
+ * ### 导出的请求参数
17769
17777
  */
17770
17778
  exportParam: {
17771
17779
  type: Object,
17772
17780
  default: void 0
17773
17781
  },
17774
17782
  /**
17775
- * # 是否显示导出按钮
17783
+ * ### 是否显示导出按钮
17776
17784
  * 如传入 则需要再传入 `:service`
17777
17785
  */
17778
17786
  showExport: {
@@ -17780,21 +17788,21 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17780
17788
  default: false
17781
17789
  },
17782
17790
  /**
17783
- * # 接口服务类
17791
+ * ### 接口服务类
17784
17792
  */
17785
17793
  service: {
17786
17794
  type: Function,
17787
17795
  required: void 0
17788
17796
  },
17789
17797
  /**
17790
- * # 默认的筛选器
17798
+ * ### 默认的筛选器
17791
17799
  */
17792
17800
  defaultFilter: {
17793
17801
  type: Object,
17794
17802
  default: void 0
17795
17803
  },
17796
17804
  /**
17797
- * # 搜索的对象
17805
+ * ### 搜索的对象
17798
17806
  * 则覆盖自动生成的条件
17799
17807
  */
17800
17808
  searchParams: {
@@ -17802,7 +17810,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17802
17810
  default: void 0
17803
17811
  },
17804
17812
  /**
17805
- * # 导入接口地址
17813
+ * ### 导入接口地址
17806
17814
  * 默认按传入的 `service` 自动生成
17807
17815
  */
17808
17816
  importUrl: {
@@ -17810,7 +17818,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17810
17818
  default: void 0
17811
17819
  },
17812
17820
  /**
17813
- * # 导入模板下载地址
17821
+ * ### 导入模板下载地址
17814
17822
  * 默认按传入的 `service` 自动生成
17815
17823
  */
17816
17824
  importTemplateUrl: {
@@ -17818,84 +17826,84 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
17818
17826
  default: void 0
17819
17827
  },
17820
17828
  /**
17821
- * # 导入的文件实体类
17829
+ * ### 导入的文件实体类
17822
17830
  */
17823
17831
  fileEntity: {
17824
17832
  type: Function,
17825
17833
  default: void 0
17826
17834
  },
17827
17835
  /**
17828
- * # 自定义添加事件
17836
+ * ### 自定义添加事件
17829
17837
  */
17830
17838
  onAdd: {
17831
17839
  type: Function,
17832
17840
  default: void 0
17833
17841
  },
17834
17842
  /**
17835
- * # 自定义详情事件
17843
+ * ### 自定义详情事件
17836
17844
  */
17837
17845
  onDetail: {
17838
17846
  type: Function,
17839
17847
  default: void 0
17840
17848
  },
17841
17849
  /**
17842
- * # 自定义删除事件
17850
+ * ### 自定义删除事件
17843
17851
  */
17844
17852
  onDelete: {
17845
17853
  type: Function,
17846
17854
  default: void 0
17847
17855
  },
17848
17856
  /**
17849
- * # 自定义编辑事件
17857
+ * ### 自定义编辑事件
17850
17858
  */
17851
17859
  onEdit: {
17852
17860
  type: Function,
17853
17861
  default: void 0
17854
17862
  },
17855
17863
  /**
17856
- * # 选择变更事件
17864
+ * ### 选择变更事件
17857
17865
  */
17858
17866
  onSelected: {
17859
17867
  type: Function,
17860
17868
  default: void 0
17861
17869
  },
17862
17870
  /**
17863
- * # 行添加事件
17871
+ * ### 行添加事件
17864
17872
  */
17865
17873
  onAddRow: {
17866
17874
  type: Function,
17867
17875
  default: void 0
17868
17876
  },
17869
17877
  /**
17870
- * # 排序变更事件
17878
+ * ### 排序变更事件
17871
17879
  */
17872
17880
  onSortChange: {
17873
17881
  type: Function,
17874
17882
  default: void 0
17875
17883
  },
17876
17884
  /**
17877
- * # 禁用事件
17885
+ * ### 禁用事件
17878
17886
  */
17879
17887
  onDisable: {
17880
17888
  type: Function,
17881
17889
  default: void 0
17882
17890
  },
17883
17891
  /**
17884
- * # 启用事件
17892
+ * ### 启用事件
17885
17893
  */
17886
17894
  onEnable: {
17887
17895
  type: Function,
17888
17896
  default: void 0
17889
17897
  },
17890
17898
  /**
17891
- * # 搜索事件
17899
+ * ### 搜索事件
17892
17900
  */
17893
17901
  onSearch: {
17894
17902
  type: Function,
17895
17903
  default: void 0
17896
17904
  },
17897
17905
  /**
17898
- * # 是否树形
17906
+ * ### 是否树形
17899
17907
  */
17900
17908
  isTree: {
17901
17909
  type: Boolean,
@@ -18599,77 +18607,77 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
18599
18607
  __name: "TreeBox",
18600
18608
  props: {
18601
18609
  /**
18602
- * # 隐藏树
18610
+ * ### 隐藏树
18603
18611
  */
18604
18612
  hideTree: {
18605
18613
  type: Boolean,
18606
18614
  default: false
18607
18615
  },
18608
18616
  /**
18609
- * # 是否默认展开全部
18617
+ * ### 是否默认展开全部
18610
18618
  */
18611
18619
  defaultExpandAll: {
18612
18620
  type: Boolean,
18613
18621
  default: true
18614
18622
  },
18615
18623
  /**
18616
- * # 是否显示树搜索
18624
+ * ### 是否显示树搜索
18617
18625
  */
18618
18626
  searchable: {
18619
18627
  type: Boolean,
18620
18628
  default: false
18621
18629
  },
18622
18630
  /**
18623
- * # 树搜索提示文案
18631
+ * ### 树搜索提示文案
18624
18632
  */
18625
18633
  placeholder: {
18626
18634
  type: String,
18627
18635
  default: "搜索..."
18628
18636
  },
18629
18637
  /**
18630
- * # 左侧树的数据
18638
+ * ### 左侧树的数据
18631
18639
  */
18632
18640
  treeData: {
18633
18641
  type: Array,
18634
18642
  required: true
18635
18643
  },
18636
18644
  /**
18637
- * # 是否隐藏图标
18645
+ * ### 是否隐藏图标
18638
18646
  */
18639
18647
  hideIcon: {
18640
18648
  type: Boolean,
18641
18649
  default: true
18642
18650
  },
18643
18651
  /**
18644
- * # 树是否正在加载
18652
+ * ### 树是否正在加载
18645
18653
  */
18646
18654
  isTreeLoading: {
18647
18655
  type: Boolean,
18648
18656
  default: false
18649
18657
  },
18650
18658
  /**
18651
- * # 标题
18659
+ * ### 标题
18652
18660
  */
18653
18661
  title: {
18654
18662
  type: String,
18655
18663
  default: ""
18656
18664
  },
18657
18665
  /**
18658
- * # 左侧树的宽度
18666
+ * ### 左侧树的宽度
18659
18667
  */
18660
18668
  width: {
18661
18669
  type: Number,
18662
18670
  default: 300
18663
18671
  },
18664
18672
  /**
18665
- * # 是否可折叠
18673
+ * ### 是否可折叠
18666
18674
  */
18667
18675
  collapse: {
18668
18676
  type: Boolean,
18669
18677
  default: false
18670
18678
  },
18671
18679
  /**
18672
- * # 默认折叠状态
18680
+ * ### 默认折叠状态
18673
18681
  */
18674
18682
  defaultCollapse: {
18675
18683
  type: Boolean,
@@ -18780,21 +18788,21 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
18780
18788
  __name: "User",
18781
18789
  props: {
18782
18790
  /**
18783
- * # 用户信息
18791
+ * ### 用户信息
18784
18792
  */
18785
18793
  user: {
18786
18794
  type: Object,
18787
18795
  required: true
18788
18796
  },
18789
18797
  /**
18790
- * # 宽度
18798
+ * ### 宽度
18791
18799
  */
18792
18800
  width: {
18793
18801
  type: Number,
18794
18802
  default: 400
18795
18803
  },
18796
18804
  /**
18797
- * # 宽度
18805
+ * ### 宽度
18798
18806
  */
18799
18807
  height: {
18800
18808
  type: Number,
@@ -18882,7 +18890,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
18882
18890
  };
18883
18891
  }
18884
18892
  });
18885
- const User = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-afb12987"]]);
18893
+ const User = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-245c0051"]]);
18886
18894
  class WebEnum extends Enum {
18887
18895
  constructor() {
18888
18896
  super(...arguments);
@@ -18906,7 +18914,13 @@ class WebEnum extends Enum {
18906
18914
  }
18907
18915
  const _DisableEnum = class _DisableEnum extends WebEnum {
18908
18916
  };
18917
+ /**
18918
+ * ### 禁用
18919
+ */
18909
18920
  __publicField(_DisableEnum, "DISABLED", new _DisableEnum(true, "禁用").setColor(WebColor.DANGER));
18921
+ /**
18922
+ * ### 启用
18923
+ */
18910
18924
  __publicField(_DisableEnum, "ENABLE", new _DisableEnum(false, "启用").setColor(WebColor.SUCCESS));
18911
18925
  let DisableEnum = _DisableEnum;
18912
18926
  function useDetail(props, ServiceClass, option = {}) {