star-horse-lowcode 2.7.58 → 2.7.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.es.js CHANGED
@@ -62779,6 +62779,27 @@ const isPlainObject = (val) => {
62779
62779
  return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(toStringTag in val) && !(iterator in val);
62780
62780
  };
62781
62781
 
62782
+ /**
62783
+ * Determine if a value is an empty object (safely handles Buffers)
62784
+ *
62785
+ * @param {*} val The value to test
62786
+ *
62787
+ * @returns {boolean} True if value is an empty object, otherwise false
62788
+ */
62789
+ const isEmptyObject = (val) => {
62790
+ // Early return for non-objects or Buffers to prevent RangeError
62791
+ if (!isObject$1(val) || isBuffer(val)) {
62792
+ return false;
62793
+ }
62794
+
62795
+ try {
62796
+ return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype;
62797
+ } catch (e) {
62798
+ // Fallback for any other objects that might cause RangeError with Object.keys()
62799
+ return false;
62800
+ }
62801
+ };
62802
+
62782
62803
  /**
62783
62804
  * Determine if a value is a Date
62784
62805
  *
@@ -62901,6 +62922,11 @@ function forEach(obj, fn, {allOwnKeys = false} = {}) {
62901
62922
  fn.call(null, obj[i], i, obj);
62902
62923
  }
62903
62924
  } else {
62925
+ // Buffer check
62926
+ if (isBuffer(obj)) {
62927
+ return;
62928
+ }
62929
+
62904
62930
  // Iterate over object keys
62905
62931
  const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
62906
62932
  const len = keys.length;
@@ -62914,6 +62940,10 @@ function forEach(obj, fn, {allOwnKeys = false} = {}) {
62914
62940
  }
62915
62941
 
62916
62942
  function findKey(obj, key) {
62943
+ if (isBuffer(obj)){
62944
+ return null;
62945
+ }
62946
+
62917
62947
  key = key.toLowerCase();
62918
62948
  const keys = Object.keys(obj);
62919
62949
  let i = keys.length;
@@ -63267,6 +63297,11 @@ const toJSONObject = (obj) => {
63267
63297
  return;
63268
63298
  }
63269
63299
 
63300
+ //Buffer check
63301
+ if (isBuffer(source)) {
63302
+ return source;
63303
+ }
63304
+
63270
63305
  if(!('toJSON' in source)) {
63271
63306
  stack[i] = source;
63272
63307
  const target = isArray(source) ? [] : {};
@@ -63338,6 +63373,7 @@ const utils$2 = {
63338
63373
  isBoolean,
63339
63374
  isObject: isObject$1,
63340
63375
  isPlainObject,
63376
+ isEmptyObject,
63341
63377
  isReadableStream,
63342
63378
  isRequest,
63343
63379
  isResponse,
@@ -63967,7 +64003,7 @@ const platform = {
63967
64003
  };
63968
64004
 
63969
64005
  function toURLEncodedForm(data, options) {
63970
- return toFormData$1(data, new platform.classes.URLSearchParams(), Object.assign({
64006
+ return toFormData$1(data, new platform.classes.URLSearchParams(), {
63971
64007
  visitor: function(value, key, path, helpers) {
63972
64008
  if (platform.isNode && utils$2.isBuffer(value)) {
63973
64009
  this.append(key, value.toString('base64'));
@@ -63975,8 +64011,9 @@ function toURLEncodedForm(data, options) {
63975
64011
  }
63976
64012
 
63977
64013
  return helpers.defaultVisitor.apply(this, arguments);
63978
- }
63979
- }, options));
64014
+ },
64015
+ ...options
64016
+ });
63980
64017
  }
63981
64018
 
63982
64019
  /**
@@ -64725,7 +64762,7 @@ function throttle$1(fn, freq) {
64725
64762
  clearTimeout(timer);
64726
64763
  timer = null;
64727
64764
  }
64728
- fn.apply(null, args);
64765
+ fn(...args);
64729
64766
  };
64730
64767
 
64731
64768
  const throttled = (...args) => {
@@ -64981,7 +65018,7 @@ function mergeConfig$1(config1, config2) {
64981
65018
  headers: (a, b , prop) => mergeDeepProperties(headersToObject(a), headersToObject(b),prop, true)
64982
65019
  };
64983
65020
 
64984
- utils$2.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
65021
+ utils$2.forEach(Object.keys({...config1, ...config2}), function computeConfigValue(prop) {
64985
65022
  const merge = mergeMap[prop] || mergeDeepProperties;
64986
65023
  const configValue = merge(config1[prop], config2[prop], prop);
64987
65024
  (utils$2.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
@@ -65720,7 +65757,7 @@ function dispatchRequest(config) {
65720
65757
  });
65721
65758
  }
65722
65759
 
65723
- const VERSION$1 = "1.10.0";
65760
+ const VERSION$1 = "1.11.0";
65724
65761
 
65725
65762
  const validators$1 = {};
65726
65763
 
@@ -65959,8 +65996,8 @@ let Axios$1 = class Axios {
65959
65996
 
65960
65997
  if (!synchronousRequestInterceptors) {
65961
65998
  const chain = [dispatchRequest.bind(this), undefined];
65962
- chain.unshift.apply(chain, requestInterceptorChain);
65963
- chain.push.apply(chain, responseInterceptorChain);
65999
+ chain.unshift(...requestInterceptorChain);
66000
+ chain.push(...responseInterceptorChain);
65964
66001
  len = chain.length;
65965
66002
 
65966
66003
  promise = Promise.resolve(config);
@@ -66373,14 +66410,14 @@ const {
66373
66410
  } = axios;
66374
66411
 
66375
66412
  const userStore = useUserInfoStore(piniaInstance);
66376
- const service = axios.create({
66413
+ const starHorseAxios = axios.create({
66377
66414
  baseURL: "/",
66378
66415
  timeout: 5e4,
66379
66416
  headers: {
66380
66417
  "Content-Type": "application/json; charset=utf-8"
66381
66418
  }
66382
66419
  });
66383
- service.interceptors.request.use(
66420
+ starHorseAxios.interceptors.request.use(
66384
66421
  (config) => {
66385
66422
  const token = getToken();
66386
66423
  const fingerToken = getFingerId();
@@ -66408,7 +66445,7 @@ function getMenuId() {
66408
66445
  const forceLoginOut = () => {
66409
66446
  userStore.showLoginDialog();
66410
66447
  };
66411
- service.interceptors.response.use(
66448
+ starHorseAxios.interceptors.response.use(
66412
66449
  (response) => {
66413
66450
  const code = response.data?.code;
66414
66451
  if (code == 401) {
@@ -66430,9 +66467,12 @@ service.interceptors.response.use(
66430
66467
  }
66431
66468
  }
66432
66469
  );
66470
+ function getAxiosInstance() {
66471
+ return window.__hostAxios__ ?? starHorseAxios;
66472
+ }
66433
66473
  function download(url, param) {
66434
66474
  return new Promise((resolve, reject) => {
66435
- service.post(url, param, { responseType: "blob" }).then((res) => {
66475
+ getAxiosInstance().post(url, param, { responseType: "blob" }).then((res) => {
66436
66476
  downloadData(
66437
66477
  res.data,
66438
66478
  decodeURI(res.headers["content-disposition"]?.split("=")[1])
@@ -66458,31 +66498,31 @@ function downloadData(data, name) {
66458
66498
  async function blobData(url, method = "post") {
66459
66499
  let redata = null;
66460
66500
  if (method == "get") {
66461
- await service.get(url, { responseType: "blob" }).then((res) => {
66501
+ await getAxiosInstance().get(url, { responseType: "blob" }).then((res) => {
66462
66502
  redata = new Blob([res.data]);
66463
66503
  });
66464
66504
  } else {
66465
- await service.post(url, [], { responseType: "blob" }).then((res) => {
66505
+ await getAxiosInstance().post(url, [], { responseType: "blob" }).then((res) => {
66466
66506
  redata = new Blob([res.data]);
66467
66507
  });
66468
66508
  }
66469
66509
  return redata;
66470
66510
  }
66471
66511
  function postRequest(url, data) {
66472
- return service.post(url, data);
66512
+ return getAxiosInstance().post(url, data);
66473
66513
  }
66474
66514
  function getRequest(url) {
66475
- return service.get(url);
66515
+ return getAxiosInstance().get(url);
66476
66516
  }
66477
66517
  function httpRequest(url, method, data) {
66478
- return service.request({
66518
+ return getAxiosInstance().request({
66479
66519
  url,
66480
66520
  method,
66481
66521
  data
66482
66522
  });
66483
66523
  }
66484
66524
  function uploadRequest(url, data) {
66485
- return service.post(url, data, {
66525
+ return getAxiosInstance().post(url, data, {
66486
66526
  headers: { "Content-Type": "multipart/form-data" }
66487
66527
  });
66488
66528
  }
@@ -69341,7 +69381,7 @@ const _sfc_main$1O = /* @__PURE__ */ defineComponent({
69341
69381
  "icon-class": "save",
69342
69382
  style: { "color": "var(--star-horse-white)" }
69343
69383
  }),
69344
- _cache[0] || (_cache[0] = createTextVNode(" 提交 "))
69384
+ _cache[0] || (_cache[0] = createTextVNode(" 提交 ", -1))
69345
69385
  ]),
69346
69386
  _: 1,
69347
69387
  __: [0]
@@ -69352,7 +69392,7 @@ const _sfc_main$1O = /* @__PURE__ */ defineComponent({
69352
69392
  }, {
69353
69393
  default: withCtx(() => [
69354
69394
  createVNode(_component_star_horse_icon, { "icon-class": "undo" }),
69355
- _cache[1] || (_cache[1] = createTextVNode(" 重置 "))
69395
+ _cache[1] || (_cache[1] = createTextVNode(" 重置 ", -1))
69356
69396
  ]),
69357
69397
  _: 1,
69358
69398
  __: [1]
@@ -75815,7 +75855,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
75815
75855
  }, {
75816
75856
  tip: withCtx(() => [
75817
75857
  createElementVNode("div", _hoisted_1$N, [
75818
- _cache[3] || (_cache[3] = createTextVNode(" 只能上传 xls/xlsx 文件类型 ")),
75858
+ _cache[3] || (_cache[3] = createTextVNode(" 只能上传 xls/xlsx 文件类型 ", -1)),
75819
75859
  __props.importInfo?.downloadTemplateUrl ? (openBlock(), createBlock(_component_el_button, {
75820
75860
  key: 0,
75821
75861
  onClick: downloadTemplate,
@@ -75831,7 +75871,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
75831
75871
  }),
75832
75872
  createVNode(_component_el_tooltip, { content: "下载模板" }, {
75833
75873
  default: withCtx(() => _cache[2] || (_cache[2] = [
75834
- createTextVNode("下载模板")
75874
+ createTextVNode("下载模板", -1)
75835
75875
  ])),
75836
75876
  _: 1,
75837
75877
  __: [2]
@@ -76678,7 +76718,7 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76678
76718
  "icon-class": "save",
76679
76719
  style: { "color": "var(--star-horse-white)" }
76680
76720
  }),
76681
- _cache[1] || (_cache[1] = createTextVNode(" 提交 "))
76721
+ _cache[1] || (_cache[1] = createTextVNode(" 提交 ", -1))
76682
76722
  ]),
76683
76723
  _: 1,
76684
76724
  __: [1]
@@ -76689,7 +76729,7 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76689
76729
  }, {
76690
76730
  default: withCtx(() => [
76691
76731
  createVNode(_component_star_horse_icon, { "icon-class": "undo" }),
76692
- _cache[2] || (_cache[2] = createTextVNode(" 重置 "))
76732
+ _cache[2] || (_cache[2] = createTextVNode(" 重置 ", -1))
76693
76733
  ]),
76694
76734
  _: 1,
76695
76735
  __: [2]
@@ -122251,7 +122291,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122251
122291
  ]),
122252
122292
  _: 2
122253
122293
  }, 1032, ["size", "modelValue", "onUpdate:modelValue"]),
122254
- _cache[3] || (_cache[3] = createTextVNode("   "))
122294
+ _cache[3] || (_cache[3] = createTextVNode("   ", -1))
122255
122295
  ], 64)) : createCommentVNode("", true),
122256
122296
  createVNode(_component_star_horse_item, {
122257
122297
  "data-form": unref(searchForm),
@@ -122292,7 +122332,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122292
122332
  ]),
122293
122333
  _: 2
122294
122334
  }, 1032, ["size", "modelValue", "onUpdate:modelValue"]),
122295
- _cache[4] || (_cache[4] = createTextVNode("   "))
122335
+ _cache[4] || (_cache[4] = createTextVNode("   ", -1))
122296
122336
  ], 64)) : createCommentVNode("", true),
122297
122337
  createVNode(_component_star_horse_item, {
122298
122338
  "data-form": unref(searchForm),
@@ -122320,7 +122360,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122320
122360
  size: "16px",
122321
122361
  color: "var(--star-horse-white)"
122322
122362
  }),
122323
- _cache[5] || (_cache[5] = createTextVNode(" 查询 "))
122363
+ _cache[5] || (_cache[5] = createTextVNode(" 查询 ", -1))
122324
122364
  ]),
122325
122365
  _: 1,
122326
122366
  __: [5]
@@ -122336,7 +122376,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122336
122376
  size: "16px",
122337
122377
  color: "var(--star-horse-disable)"
122338
122378
  }),
122339
- _cache[6] || (_cache[6] = createTextVNode(" 重置 "))
122379
+ _cache[6] || (_cache[6] = createTextVNode(" 重置 ", -1))
122340
122380
  ]),
122341
122381
  _: 1,
122342
122382
  __: [6]
@@ -133149,7 +133189,7 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133149
133189
  });
133150
133190
  };
133151
133191
  const cellClick = (row, column) => {
133152
- if (!props.cellEditable || props.item["disabled"] || props.item["editDisabled"]) {
133192
+ if (!props.cellEditable || props.item.preps?.["disabled"] || props.item.preps?.["editDisabled"]) {
133153
133193
  return;
133154
133194
  }
133155
133195
  row["isSelected"] = true;
@@ -133238,12 +133278,13 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133238
133278
  reference: withCtx(() => [
133239
133279
  createVNode(_component_star_horse_item, {
133240
133280
  dataForm: scope.row,
133281
+ "onUpdate:dataForm": ($event) => scope.row = $event,
133241
133282
  item: __props.item,
133242
133283
  column: scope.column,
133243
133284
  batchName: __props.batchName,
133244
133285
  bareFlag: true,
133245
133286
  compSize: __props.compSize
133246
- }, null, 8, ["dataForm", "item", "column", "batchName", "compSize"])
133287
+ }, null, 8, ["dataForm", "onUpdate:dataForm", "item", "column", "batchName", "compSize"])
133247
133288
  ]),
133248
133289
  default: withCtx(() => [
133249
133290
  compInfo.value.name ? (openBlock(), createBlock(resolveDynamicComponent(unref(createComponent)(compInfo.value)), {
@@ -133253,17 +133294,15 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133253
133294
  }, null, 8, ["item", "data"])) : createCommentVNode("", true)
133254
133295
  ]),
133255
133296
  _: 2
133256
- }, 1032, ["placement"])) : (openBlock(), createBlock(_component_star_horse_item, mergeProps({
133297
+ }, 1032, ["placement"])) : (openBlock(), createBlock(_component_star_horse_item, {
133257
133298
  key: 1,
133258
133299
  dataForm: scope.row,
133300
+ "onUpdate:dataForm": ($event) => scope.row = $event,
133259
133301
  item: __props.item,
133260
133302
  column: scope.column,
133261
133303
  batchName: __props.batchName,
133262
- compSize: __props.compSize,
133263
- style: { ...__props.item.preps.styles }
133264
- }, {
133265
- [toHandlerKey(__props.item.preps?.compAction)]: ($event) => __props.item.preps?.compFunc(scope.row)
133266
- }), null, 16, ["dataForm", "item", "column", "batchName", "compSize", "style"]))
133304
+ compSize: __props.compSize
133305
+ }, null, 8, ["dataForm", "onUpdate:dataForm", "item", "column", "batchName", "compSize"]))
133267
133306
  ], 64)) : prototypeCheck(__props.item) ? (openBlock(), createBlock(resolveDynamicComponent(
133268
133307
  (__props.item.listPrototypeDisplay === true || __props.item.preps?.listPrototypeDisplay === true ? __props.item.type || "input" : __props.item.listPrototypeDisplay || __props.item.preps?.listPrototypeDisplay) + "-item"
133269
133308
  ), {
@@ -133273,9 +133312,10 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133273
133312
  field: createPreps(__props.item),
133274
133313
  formData: scope.row
133275
133314
  }, null, 8, ["callBack", "field", "formData"])) : (openBlock(), createElementBlock(Fragment, { key: 2 }, [
133276
- scope.row.isSelected && (scope.row.selectName == __props.item.hideName || scope.row.selectName == __props.item.fieldName) ? (openBlock(), createBlock(_component_star_horse_item, {
133315
+ scope.row.isSelected && scope.row.selectName == scope.column.property ? (openBlock(), createBlock(_component_star_horse_item, {
133277
133316
  key: 0,
133278
133317
  dataForm: scope.row,
133318
+ "onUpdate:dataForm": ($event) => scope.row = $event,
133279
133319
  item: __props.item,
133280
133320
  column: scope.column,
133281
133321
  batchName: __props.batchName,
@@ -133283,7 +133323,7 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133283
133323
  compSize: __props.compSize,
133284
133324
  onBlur: blurEvent,
133285
133325
  source: __props.source
133286
- }, null, 8, ["dataForm", "item", "column", "batchName", "compSize", "source"])) : (openBlock(), createElementBlock("p", {
133326
+ }, null, 8, ["dataForm", "onUpdate:dataForm", "item", "column", "batchName", "compSize", "source"])) : (openBlock(), createElementBlock("p", {
133287
133327
  key: 1,
133288
133328
  onClick: ($event) => cellClick(scope.row, scope.column)
133289
133329
  }, toDisplayString(currentDataFormat(scope)), 9, _hoisted_1$K))
@@ -133297,7 +133337,7 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133297
133337
 
133298
133338
  /* unplugin-vue-components disabled */
133299
133339
 
133300
- const __unplugin_components_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["__scopeId", "data-v-f034861b"]]);
133340
+ const __unplugin_components_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["__scopeId", "data-v-558161e3"]]);
133301
133341
 
133302
133342
  const StarHorseTableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
133303
133343
  __proto__: null,
@@ -135366,7 +135406,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135366
135406
  onCloseAction: _cache[0] || (_cache[0] = ($event) => exportOperationVisible.value = false)
135367
135407
  }, {
135368
135408
  default: withCtx(() => _cache[7] || (_cache[7] = [
135369
- createTextVNode(" 功能开发中,现在点击提交按钮导出所有数据 ")
135409
+ createTextVNode(" 功能开发中,现在点击提交按钮导出所有数据 ", -1)
135370
135410
  ])),
135371
135411
  _: 1,
135372
135412
  __: [7]
@@ -136262,21 +136302,21 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
136262
136302
  command: "add"
136263
136303
  }, {
136264
136304
  default: withCtx(() => _cache[4] || (_cache[4] = [
136265
- createTextVNode("添加数据")
136305
+ createTextVNode("添加数据", -1)
136266
136306
  ])),
136267
136307
  _: 1,
136268
136308
  __: [4]
136269
136309
  })) : createCommentVNode("", true),
136270
136310
  createVNode(_component_el_dropdown_item, { command: "expand" }, {
136271
136311
  default: withCtx(() => _cache[5] || (_cache[5] = [
136272
- createTextVNode("展开全部")
136312
+ createTextVNode("展开全部", -1)
136273
136313
  ])),
136274
136314
  _: 1,
136275
136315
  __: [5]
136276
136316
  }),
136277
136317
  createVNode(_component_el_dropdown_item, { command: "collapse" }, {
136278
136318
  default: withCtx(() => _cache[6] || (_cache[6] = [
136279
- createTextVNode("折叠全部")
136319
+ createTextVNode("折叠全部", -1)
136280
136320
  ])),
136281
136321
  _: 1,
136282
136322
  __: [6]
@@ -136809,21 +136849,21 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136809
136849
  default: withCtx(() => [
136810
136850
  createVNode(_component_el_anchor_link, { href: `#container` }, {
136811
136851
  default: withCtx(() => _cache[0] || (_cache[0] = [
136812
- createTextVNode(" 容器 ")
136852
+ createTextVNode(" 容器 ", -1)
136813
136853
  ])),
136814
136854
  _: 1,
136815
136855
  __: [0]
136816
136856
  }),
136817
136857
  createVNode(_component_el_anchor_link, { href: `#basic` }, {
136818
136858
  default: withCtx(() => _cache[1] || (_cache[1] = [
136819
- createTextVNode(" 基础组件 ")
136859
+ createTextVNode(" 基础组件 ", -1)
136820
136860
  ])),
136821
136861
  _: 1,
136822
136862
  __: [1]
136823
136863
  }),
136824
136864
  createVNode(_component_el_anchor_link, { href: `#self` }, {
136825
136865
  default: withCtx(() => _cache[2] || (_cache[2] = [
136826
- createTextVNode(" 自定义组件 ")
136866
+ createTextVNode(" 自定义组件 ", -1)
136827
136867
  ])),
136828
136868
  _: 1,
136829
136869
  __: [2]
@@ -136841,7 +136881,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136841
136881
  default: withCtx(() => [
136842
136882
  createVNode(_component_el_divider, { "content-position": "left" }, {
136843
136883
  default: withCtx(() => _cache[3] || (_cache[3] = [
136844
- createTextVNode("容器")
136884
+ createTextVNode("容器", -1)
136845
136885
  ])),
136846
136886
  _: 1,
136847
136887
  __: [3]
@@ -136852,7 +136892,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136852
136892
  class: "field-item",
136853
136893
  onClick: ($event) => selectData(item)
136854
136894
  }, [
136855
- _cache[4] || (_cache[4] = createTextVNode("    ")),
136895
+ _cache[4] || (_cache[4] = createTextVNode("    ", -1)),
136856
136896
  createElementVNode("div", null, [
136857
136897
  createVNode(_component_star_horse_icon, {
136858
136898
  "icon-class": item.itemIcon
@@ -136864,7 +136904,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136864
136904
  ]),
136865
136905
  createVNode(_component_el_divider, { "content-position": "left" }, {
136866
136906
  default: withCtx(() => _cache[5] || (_cache[5] = [
136867
- createTextVNode("基础组件")
136907
+ createTextVNode("基础组件", -1)
136868
136908
  ])),
136869
136909
  _: 1,
136870
136910
  __: [5]
@@ -136875,7 +136915,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136875
136915
  class: "field-item",
136876
136916
  onClick: ($event) => selectData(item)
136877
136917
  }, [
136878
- _cache[6] || (_cache[6] = createTextVNode("    ")),
136918
+ _cache[6] || (_cache[6] = createTextVNode("    ", -1)),
136879
136919
  createElementVNode("div", null, [
136880
136920
  createVNode(_component_star_horse_icon, {
136881
136921
  "icon-class": item.itemIcon
@@ -136887,7 +136927,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136887
136927
  ]),
136888
136928
  createVNode(_component_el_divider, { "content-position": "left" }, {
136889
136929
  default: withCtx(() => _cache[7] || (_cache[7] = [
136890
- createTextVNode("自定义组件")
136930
+ createTextVNode("自定义组件", -1)
136891
136931
  ])),
136892
136932
  _: 1,
136893
136933
  __: [7]
@@ -136898,7 +136938,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136898
136938
  class: "field-item",
136899
136939
  onClick: ($event) => selectData(item)
136900
136940
  }, [
136901
- _cache[8] || (_cache[8] = createTextVNode("    ")),
136941
+ _cache[8] || (_cache[8] = createTextVNode("    ", -1)),
136902
136942
  createElementVNode("div", null, [
136903
136943
  createVNode(_component_star_horse_icon, {
136904
136944
  "icon-class": item.itemIcon
@@ -137177,7 +137217,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
137177
137217
  onClick: close
137178
137218
  }, {
137179
137219
  default: withCtx(() => _cache[3] || (_cache[3] = [
137180
- createTextVNode("确定")
137220
+ createTextVNode("确定", -1)
137181
137221
  ])),
137182
137222
  _: 1,
137183
137223
  __: [3]
@@ -138003,28 +138043,28 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138003
138043
  default: withCtx(() => [
138004
138044
  createVNode(_component_el_dropdown_item, { command: "insertLeftCol" }, {
138005
138045
  default: withCtx(() => _cache[2] || (_cache[2] = [
138006
- createTextVNode("左边插入列")
138046
+ createTextVNode("左边插入列", -1)
138007
138047
  ])),
138008
138048
  _: 1,
138009
138049
  __: [2]
138010
138050
  }),
138011
138051
  createVNode(_component_el_dropdown_item, { command: "insertRightCol" }, {
138012
138052
  default: withCtx(() => _cache[3] || (_cache[3] = [
138013
- createTextVNode("右边插入列")
138053
+ createTextVNode("右边插入列", -1)
138014
138054
  ])),
138015
138055
  _: 1,
138016
138056
  __: [3]
138017
138057
  }),
138018
138058
  createVNode(_component_el_dropdown_item, { command: "insertAboveRow" }, {
138019
138059
  default: withCtx(() => _cache[4] || (_cache[4] = [
138020
- createTextVNode("插入上方行")
138060
+ createTextVNode("插入上方行", -1)
138021
138061
  ])),
138022
138062
  _: 1,
138023
138063
  __: [4]
138024
138064
  }),
138025
138065
  createVNode(_component_el_dropdown_item, { command: "insertBelowRow" }, {
138026
138066
  default: withCtx(() => _cache[5] || (_cache[5] = [
138027
- createTextVNode("插入下方行")
138067
+ createTextVNode("插入下方行", -1)
138028
138068
  ])),
138029
138069
  _: 1,
138030
138070
  __: [5]
@@ -138035,7 +138075,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138035
138075
  divided: ""
138036
138076
  }, {
138037
138077
  default: withCtx(() => _cache[6] || (_cache[6] = [
138038
- createTextVNode("合并左边单元格 ")
138078
+ createTextVNode("合并左边单元格 ", -1)
138039
138079
  ])),
138040
138080
  _: 1,
138041
138081
  __: [6]
@@ -138045,7 +138085,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138045
138085
  disabled: unref(buttonControl).mergeRightColDisabled
138046
138086
  }, {
138047
138087
  default: withCtx(() => _cache[7] || (_cache[7] = [
138048
- createTextVNode("合并右单元格 ")
138088
+ createTextVNode("合并右单元格 ", -1)
138049
138089
  ])),
138050
138090
  _: 1,
138051
138091
  __: [7]
@@ -138055,7 +138095,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138055
138095
  disabled: unref(buttonControl).mergeWholeRowDisabled
138056
138096
  }, {
138057
138097
  default: withCtx(() => _cache[8] || (_cache[8] = [
138058
- createTextVNode("合并整行 ")
138098
+ createTextVNode("合并整行 ", -1)
138059
138099
  ])),
138060
138100
  _: 1,
138061
138101
  __: [8]
@@ -138066,7 +138106,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138066
138106
  divided: ""
138067
138107
  }, {
138068
138108
  default: withCtx(() => _cache[9] || (_cache[9] = [
138069
- createTextVNode("合并上边单元格 ")
138109
+ createTextVNode("合并上边单元格 ", -1)
138070
138110
  ])),
138071
138111
  _: 1,
138072
138112
  __: [9]
@@ -138076,7 +138116,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138076
138116
  disabled: unref(buttonControl).mergeBelowRowDisabled
138077
138117
  }, {
138078
138118
  default: withCtx(() => _cache[10] || (_cache[10] = [
138079
- createTextVNode("合并下边单元格 ")
138119
+ createTextVNode("合并下边单元格 ", -1)
138080
138120
  ])),
138081
138121
  _: 1,
138082
138122
  __: [10]
@@ -138086,7 +138126,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138086
138126
  disabled: unref(buttonControl).mergeWholeColDisabled
138087
138127
  }, {
138088
138128
  default: withCtx(() => _cache[11] || (_cache[11] = [
138089
- createTextVNode("合并整列 ")
138129
+ createTextVNode("合并整列 ", -1)
138090
138130
  ])),
138091
138131
  _: 1,
138092
138132
  __: [11]
@@ -138097,7 +138137,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138097
138137
  divided: ""
138098
138138
  }, {
138099
138139
  default: withCtx(() => _cache[12] || (_cache[12] = [
138100
- createTextVNode("撤销行合并 ")
138140
+ createTextVNode("撤销行合并 ", -1)
138101
138141
  ])),
138102
138142
  _: 1,
138103
138143
  __: [12]
@@ -138107,7 +138147,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138107
138147
  disabled: unref(buttonControl).undoMergeColDisabled
138108
138148
  }, {
138109
138149
  default: withCtx(() => _cache[13] || (_cache[13] = [
138110
- createTextVNode("撤销列合并 ")
138150
+ createTextVNode("撤销列合并 ", -1)
138111
138151
  ])),
138112
138152
  _: 1,
138113
138153
  __: [13]
@@ -138118,7 +138158,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138118
138158
  divided: ""
138119
138159
  }, {
138120
138160
  default: withCtx(() => _cache[14] || (_cache[14] = [
138121
- createTextVNode("删除整列 ")
138161
+ createTextVNode("删除整列 ", -1)
138122
138162
  ])),
138123
138163
  _: 1,
138124
138164
  __: [14]
@@ -138128,7 +138168,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138128
138168
  disabled: unref(buttonControl).deleteWholeRowDisabled
138129
138169
  }, {
138130
138170
  default: withCtx(() => _cache[15] || (_cache[15] = [
138131
- createTextVNode("删除整行 ")
138171
+ createTextVNode("删除整行 ", -1)
138132
138172
  ])),
138133
138173
  _: 1,
138134
138174
  __: [15]
@@ -138138,7 +138178,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
138138
138178
  divided: ""
138139
138179
  }, {
138140
138180
  default: withCtx(() => _cache[16] || (_cache[16] = [
138141
- createTextVNode("列设置")
138181
+ createTextVNode("列设置", -1)
138142
138182
  ])),
138143
138183
  _: 1,
138144
138184
  __: [16]
@@ -138730,7 +138770,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138730
138770
  onClick: close
138731
138771
  }, {
138732
138772
  default: withCtx(() => _cache[7] || (_cache[7] = [
138733
- createTextVNode("确定")
138773
+ createTextVNode("确定", -1)
138734
138774
  ])),
138735
138775
  _: 1,
138736
138776
  __: [7]
@@ -139071,13 +139111,15 @@ const initCompCallEvent = (props, emits, formData) => {
139071
139111
  const doInitCallEvent = (props, emits, formData) => {
139072
139112
  const events = Object.keys(props.field.actions || {});
139073
139113
  events?.forEach((event) => {
139074
- allAction(
139075
- props,
139076
- emits,
139077
- formData,
139078
- event,
139079
- true
139080
- );
139114
+ if (props.field.preps?.starHorseFieldSource != 5) {
139115
+ allAction(
139116
+ props,
139117
+ emits,
139118
+ formData,
139119
+ event,
139120
+ true
139121
+ );
139122
+ }
139081
139123
  });
139082
139124
  };
139083
139125
 
@@ -140505,7 +140547,7 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
140505
140547
  }, 1024);
140506
140548
  }), 128)) : (openBlock(), createBlock(_component_el_tag, { key: 1 }, {
140507
140549
  default: withCtx(() => _cache[0] || (_cache[0] = [
140508
- createTextVNode("计算结果中...")
140550
+ createTextVNode("计算结果中...", -1)
140509
140551
  ])),
140510
140552
  _: 1,
140511
140553
  __: [0]
@@ -140632,7 +140674,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
140632
140674
  border: ""
140633
140675
  }, {
140634
140676
  default: withCtx(() => _cache[9] || (_cache[9] = [
140635
- createTextVNode(" 秒,允许的通配符[, - * /]")
140677
+ createTextVNode(" 秒,允许的通配符[, - * /]", -1)
140636
140678
  ])),
140637
140679
  _: 1,
140638
140680
  __: [9]
@@ -140648,7 +140690,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
140648
140690
  border: ""
140649
140691
  }, {
140650
140692
  default: withCtx(() => _cache[10] || (_cache[10] = [
140651
- createTextVNode("周期")
140693
+ createTextVNode("周期", -1)
140652
140694
  ])),
140653
140695
  _: 1,
140654
140696
  __: [10]
@@ -140683,7 +140725,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
140683
140725
  border: ""
140684
140726
  }, {
140685
140727
  default: withCtx(() => _cache[14] || (_cache[14] = [
140686
- createTextVNode("循环")
140728
+ createTextVNode("循环", -1)
140687
140729
  ])),
140688
140730
  _: 1,
140689
140731
  __: [14]
@@ -140718,7 +140760,7 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
140718
140760
  border: ""
140719
140761
  }, {
140720
140762
  default: withCtx(() => _cache[18] || (_cache[18] = [
140721
- createTextVNode(" 指定")
140763
+ createTextVNode(" 指定", -1)
140722
140764
  ])),
140723
140765
  _: 1,
140724
140766
  __: [18]
@@ -140856,7 +140898,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
140856
140898
  border: ""
140857
140899
  }, {
140858
140900
  default: withCtx(() => _cache[9] || (_cache[9] = [
140859
- createTextVNode(" 分钟,允许的通配符[, - * /]")
140901
+ createTextVNode(" 分钟,允许的通配符[, - * /]", -1)
140860
140902
  ])),
140861
140903
  _: 1,
140862
140904
  __: [9]
@@ -140871,7 +140913,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
140871
140913
  border: ""
140872
140914
  }, {
140873
140915
  default: withCtx(() => _cache[10] || (_cache[10] = [
140874
- createTextVNode("周期")
140916
+ createTextVNode("周期", -1)
140875
140917
  ])),
140876
140918
  _: 1,
140877
140919
  __: [10]
@@ -140905,7 +140947,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
140905
140947
  border: ""
140906
140948
  }, {
140907
140949
  default: withCtx(() => _cache[14] || (_cache[14] = [
140908
- createTextVNode(" 循环")
140950
+ createTextVNode(" 循环", -1)
140909
140951
  ])),
140910
140952
  _: 1,
140911
140953
  __: [14]
@@ -140939,7 +140981,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
140939
140981
  border: ""
140940
140982
  }, {
140941
140983
  default: withCtx(() => _cache[18] || (_cache[18] = [
140942
- createTextVNode(" 指定")
140984
+ createTextVNode(" 指定", -1)
140943
140985
  ])),
140944
140986
  _: 1,
140945
140987
  __: [18]
@@ -141076,7 +141118,7 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
141076
141118
  border: ""
141077
141119
  }, {
141078
141120
  default: withCtx(() => _cache[9] || (_cache[9] = [
141079
- createTextVNode(" 小时,允许的通配符[, - * /]")
141121
+ createTextVNode(" 小时,允许的通配符[, - * /]", -1)
141080
141122
  ])),
141081
141123
  _: 1,
141082
141124
  __: [9]
@@ -141091,7 +141133,7 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
141091
141133
  border: ""
141092
141134
  }, {
141093
141135
  default: withCtx(() => _cache[10] || (_cache[10] = [
141094
- createTextVNode(" 周期")
141136
+ createTextVNode(" 周期", -1)
141095
141137
  ])),
141096
141138
  _: 1,
141097
141139
  __: [10]
@@ -141125,7 +141167,7 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
141125
141167
  border: ""
141126
141168
  }, {
141127
141169
  default: withCtx(() => _cache[14] || (_cache[14] = [
141128
- createTextVNode("循环")
141170
+ createTextVNode("循环", -1)
141129
141171
  ])),
141130
141172
  _: 1,
141131
141173
  __: [14]
@@ -141159,7 +141201,7 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
141159
141201
  border: ""
141160
141202
  }, {
141161
141203
  default: withCtx(() => _cache[18] || (_cache[18] = [
141162
- createTextVNode(" 指定")
141204
+ createTextVNode(" 指定", -1)
141163
141205
  ])),
141164
141206
  _: 1,
141165
141207
  __: [18]
@@ -141327,7 +141369,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141327
141369
  border: ""
141328
141370
  }, {
141329
141371
  default: withCtx(() => _cache[13] || (_cache[13] = [
141330
- createTextVNode(" 日,允许的通配符[, - * / L M]")
141372
+ createTextVNode(" 日,允许的通配符[, - * / L M]", -1)
141331
141373
  ])),
141332
141374
  _: 1,
141333
141375
  __: [13]
@@ -141342,7 +141384,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141342
141384
  border: ""
141343
141385
  }, {
141344
141386
  default: withCtx(() => _cache[14] || (_cache[14] = [
141345
- createTextVNode(" 不指定")
141387
+ createTextVNode(" 不指定", -1)
141346
141388
  ])),
141347
141389
  _: 1,
141348
141390
  __: [14]
@@ -141357,7 +141399,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141357
141399
  border: ""
141358
141400
  }, {
141359
141401
  default: withCtx(() => _cache[15] || (_cache[15] = [
141360
- createTextVNode(" 周期")
141402
+ createTextVNode(" 周期", -1)
141361
141403
  ])),
141362
141404
  _: 1,
141363
141405
  __: [15]
@@ -141391,7 +141433,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141391
141433
  border: ""
141392
141434
  }, {
141393
141435
  default: withCtx(() => _cache[19] || (_cache[19] = [
141394
- createTextVNode("循环")
141436
+ createTextVNode("循环", -1)
141395
141437
  ])),
141396
141438
  _: 1,
141397
141439
  __: [19]
@@ -141425,7 +141467,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141425
141467
  border: ""
141426
141468
  }, {
141427
141469
  default: withCtx(() => _cache[23] || (_cache[23] = [
141428
- createTextVNode("工作日")
141470
+ createTextVNode("工作日", -1)
141429
141471
  ])),
141430
141472
  _: 1,
141431
141473
  __: [23]
@@ -141450,7 +141492,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141450
141492
  border: ""
141451
141493
  }, {
141452
141494
  default: withCtx(() => _cache[26] || (_cache[26] = [
141453
- createTextVNode(" 本月最后一天")
141495
+ createTextVNode(" 本月最后一天", -1)
141454
141496
  ])),
141455
141497
  _: 1,
141456
141498
  __: [26]
@@ -141465,7 +141507,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
141465
141507
  border: ""
141466
141508
  }, {
141467
141509
  default: withCtx(() => _cache[27] || (_cache[27] = [
141468
- createTextVNode(" 指定")
141510
+ createTextVNode(" 指定", -1)
141469
141511
  ])),
141470
141512
  _: 1,
141471
141513
  __: [27]
@@ -141602,7 +141644,7 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
141602
141644
  border: ""
141603
141645
  }, {
141604
141646
  default: withCtx(() => _cache[9] || (_cache[9] = [
141605
- createTextVNode(" 月,允许的通配符[, - * /]")
141647
+ createTextVNode(" 月,允许的通配符[, - * /]", -1)
141606
141648
  ])),
141607
141649
  _: 1,
141608
141650
  __: [9]
@@ -141617,7 +141659,7 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
141617
141659
  label: 2
141618
141660
  }, {
141619
141661
  default: withCtx(() => _cache[10] || (_cache[10] = [
141620
- createTextVNode(" 周期")
141662
+ createTextVNode(" 周期", -1)
141621
141663
  ])),
141622
141664
  _: 1,
141623
141665
  __: [10]
@@ -141651,7 +141693,7 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
141651
141693
  border: ""
141652
141694
  }, {
141653
141695
  default: withCtx(() => _cache[14] || (_cache[14] = [
141654
- createTextVNode("循环")
141696
+ createTextVNode("循环", -1)
141655
141697
  ])),
141656
141698
  _: 1,
141657
141699
  __: [14]
@@ -141685,7 +141727,7 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
141685
141727
  border: ""
141686
141728
  }, {
141687
141729
  default: withCtx(() => _cache[18] || (_cache[18] = [
141688
- createTextVNode(" 指定")
141730
+ createTextVNode(" 指定", -1)
141689
141731
  ])),
141690
141732
  _: 1,
141691
141733
  __: [18]
@@ -141847,7 +141889,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141847
141889
  border: ""
141848
141890
  }, {
141849
141891
  default: withCtx(() => _cache[12] || (_cache[12] = [
141850
- createTextVNode(" 周,允许的通配符[, - * / L #]")
141892
+ createTextVNode(" 周,允许的通配符[, - * / L #]", -1)
141851
141893
  ])),
141852
141894
  _: 1,
141853
141895
  __: [12]
@@ -141862,7 +141904,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141862
141904
  border: ""
141863
141905
  }, {
141864
141906
  default: withCtx(() => _cache[13] || (_cache[13] = [
141865
- createTextVNode(" 不指定")
141907
+ createTextVNode(" 不指定", -1)
141866
141908
  ])),
141867
141909
  _: 1,
141868
141910
  __: [13]
@@ -141877,7 +141919,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141877
141919
  border: ""
141878
141920
  }, {
141879
141921
  default: withCtx(() => _cache[14] || (_cache[14] = [
141880
- createTextVNode(" 周期")
141922
+ createTextVNode(" 周期", -1)
141881
141923
  ])),
141882
141924
  _: 1,
141883
141925
  __: [14]
@@ -141910,7 +141952,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141910
141952
  border: ""
141911
141953
  }, {
141912
141954
  default: withCtx(() => _cache[17] || (_cache[17] = [
141913
- createTextVNode(" 循环")
141955
+ createTextVNode(" 循环", -1)
141914
141956
  ])),
141915
141957
  _: 1,
141916
141958
  __: [17]
@@ -141943,7 +141985,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141943
141985
  border: ""
141944
141986
  }, {
141945
141987
  default: withCtx(() => _cache[20] || (_cache[20] = [
141946
- createTextVNode("本月最后一个")
141988
+ createTextVNode("本月最后一个", -1)
141947
141989
  ])),
141948
141990
  _: 1,
141949
141991
  __: [20]
@@ -141967,7 +142009,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141967
142009
  border: ""
141968
142010
  }, {
141969
142011
  default: withCtx(() => _cache[22] || (_cache[22] = [
141970
- createTextVNode(" 指定")
142012
+ createTextVNode(" 指定", -1)
141971
142013
  ])),
141972
142014
  _: 1,
141973
142015
  __: [22]
@@ -142124,7 +142166,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
142124
142166
  border: ""
142125
142167
  }, {
142126
142168
  default: withCtx(() => _cache[10] || (_cache[10] = [
142127
- createTextVNode(" 不填,允许的通配符[, - * /]")
142169
+ createTextVNode(" 不填,允许的通配符[, - * /]", -1)
142128
142170
  ])),
142129
142171
  _: 1,
142130
142172
  __: [10]
@@ -142139,7 +142181,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
142139
142181
  border: ""
142140
142182
  }, {
142141
142183
  default: withCtx(() => _cache[11] || (_cache[11] = [
142142
- createTextVNode(" 每年")
142184
+ createTextVNode(" 每年", -1)
142143
142185
  ])),
142144
142186
  _: 1,
142145
142187
  __: [11]
@@ -142154,7 +142196,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
142154
142196
  border: ""
142155
142197
  }, {
142156
142198
  default: withCtx(() => _cache[12] || (_cache[12] = [
142157
- createTextVNode("周期")
142199
+ createTextVNode("周期", -1)
142158
142200
  ])),
142159
142201
  _: 1,
142160
142202
  __: [12]
@@ -142185,7 +142227,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
142185
142227
  border: ""
142186
142228
  }, {
142187
142229
  default: withCtx(() => _cache[15] || (_cache[15] = [
142188
- createTextVNode("循环")
142230
+ createTextVNode("循环", -1)
142189
142231
  ])),
142190
142232
  _: 1,
142191
142233
  __: [15]
@@ -142217,7 +142259,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
142217
142259
  border: ""
142218
142260
  }, {
142219
142261
  default: withCtx(() => _cache[19] || (_cache[19] = [
142220
- createTextVNode(" 指定")
142262
+ createTextVNode(" 指定", -1)
142221
142263
  ])),
142222
142264
  _: 1,
142223
142265
  __: [19]
@@ -143013,7 +143055,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
143013
143055
  parentField: __props.parentField
143014
143056
  }, {
143015
143057
  default: withCtx(() => _cache[0] || (_cache[0] = [
143016
- createTextVNode(" 该组件未实现 ")
143058
+ createTextVNode(" 该组件未实现 ", -1)
143017
143059
  ])),
143018
143060
  _: 1,
143019
143061
  __: [0]
@@ -160948,7 +160990,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
160948
160990
  createVNode(_component_el_tooltip, { content: "上传图片" }, {
160949
160991
  default: withCtx(() => [
160950
160992
  createVNode(_component_star_horse_icon, { "icon-class": "upload" }),
160951
- _cache[1] || (_cache[1] = createTextVNode(" 上传图片 "))
160993
+ _cache[1] || (_cache[1] = createTextVNode(" 上传图片 ", -1))
160952
160994
  ]),
160953
160995
  _: 1,
160954
160996
  __: [1]
@@ -163306,7 +163348,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
163306
163348
 
163307
163349
  /* unplugin-vue-components disabled */
163308
163350
 
163309
- const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-b772def2"]]);
163351
+ const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-4da2e119"]]);
163310
163352
 
163311
163353
  const signatureItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163312
163354
  __proto__: null,
@@ -164195,7 +164237,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
164195
164237
  parentField: __props.parentField
164196
164238
  }, {
164197
164239
  default: withCtx(() => _cache[0] || (_cache[0] = [
164198
- createTextVNode(" 未知组件。。。。。。。。。。。。。。。 ")
164240
+ createTextVNode(" 未知组件。。。。。。。。。。。。。。。 ", -1)
164199
164241
  ])),
164200
164242
  _: 1,
164201
164243
  __: [0]
@@ -164348,7 +164390,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
164348
164390
  _: 1
164349
164391
  })) : createCommentVNode("", true),
164350
164392
  __props.field.preps["drag"] ? (openBlock(), createElementBlock("div", _hoisted_1$b, _cache[1] || (_cache[1] = [
164351
- createTextVNode(" 将文件拖到此处 或 "),
164393
+ createTextVNode(" 将文件拖到此处 或 ", -1),
164352
164394
  createElementVNode("em", null, "点击上传", -1)
164353
164395
  ]))) : createCommentVNode("", true),
164354
164396
  !__props.field.preps["drag"] ? (openBlock(), createBlock(_component_star_horse_icon, {
@@ -174889,9 +174931,11 @@ const items = /* #__PURE__ */ Object.assign({"/src/components/comp/ShDynamicForm
174889
174931
  });
174890
174932
  const install = (app, options) => {
174891
174933
  if (options?.router) {
174892
- app.provide("starHorseRouter", options.router);
174893
174934
  window.__hostRouter__ = options.router;
174894
174935
  }
174936
+ if (options?.axiosInstance) {
174937
+ window.__hostAxios__ = options.axiosInstance;
174938
+ }
174895
174939
  if (!options?.elementPlusOptions?.locale) {
174896
174940
  app.use(installer, {
174897
174941
  locale: zhCn
@@ -174909,7 +174953,8 @@ const install = (app, options) => {
174909
174953
  };
174910
174954
  const index = {
174911
174955
  install,
174912
- piniaInstance
174956
+ piniaInstance,
174957
+ starHorseAxios
174913
174958
  };
174914
174959
 
174915
174960
  /*!
@@ -176915,4 +176960,4 @@ const stringStylesDT93GIY_ = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defi
176915
176960
  fullWidthButton: e
176916
176961
  }, Symbol.toStringTag, { value: 'Module' }));
176917
176962
 
176918
- export { __unplugin_components_5 as ContentMenu, DEFAULT_INITIAL_Z_INDEX, _sfc_main$1O as ShDynamicForm, _sfc_main$1i as ShForm, _sfc_main$1L as ShTableListColumn, __unplugin_components_2 as StarHorseButtonList, StarHorseDataSelector, _sfc_main$1C as StarHorseDataView, _sfc_main$1D as StarHorseDataViewItems, __unplugin_components_2$2 as StarHorseDataViewTable, __unplugin_components_0$8 as StarHorseDialog, StarHorseDraggable, _sfc_main$1u as StarHorseForm, _sfc_main$1v as StarHorseFormItem, __unplugin_components_0$6 as StarHorseFormList, _sfc_main$1x as StarHorseFormTable, __unplugin_components_0$a as StarHorseIcon, __unplugin_components_0$5 as StarHorseJsonEditor, StarHorseMenu, _sfc_main$1s as StarHorsePopover, __unplugin_components_0$4 as StarHorseSearchComp, StarHorseStaticTable, StarHorseSvg, __unplugin_components_2$1 as StarHorseTableColumn, __unplugin_components_1$1 as StarHorseTableComp, _sfc_main$1G as StarHorseTableViewColumn, StarHorseTree, apiInstance, areaItem, _sfc_main$16 as audioItem, _sfc_main$15 as autocompleteItem, _sfc_main$h as barcodeItem, batchFieldDefaultValues, batchModifyAction, blobData, boxContainer, buttonItem, camelCaseToUnderline, cardContainer, cascadeItem, _sfc_main$12 as checkboxItem, closeLoad, collapseContainer, _sfc_main$11 as colorItem, commonParseCodeToName, compDynamicData, compKey, convertToCamelCase, copy$1 as copy, copyText, createComponent, createCondition, createDate, createDatetime, createFilter, createTree, cronItem, currentDate, currentMonthRange, dateCompList, dateParse, dateTypes, datetimeItem, index as default, deleteByIds, _sfc_main$R as departItem, dialogInputItem, dialogPreps, dictData, _sfc_main$P as dividerItem, download, downloadData, dynamicUrlOperation, dytableContainer, error$1 as error, fieldPlaceholder, formFieldMapping, generateDeviceId, getDynamicEvents, getFingerId, getMenuId, getRequest, htmlItem, _sfc_main$N as htmleditorItem, httpRequest, iconItem, imageItem, inputCompList, inputItem, isDark, isJson, isPromise, itemCheck, _sfc_main$H as jsonArrayItem, _sfc_main$G as jsonItem, load, loadById, loadData, loadGetData, markdownItem, message, monthRange, numberItem, numberRangeItem, operationConfirm, pageSelectItem, parseDateByType, _sfc_main$B as passwordItem, piniaInstance, postRequest, _sfc_main$i as qrcodeItem, _sfc_main$A as radioItem, _sfc_main$z as rateItem, removeEmptyCondition, rowClassName, searchData, searchMatchList, selectCompList, selectItem, signatureItem, _sfc_main$w as sliderItem, success, _sfc_main$v as switchItem, tabContainer, tableContainer, _sfc_main$u as tagItem, _sfc_main$t as textItem, _sfc_main$s as textareaItem, timeItem, timePickerItem, toggle, _sfc_main$p as transferItem, trim, _sfc_main$o as tselectItem, _sfc_main$n as unknownItem, uploadItem, uploadRequest, useButtonPermissionStore, useConsumerViewStore, useContinusConfigStore, useCopyerOperationStore, useDesignFormStore, useDesignPageStore, useDynamicFormStore, useGlobalConfigStore, useSelfOperationStore, useUserInfoStore, useZIndex, userAction, userFunction, _sfc_main$l as userItem, _sfc_main$k as usercompItem, uuid, viewMarkdownItem, warning };
176963
+ export { __unplugin_components_5 as ContentMenu, DEFAULT_INITIAL_Z_INDEX, _sfc_main$1O as ShDynamicForm, _sfc_main$1i as ShForm, _sfc_main$1L as ShTableListColumn, __unplugin_components_2 as StarHorseButtonList, StarHorseDataSelector, _sfc_main$1C as StarHorseDataView, _sfc_main$1D as StarHorseDataViewItems, __unplugin_components_2$2 as StarHorseDataViewTable, __unplugin_components_0$8 as StarHorseDialog, StarHorseDraggable, _sfc_main$1u as StarHorseForm, _sfc_main$1v as StarHorseFormItem, __unplugin_components_0$6 as StarHorseFormList, _sfc_main$1x as StarHorseFormTable, __unplugin_components_0$a as StarHorseIcon, __unplugin_components_0$5 as StarHorseJsonEditor, StarHorseMenu, _sfc_main$1s as StarHorsePopover, __unplugin_components_0$4 as StarHorseSearchComp, StarHorseStaticTable, StarHorseSvg, __unplugin_components_2$1 as StarHorseTableColumn, __unplugin_components_1$1 as StarHorseTableComp, _sfc_main$1G as StarHorseTableViewColumn, StarHorseTree, apiInstance, areaItem, _sfc_main$16 as audioItem, _sfc_main$15 as autocompleteItem, _sfc_main$h as barcodeItem, batchFieldDefaultValues, batchModifyAction, blobData, boxContainer, buttonItem, camelCaseToUnderline, cardContainer, cascadeItem, _sfc_main$12 as checkboxItem, closeLoad, collapseContainer, _sfc_main$11 as colorItem, commonParseCodeToName, compDynamicData, compKey, convertToCamelCase, copy$1 as copy, copyText, createComponent, createCondition, createDate, createDatetime, createFilter, createTree, cronItem, currentDate, currentMonthRange, dateCompList, dateParse, dateTypes, datetimeItem, index as default, deleteByIds, _sfc_main$R as departItem, dialogInputItem, dialogPreps, dictData, _sfc_main$P as dividerItem, download, downloadData, dynamicUrlOperation, dytableContainer, error$1 as error, fieldPlaceholder, formFieldMapping, generateDeviceId, getAxiosInstance, getDynamicEvents, getFingerId, getMenuId, getRequest, htmlItem, _sfc_main$N as htmleditorItem, httpRequest, iconItem, imageItem, inputCompList, inputItem, isDark, isJson, isPromise, itemCheck, _sfc_main$H as jsonArrayItem, _sfc_main$G as jsonItem, load, loadById, loadData, loadGetData, markdownItem, message, monthRange, numberItem, numberRangeItem, operationConfirm, pageSelectItem, parseDateByType, _sfc_main$B as passwordItem, piniaInstance, postRequest, _sfc_main$i as qrcodeItem, _sfc_main$A as radioItem, _sfc_main$z as rateItem, removeEmptyCondition, rowClassName, searchData, searchMatchList, selectCompList, selectItem, signatureItem, _sfc_main$w as sliderItem, starHorseAxios, success, _sfc_main$v as switchItem, tabContainer, tableContainer, _sfc_main$u as tagItem, _sfc_main$t as textItem, _sfc_main$s as textareaItem, timeItem, timePickerItem, toggle, _sfc_main$p as transferItem, trim, _sfc_main$o as tselectItem, _sfc_main$n as unknownItem, uploadItem, uploadRequest, useButtonPermissionStore, useConsumerViewStore, useContinusConfigStore, useCopyerOperationStore, useDesignFormStore, useDesignPageStore, useDynamicFormStore, useGlobalConfigStore, useSelfOperationStore, useUserInfoStore, useZIndex, userAction, userFunction, _sfc_main$l as userItem, _sfc_main$k as usercompItem, uuid, viewMarkdownItem, warning };