star-horse-lowcode 2.7.52 → 2.7.53

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
@@ -61988,9 +61988,7 @@ function getLocalIp() {
61988
61988
  return new Promise((resolve) => {
61989
61989
  const pc = new RTCPeerConnection({ iceServers: [] });
61990
61990
  pc.createDataChannel("");
61991
- pc.createOffer().then(
61992
- (offer) => pc.setLocalDescription(offer)
61993
- ).catch((err) => console.error(err));
61991
+ pc.createOffer().then((offer) => pc.setLocalDescription(offer)).catch((err) => console.error(err));
61994
61992
  pc.onicecandidate = (ice) => {
61995
61993
  if (ice.candidate) {
61996
61994
  const ip = ice.candidate.address || ice.candidate.ip || /([0-9]{1,3}(\.[0-9]{1,3}){3})/.exec(ice.candidate.candidate)?.[1];
@@ -62185,7 +62183,9 @@ function getUserInfo() {
62185
62183
  return JSON.parse(userInfo);
62186
62184
  }
62187
62185
  function isSystemManage() {
62188
- const roleList = getUserInfo()?.rolesList?.filter((item) => item.roleType == 3);
62186
+ const roleList = getUserInfo()?.rolesList?.filter(
62187
+ (item) => item.roleType == 3
62188
+ );
62189
62189
  return roleList && roleList.length > 0;
62190
62190
  }
62191
62191
 
@@ -66433,7 +66433,10 @@ service.interceptors.response.use(
66433
66433
  function download(url, param) {
66434
66434
  return new Promise((resolve, reject) => {
66435
66435
  service.post(url, param, { responseType: "blob" }).then((res) => {
66436
- downloadData(res.data, decodeURI(res.headers["content-disposition"]?.split("=")[1]));
66436
+ downloadData(
66437
+ res.data,
66438
+ decodeURI(res.headers["content-disposition"]?.split("=")[1])
66439
+ );
66437
66440
  resolve(null);
66438
66441
  }).catch((err) => {
66439
66442
  console.log(err);
@@ -66479,7 +66482,9 @@ function httpRequest(url, method, data) {
66479
66482
  });
66480
66483
  }
66481
66484
  function uploadRequest(url, data) {
66482
- return service.post(url, data, { headers: { "Content-Type": "multipart/form-data" } });
66485
+ return service.post(url, data, {
66486
+ headers: { "Content-Type": "multipart/form-data" }
66487
+ });
66483
66488
  }
66484
66489
  function trim(data) {
66485
66490
  if (!data) {
@@ -68009,8 +68014,18 @@ function parseDateByType(val, type, needSecond = false, split = "-") {
68009
68014
  if (Array.isArray(val) && type.includes("range")) {
68010
68015
  const start = val[0];
68011
68016
  const end = val[1];
68012
- const formatStart = parseDateByType(start, type.replace("range", ""), needSecond, split);
68013
- const formatEnd = parseDateByType(end, type.replace("range", ""), needSecond, split);
68017
+ const formatStart = parseDateByType(
68018
+ start,
68019
+ type.replace("range", ""),
68020
+ needSecond,
68021
+ split
68022
+ );
68023
+ const formatEnd = parseDateByType(
68024
+ end,
68025
+ type.replace("range", ""),
68026
+ needSecond,
68027
+ split
68028
+ );
68014
68029
  return `${formatStart} 至 ${formatEnd}`;
68015
68030
  }
68016
68031
  let date = val;
@@ -68165,7 +68180,14 @@ function commonParseCodeToName(name, cellValue) {
68165
68180
  if (name == "state" || name.includes("&state")) {
68166
68181
  return cellValue == 1 ? "正常" : "异常";
68167
68182
  }
68168
- const preps = ["createdTime", "updatedTime", "createdTime", "updatedTime", "createTime", "editTime"];
68183
+ const preps = [
68184
+ "createdTime",
68185
+ "updatedTime",
68186
+ "createdTime",
68187
+ "updatedTime",
68188
+ "createTime",
68189
+ "editTime"
68190
+ ];
68169
68191
  const result = preps.find(
68170
68192
  (item) => name?.includes("&" + item) || convertToCamelCase(name)?.toLowerCase() === item.toLowerCase()
68171
68193
  );
@@ -68323,7 +68345,10 @@ function formFieldMapping(fieldList) {
68323
68345
  fieldList2?.forEach((item) => {
68324
68346
  if (item.defaultValue) {
68325
68347
  if (isJson(item.defaultValue)) {
68326
- let subTemp = { ...batchDefaultValues[temp.batchName], ...item.defaultValue };
68348
+ let subTemp = {
68349
+ ...batchDefaultValues[temp.batchName],
68350
+ ...item.defaultValue
68351
+ };
68327
68352
  Object.entries(subTemp).forEach(([key2, value]) => {
68328
68353
  tempData[key2] = value;
68329
68354
  });
@@ -68499,7 +68524,10 @@ async function dynamicUrlOperation(preps, queryInfo, proxyUrl) {
68499
68524
  const childrenOperation = (list) => {
68500
68525
  const options = [];
68501
68526
  list?.forEach((item) => {
68502
- const option = { name: item[temp["selectLabel"]], value: item[temp["selectValue"]] };
68527
+ const option = {
68528
+ name: item[temp["selectLabel"]],
68529
+ value: item[temp["selectValue"]]
68530
+ };
68503
68531
  if (item.children && item.children.length > 0) {
68504
68532
  option.children = childrenOperation(item.children);
68505
68533
  }
@@ -68508,7 +68536,10 @@ async function dynamicUrlOperation(preps, queryInfo, proxyUrl) {
68508
68536
  return options;
68509
68537
  };
68510
68538
  validResult.data.forEach((item) => {
68511
- const option = { name: item[temp["selectLabel"]], value: item[temp["selectValue"]] };
68539
+ const option = {
68540
+ name: item[temp["selectLabel"]],
68541
+ value: item[temp["selectValue"]]
68542
+ };
68512
68543
  if (item.children && item.children.length > 0) {
68513
68544
  option.children = childrenOperation(item.children);
68514
68545
  }
@@ -68561,7 +68592,11 @@ function apiInstance(appName, urlPrefix, condition = []) {
68561
68592
  return postRequest(apiUrls.batchMergeDraftUrl, param);
68562
68593
  };
68563
68594
  apiUrls.loadByIdAction = (id, isView, params = {}) => {
68564
- return loadById(isView ? apiUrls.loadByIdForViewUrl : apiUrls.loadByIdUrl, id, params);
68595
+ return loadById(
68596
+ isView ? apiUrls.loadByIdForViewUrl : apiUrls.loadByIdUrl,
68597
+ id,
68598
+ params
68599
+ );
68565
68600
  };
68566
68601
  apiUrls.deleteAction = (params) => {
68567
68602
  return deleteByIds(apiUrls.deleteUrl, params);
@@ -68722,9 +68757,35 @@ const batchModifyAction = (items, val, fieldName) => {
68722
68757
  }
68723
68758
  }
68724
68759
  };
68725
- const inputType = ["input", "textarea", "password", "number", "view-markdown", "json", "json-array"];
68726
- const selectType = ["select", "tselect", "cascader", "autocomplete", "area", "cron", "transfer", "dialog-input", "page-select"];
68727
- const dateType = ["year", "month", "date", "datetime", "week", "datetimerange", "daterange"];
68760
+ const inputType = [
68761
+ "input",
68762
+ "textarea",
68763
+ "password",
68764
+ "number",
68765
+ "view-markdown",
68766
+ "json",
68767
+ "json-array"
68768
+ ];
68769
+ const selectType = [
68770
+ "select",
68771
+ "tselect",
68772
+ "cascader",
68773
+ "autocomplete",
68774
+ "area",
68775
+ "cron",
68776
+ "transfer",
68777
+ "dialog-input",
68778
+ "page-select"
68779
+ ];
68780
+ const dateType = [
68781
+ "year",
68782
+ "month",
68783
+ "date",
68784
+ "datetime",
68785
+ "week",
68786
+ "datetimerange",
68787
+ "daterange"
68788
+ ];
68728
68789
  function selectCompList() {
68729
68790
  return selectType;
68730
68791
  }
@@ -68778,7 +68839,7 @@ function itemCheck(item) {
68778
68839
  if (typeof item.actions === "string") {
68779
68840
  try {
68780
68841
  item.actions = {
68781
- "click": new Function(item.actions)
68842
+ click: new Function(item.actions)
68782
68843
  };
68783
68844
  } catch (e) {
68784
68845
  console.error("actions 字符串转函数失败:", e);
@@ -68861,7 +68922,7 @@ function getDynamicEvents(props, recall) {
68861
68922
  const actionNames = Object.keys(actions || {});
68862
68923
  const handleEvent = (eventName, e) => {
68863
68924
  if (eventName.includes(".")) {
68864
- const [baseEvent, modifier] = eventName.split(".");
68925
+ const modifier = eventName.split(".")[1];
68865
68926
  if (modifier == e.key.toLowerCase()) {
68866
68927
  console.log("成功触发事件:");
68867
68928
  recall(modifier);
@@ -68872,7 +68933,7 @@ function getDynamicEvents(props, recall) {
68872
68933
  };
68873
68934
  actionNames?.forEach((actionName) => {
68874
68935
  if (actionName.includes(".")) {
68875
- const [baseEvent, modifier] = actionName.split(".");
68936
+ const baseEvent = actionName.split(".")[0];
68876
68937
  events[baseEvent] = (e) => handleEvent(actionName, e);
68877
68938
  } else {
68878
68939
  events[actionName] = (e) => handleEvent(actionName, e);
@@ -69084,15 +69145,15 @@ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
69084
69145
  },
69085
69146
  setup(__props) {
69086
69147
  useCssVars((_ctx) => ({
69087
- "56207806": __props.cursor,
69088
- "f00719d4": __props.width,
69089
- "5dc2f5d7": __props.height,
69090
- "f235169a": __props.color,
69091
- "4671b0b1": __props.size,
69092
- "51e29f85": __props.marginLeft,
69093
- "2a709b44": __props.marginRight,
69094
- "9639c6e4": __props.borderRadius,
69095
- "0da6ce60": __props.boorderPadding
69148
+ "c9b9eafe": __props.cursor,
69149
+ "7170253b": __props.width,
69150
+ "ba74ef5c": __props.height,
69151
+ "705926d8": __props.color,
69152
+ "4b46b428": __props.size,
69153
+ "56117c80": __props.marginLeft,
69154
+ "6c7474c3": __props.marginRight,
69155
+ "68cea6c9": __props.borderRadius,
69156
+ "74d8b5db": __props.boorderPadding
69096
69157
  }));
69097
69158
  const props = __props;
69098
69159
  const iconName = computed(() => `sh-${props.iconClass}`);
@@ -69124,7 +69185,7 @@ const _export_sfc = (sfc, props) => {
69124
69185
  return target;
69125
69186
  };
69126
69187
 
69127
- const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["__scopeId", "data-v-2fe1f17f"]]);
69188
+ const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["__scopeId", "data-v-7c41d011"]]);
69128
69189
 
69129
69190
  const StarHorseIcon = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
69130
69191
  __proto__: null,
@@ -69336,14 +69397,26 @@ const validTypes = [
69336
69397
  pattern: /^[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\.?$/
69337
69398
  },
69338
69399
  { message: "只能是字母", value: "letter", pattern: /^[a-zA-Z]*$/ },
69339
- { message: "只能是字母或数字", value: "letterDigit", pattern: /^[a-zA-Z0-9]*$/ },
69400
+ {
69401
+ message: "只能是字母或数字",
69402
+ value: "letterDigit",
69403
+ pattern: /^[a-zA-Z0-9]*$/
69404
+ },
69340
69405
  {
69341
69406
  message: (min, max) => `长度范围须在 ${min} 到 ${max} 之间`,
69342
69407
  value: "dataLength",
69343
69408
  pattern: (min, max) => new RegExp(`^.{${min},${max}}$`)
69344
69409
  },
69345
- { message: "只能是字母、数字和下划线", value: "letterDigitUnderline", pattern: /^[a-zA-Z0-9_]*$/ },
69346
- { message: "只能是字母、数字、下划线和中横线", value: "letterDigitUnderlineHyphen", pattern: /^[a-zA-Z0-9_\-]*$/ },
69410
+ {
69411
+ message: "只能是字母、数字和下划线",
69412
+ value: "letterDigitUnderline",
69413
+ pattern: /^[a-zA-Z0-9_]*$/
69414
+ },
69415
+ {
69416
+ message: "只能是字母、数字、下划线和中横线",
69417
+ value: "letterDigitUnderlineHyphen",
69418
+ pattern: /^[a-zA-Z0-9_\-]*$/
69419
+ },
69347
69420
  {
69348
69421
  message: "密码需包含大写字母、小写字母、数字和特殊字符,长度 8 - 16",
69349
69422
  value: "strongPassword",
@@ -69415,12 +69488,20 @@ function getValidType(type, options) {
69415
69488
  function validMsg(item, dataForm) {
69416
69489
  const rules = [];
69417
69490
  if (item.required && !item.disabled) {
69418
- rules.push({ required: true, message: `${item.label}不能为空`, trigger: "blur" });
69491
+ rules.push({
69492
+ required: true,
69493
+ message: `${item.label}不能为空`,
69494
+ trigger: "blur"
69495
+ });
69419
69496
  }
69420
69497
  if (item.type == "number-range") {
69421
69498
  const splitName = item.preps?.splitName ?? "-";
69422
69499
  const escapedSplit = splitName.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
69423
- rules.push({ pattern: new RegExp(`^\\d+${escapedSplit}\\d+$`), message: '格式应为"最小值-最大值"(如:2-3)', trigger: "blur" });
69500
+ rules.push({
69501
+ pattern: new RegExp(`^\\d+${escapedSplit}\\d+$`),
69502
+ message: '格式应为"最小值-最大值"(如:2-3)',
69503
+ trigger: "blur"
69504
+ });
69424
69505
  rules.push({
69425
69506
  validator: (rule, value, callback) => {
69426
69507
  const minName = item.preps?.minName ?? item.fieldName + "Min";
@@ -69671,7 +69752,14 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
69671
69752
  }
69672
69753
  }
69673
69754
  };
69674
- const exclusions = ["name", "id", "label", "itemNameLabel", "autocomplete", "maxLength"];
69755
+ const exclusions = [
69756
+ "name",
69757
+ "id",
69758
+ "label",
69759
+ "itemNameLabel",
69760
+ "autocomplete",
69761
+ "maxLength"
69762
+ ];
69675
69763
  const init = () => {
69676
69764
  fieldType();
69677
69765
  if (!props.item["id"]) {
@@ -69769,7 +69857,9 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
69769
69857
  key: 1,
69770
69858
  message: __props.item.helpMsg
69771
69859
  }, null, 8, ["message"])) : createCommentVNode("", true),
69772
- (openBlock(), createBlock(resolveDynamicComponent((dataForm.value && dataForm.value["_" + __props.item.fieldName + "Type"] || itemType.value) + "-item"), {
69860
+ (openBlock(), createBlock(resolveDynamicComponent(
69861
+ (dataForm.value && dataForm.value["_" + __props.item.fieldName + "Type"] || itemType.value) + "-item"
69862
+ ), {
69773
69863
  key: __props.item.id,
69774
69864
  onSelfFunc: actionDispatcher,
69775
69865
  ref_key: "componentRef",
@@ -69805,7 +69895,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
69805
69895
 
69806
69896
  /* unplugin-vue-components disabled */
69807
69897
 
69808
- const __unplugin_components_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-a1b31b43"]]);
69898
+ const __unplugin_components_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-35c650fd"]]);
69809
69899
 
69810
69900
  const StarHorseItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
69811
69901
  __proto__: null,
@@ -69922,7 +70012,7 @@ const _sfc_main$1K = /* @__PURE__ */ defineComponent({
69922
70012
 
69923
70013
  /* unplugin-vue-components disabled */
69924
70014
 
69925
- const DataTag = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["__scopeId", "data-v-d789aa77"]]);
70015
+ const DataTag = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["__scopeId", "data-v-909e3e59"]]);
69926
70016
 
69927
70017
  const zh_CN = {
69928
70018
  "starhorse.copyright": Config.footerTxt,
@@ -70155,7 +70245,13 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
70155
70245
  title: { type: String, default: "" },
70156
70246
  compSize: { type: String, default: Config.compSize }
70157
70247
  },
70158
- emits: ["merge", "mergeDraft", "resetForm", "open", "closeAction"],
70248
+ emits: [
70249
+ "merge",
70250
+ "mergeDraft",
70251
+ "resetForm",
70252
+ "open",
70253
+ "closeAction"
70254
+ ],
70159
70255
  setup(__props, { emit: __emit }) {
70160
70256
  const emits = __emit;
70161
70257
  const props = __props;
@@ -70432,7 +70528,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
70432
70528
 
70433
70529
  /* unplugin-vue-components disabled */
70434
70530
 
70435
- const __unplugin_components_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["__scopeId", "data-v-7a2399c1"]]);
70531
+ const __unplugin_components_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["__scopeId", "data-v-3406ce7b"]]);
70436
70532
 
70437
70533
  const StarHorseDialog = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
70438
70534
  __proto__: null,
@@ -70692,7 +70788,7 @@ const _sfc_main$1I = /* @__PURE__ */ defineComponent({
70692
70788
 
70693
70789
  /* unplugin-vue-components disabled */
70694
70790
 
70695
- const DataPicker = /* @__PURE__ */ _export_sfc(_sfc_main$1I, [["__scopeId", "data-v-05d8ee9f"]]);
70791
+ const DataPicker = /* @__PURE__ */ _export_sfc(_sfc_main$1I, [["__scopeId", "data-v-1dc29e8b"]]);
70696
70792
 
70697
70793
  const _hoisted_1$S = { class: "data-wrapper" };
70698
70794
  const _sfc_main$1H = /* @__PURE__ */ defineComponent({
@@ -70801,7 +70897,7 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
70801
70897
 
70802
70898
  /* unplugin-vue-components disabled */
70803
70899
 
70804
- const StarHorseDataSelector = /* @__PURE__ */ _export_sfc(_sfc_main$1H, [["__scopeId", "data-v-039339d4"]]);
70900
+ const StarHorseDataSelector = /* @__PURE__ */ _export_sfc(_sfc_main$1H, [["__scopeId", "data-v-b8624195"]]);
70805
70901
 
70806
70902
  const StarHorseDataSelector$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
70807
70903
  __proto__: null,
@@ -70973,7 +71069,7 @@ const _sfc_main$1F = /* @__PURE__ */ defineComponent({
70973
71069
 
70974
71070
  /* unplugin-vue-components disabled */
70975
71071
 
70976
- const __unplugin_components_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__scopeId", "data-v-308066ad"]]);
71072
+ const __unplugin_components_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__scopeId", "data-v-59f9f69a"]]);
70977
71073
 
70978
71074
  const StarHorseDataViewTable = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
70979
71075
  __proto__: null,
@@ -71058,7 +71154,7 @@ const _sfc_main$1E = /* @__PURE__ */ defineComponent({
71058
71154
 
71059
71155
  /* unplugin-vue-components disabled */
71060
71156
 
71061
- const __unplugin_components_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$1E, [["__scopeId", "data-v-f3de2d99"]]);
71157
+ const __unplugin_components_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$1E, [["__scopeId", "data-v-d8fcb24f"]]);
71062
71158
 
71063
71159
  const viewTableItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
71064
71160
  __proto__: null,
@@ -71148,7 +71244,10 @@ const _sfc_main$1C = /* @__PURE__ */ defineComponent({
71148
71244
  globalCondition: { type: Object },
71149
71245
  outerData: { type: Object },
71150
71246
  dynamicForm: { type: Boolean, default: false },
71151
- primaryKey: { type: [String, Object], default: "id" },
71247
+ primaryKey: {
71248
+ type: [String, Object],
71249
+ default: "id"
71250
+ },
71152
71251
  batchFieldName: { type: String, default: "batchFieldList" },
71153
71252
  dataFormat: { type: Function, default: null }
71154
71253
  },
@@ -71427,7 +71526,7 @@ const _sfc_main$1B = /* @__PURE__ */ defineComponent({
71427
71526
 
71428
71527
  /* unplugin-vue-components disabled */
71429
71528
 
71430
- const __unplugin_components_5 = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["__scopeId", "data-v-73f31f13"]]);
71529
+ const __unplugin_components_5 = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["__scopeId", "data-v-6e139bcc"]]);
71431
71530
 
71432
71531
  const ContentMenu = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
71433
71532
  __proto__: null,
@@ -71879,60 +71978,57 @@ const useDesignFormStore = defineStore("designForm", () => {
71879
71978
  };
71880
71979
  });
71881
71980
 
71882
- const useDesignPageStore = defineStore(
71883
- "designPage",
71884
- () => {
71885
- const nodeList = ref([]);
71886
- const currentNode = ref(null);
71887
- const isEdit = ref(false);
71888
- const defaultZindex = ref(100);
71889
- const clearAll = () => {
71890
- isEdit.value = false;
71891
- nodeList.value = [];
71892
- currentNode.value = null;
71893
- };
71894
- const removeNode = (id) => {
71895
- nodeList.value = nodeList.value.filter((node) => {
71896
- return node.id != id;
71897
- });
71898
- currentNode.value = id == currentNode.value.id ? null : currentNode.value;
71899
- };
71900
- const setNodeList = (list) => {
71901
- nodeList.value = list;
71902
- };
71903
- const addNode = (node) => {
71904
- nodeList.value.push(node);
71905
- };
71906
- const selectNode = (node) => {
71907
- currentNode.value = node;
71908
- };
71909
- const setIsEdit = (edit) => {
71910
- isEdit.value = edit;
71911
- };
71912
- const maxZIndex = () => {
71913
- nodeList.value.sort((a, b) => {
71914
- return (a.zIndex || defaultZindex.value) - (b.zIndex || defaultZindex.value);
71915
- });
71916
- return nodeList.value[0].zIndex || defaultZindex.value;
71917
- };
71918
- const init = () => {
71919
- };
71920
- return {
71921
- nodeList,
71922
- currentNode,
71923
- isEdit,
71924
- defaultZindex,
71925
- setNodeList,
71926
- removeNode,
71927
- addNode,
71928
- selectNode,
71929
- clearAll,
71930
- setIsEdit,
71931
- maxZIndex,
71932
- init
71933
- };
71934
- }
71935
- );
71981
+ const useDesignPageStore = defineStore("designPage", () => {
71982
+ const nodeList = ref([]);
71983
+ const currentNode = ref(null);
71984
+ const isEdit = ref(false);
71985
+ const defaultZindex = ref(100);
71986
+ const clearAll = () => {
71987
+ isEdit.value = false;
71988
+ nodeList.value = [];
71989
+ currentNode.value = null;
71990
+ };
71991
+ const removeNode = (id) => {
71992
+ nodeList.value = nodeList.value.filter((node) => {
71993
+ return node.id != id;
71994
+ });
71995
+ currentNode.value = id == currentNode.value.id ? null : currentNode.value;
71996
+ };
71997
+ const setNodeList = (list) => {
71998
+ nodeList.value = list;
71999
+ };
72000
+ const addNode = (node) => {
72001
+ nodeList.value.push(node);
72002
+ };
72003
+ const selectNode = (node) => {
72004
+ currentNode.value = node;
72005
+ };
72006
+ const setIsEdit = (edit) => {
72007
+ isEdit.value = edit;
72008
+ };
72009
+ const maxZIndex = () => {
72010
+ nodeList.value.sort((a, b) => {
72011
+ return (a.zIndex || defaultZindex.value) - (b.zIndex || defaultZindex.value);
72012
+ });
72013
+ return nodeList.value[0].zIndex || defaultZindex.value;
72014
+ };
72015
+ const init = () => {
72016
+ };
72017
+ return {
72018
+ nodeList,
72019
+ currentNode,
72020
+ isEdit,
72021
+ defaultZindex,
72022
+ setNodeList,
72023
+ removeNode,
72024
+ addNode,
72025
+ selectNode,
72026
+ clearAll,
72027
+ setIsEdit,
72028
+ maxZIndex,
72029
+ init
72030
+ };
72031
+ });
71936
72032
 
71937
72033
  const copyerAction = useCopyerOperationStore(piniaInstance);
71938
72034
  const designForm$2 = useDesignFormStore(piniaInstance);
@@ -72179,7 +72275,10 @@ function paste(parentItem) {
72179
72275
  } else {
72180
72276
  if (getParentComp(copyerData) == "container") {
72181
72277
  const parentContainer = copyerAction.parentContainer;
72182
- copyContainer(parentContainer ? parentContainer.preps?.elements : compList.value, copyerData);
72278
+ copyContainer(
72279
+ parentContainer ? parentContainer.preps?.elements : compList.value,
72280
+ copyerData
72281
+ );
72183
72282
  } else {
72184
72283
  copyerData = JSON.parse(JSON.stringify(copyerData));
72185
72284
  copyerData.id = uuid();
@@ -72688,7 +72787,7 @@ const _sfc_main$1A = /* @__PURE__ */ defineComponent({
72688
72787
 
72689
72788
  /* unplugin-vue-components disabled */
72690
72789
 
72691
- const StarHorseDraggable = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["__scopeId", "data-v-e487a34b"]]);
72790
+ const StarHorseDraggable = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["__scopeId", "data-v-17d7a7de"]]);
72692
72791
 
72693
72792
  const StarHorseDraggable$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
72694
72793
  __proto__: null,
@@ -75531,7 +75630,9 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
75531
75630
  nextTick(() => {
75532
75631
  const tryScroll = (attempt = 0) => {
75533
75632
  const tableEl = starHorseFormListRef.value?.$el;
75534
- const scrollContainer = tableEl?.querySelector(".el-table--scrollable-y .el-scrollbar__wrap");
75633
+ const scrollContainer = tableEl?.querySelector(
75634
+ ".el-table--scrollable-y .el-scrollbar__wrap"
75635
+ );
75535
75636
  if (scrollContainer) {
75536
75637
  if (type === 1) {
75537
75638
  scrollContainer.scrollTop = scrollContainer.scrollHeight - scrollContainer.clientHeight;
@@ -75667,7 +75768,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
75667
75768
  onCloseAction: closeAction
75668
75769
  }, {
75669
75770
  default: withCtx(() => [
75670
- createVNode(__unplugin_components_1$2, {
75771
+ createVNode(_sfc_main$1u, {
75671
75772
  fieldList: { fieldList: __props.fieldList },
75672
75773
  ref_key: "rowDataFormRef",
75673
75774
  ref: rowDataFormRef
@@ -75936,7 +76037,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
75936
76037
 
75937
76038
  /* unplugin-vue-components disabled */
75938
76039
 
75939
- const __unplugin_components_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1y, [["__scopeId", "data-v-bb70380e"]]);
76040
+ const __unplugin_components_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1y, [["__scopeId", "data-v-173552a4"]]);
75940
76041
 
75941
76042
  const StarHorseFormList = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
75942
76043
  __proto__: null,
@@ -76013,7 +76114,10 @@ const _sfc_main$1w = /* @__PURE__ */ defineComponent({
76013
76114
  subFormFlag: { type: String, default: "N" },
76014
76115
  batchName: { type: String, default: "batchDataList" },
76015
76116
  batchFieldName: { type: String, default: "batchFieldList" },
76016
- primaryKey: { type: [String, Object], required: true },
76117
+ primaryKey: {
76118
+ type: [String, Object],
76119
+ required: true
76120
+ },
76017
76121
  rules: { type: Object },
76018
76122
  compSize: { type: String, default: Config.compSize },
76019
76123
  source: { type: Number, default: 1 }
@@ -76206,7 +76310,14 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76206
76310
  }
76207
76311
  }
76208
76312
  },
76209
- emits: ["refresh", "dataLoaded", "exportData", "removeRow", "addRow", "inited"],
76313
+ emits: [
76314
+ "refresh",
76315
+ "dataLoaded",
76316
+ "exportData",
76317
+ "removeRow",
76318
+ "addRow",
76319
+ "inited"
76320
+ ],
76210
76321
  setup(__props, { expose: __expose, emit: __emit }) {
76211
76322
  const props = __props;
76212
76323
  let userOperation = useSelfOperationStore(piniaInstance);
@@ -76289,7 +76400,9 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76289
76400
  };
76290
76401
  const assignStatusName = () => {
76291
76402
  if (dataForm.value.statusCode) {
76292
- let sData = props.selectData.find((item) => item.value === dataForm.value.statusCode);
76403
+ let sData = props.selectData.find(
76404
+ (item) => item.value === dataForm.value.statusCode
76405
+ );
76293
76406
  if (sData) {
76294
76407
  dataForm.value["statusName"] = sData.name;
76295
76408
  }
@@ -76299,7 +76412,9 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76299
76412
  if (dataForm.value[item.batchName]) {
76300
76413
  for (let index = 0; index < dataForm.value[item.batchName]?.length; index++) {
76301
76414
  let temp = dataForm.value[item.batchName][index];
76302
- let sData = props.selectData.find((sitem) => sitem.value === temp.statusCode);
76415
+ let sData = props.selectData.find(
76416
+ (sitem) => sitem.value === temp.statusCode
76417
+ );
76303
76418
  if (sData) {
76304
76419
  dataForm.value[item.batchName][index]["statusName"] = sData.name;
76305
76420
  }
@@ -76574,13 +76689,9 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
76574
76689
  }
76575
76690
  });
76576
76691
 
76577
- /* unplugin-vue-components disabled */
76578
-
76579
- const __unplugin_components_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["__scopeId", "data-v-5d489b48"]]);
76580
-
76581
76692
  const StarHorseForm = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
76582
76693
  __proto__: null,
76583
- default: __unplugin_components_1$2
76694
+ default: _sfc_main$1u
76584
76695
  }, Symbol.toStringTag, { value: 'Module' }));
76585
76696
 
76586
76697
  function e$3(t) {
@@ -121686,7 +121797,13 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
121686
121797
  emits: ["update:modelValue"],
121687
121798
  setup(__props, { expose: __expose }) {
121688
121799
  const json = useModel(__props, "modelValue");
121689
- const queryLanguages = ["javascript", "lodash", "jmespath", "jsonquery", "jsonpath"];
121800
+ const queryLanguages = [
121801
+ "javascript",
121802
+ "lodash",
121803
+ "jmespath",
121804
+ "jsonquery",
121805
+ "jsonpath"
121806
+ ];
121690
121807
  let editor = ref(null);
121691
121808
  const setEditorContent = (value) => {
121692
121809
  };
@@ -121716,7 +121833,7 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
121716
121833
 
121717
121834
  /* unplugin-vue-components disabled */
121718
121835
 
121719
- const __unplugin_components_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["__scopeId", "data-v-13111c8c"]]);
121836
+ const __unplugin_components_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["__scopeId", "data-v-fd575312"]]);
121720
121837
 
121721
121838
  const StarHorseJsonEditor = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
121722
121839
  __proto__: null,
@@ -121813,17 +121930,50 @@ const useGlobalConfigStore = defineStore(
121813
121930
  localStorage.setItem("starHorseConfigInfo", JSON.stringify(data));
121814
121931
  Config.buttonStyle.value = data.buttonShowType || "dropdown";
121815
121932
  if (data.themeColor) {
121816
- document.documentElement.style.setProperty("--star-horse-style", data.themeColor);
121817
- document.documentElement.style.setProperty("--el-color-primary", data.themeColor);
121818
- document.documentElement.style.setProperty("--el-select-input-color", data.themeColor);
121819
- document.documentElement.style.setProperty("--el-pagination-button-color", data.themeColor);
121820
- document.documentElement.style.setProperty("--el-tree-expand-icon-color", data.themeColor);
121821
- document.documentElement.style.setProperty("--fc-button-bg-color", data.themeColor);
121822
- document.documentElement.style.setProperty("--fc-button-border-color", data.themeColor);
121823
- document.documentElement.style.setProperty("--fc-button-active-bg-color", data.themeColor);
121824
- document.documentElement.style.setProperty("--fc-button-active-border-color", data.themeColor);
121825
- document.documentElement.style.setProperty("--fc-button-hover-bg-color", data.themeColor);
121826
- document.documentElement.style.setProperty("--fc-button-hover-border-color", data.themeColor);
121933
+ document.documentElement.style.setProperty(
121934
+ "--star-horse-style",
121935
+ data.themeColor
121936
+ );
121937
+ document.documentElement.style.setProperty(
121938
+ "--el-color-primary",
121939
+ data.themeColor
121940
+ );
121941
+ document.documentElement.style.setProperty(
121942
+ "--el-select-input-color",
121943
+ data.themeColor
121944
+ );
121945
+ document.documentElement.style.setProperty(
121946
+ "--el-pagination-button-color",
121947
+ data.themeColor
121948
+ );
121949
+ document.documentElement.style.setProperty(
121950
+ "--el-tree-expand-icon-color",
121951
+ data.themeColor
121952
+ );
121953
+ document.documentElement.style.setProperty(
121954
+ "--fc-button-bg-color",
121955
+ data.themeColor
121956
+ );
121957
+ document.documentElement.style.setProperty(
121958
+ "--fc-button-border-color",
121959
+ data.themeColor
121960
+ );
121961
+ document.documentElement.style.setProperty(
121962
+ "--fc-button-active-bg-color",
121963
+ data.themeColor
121964
+ );
121965
+ document.documentElement.style.setProperty(
121966
+ "--fc-button-active-border-color",
121967
+ data.themeColor
121968
+ );
121969
+ document.documentElement.style.setProperty(
121970
+ "--fc-button-hover-bg-color",
121971
+ data.themeColor
121972
+ );
121973
+ document.documentElement.style.setProperty(
121974
+ "--fc-button-hover-border-color",
121975
+ data.themeColor
121976
+ );
121827
121977
  }
121828
121978
  };
121829
121979
  const clearAll = (isDark = "N") => {
@@ -121979,7 +122129,9 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
121979
122129
  const emits = __emit;
121980
122130
  const props = __props;
121981
122131
  let configStore = useGlobalConfigStore(piniaInstance);
121982
- let compSize = computed(() => configStore.configFormInfo?.inputSize || Config.compSize);
122132
+ let compSize = computed(
122133
+ () => configStore.configFormInfo?.inputSize || Config.compSize
122134
+ );
121983
122135
  let searchForm = ref({});
121984
122136
  const createSearchParams = (formData) => {
121985
122137
  return analysisSearchData(searchForm.value, formData);
@@ -122057,7 +122209,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122057
122209
  size: unref(compSize)
122058
122210
  }, {
122059
122211
  default: withCtx(() => [
122060
- unref(defaultSearch) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(__props.formData.fieldList, (item, index) => {
122212
+ unref(defaultSearch) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(__props.formData.fieldList, (item) => {
122061
122213
  return openBlock(), createElementBlock(Fragment, null, [
122062
122214
  item.defaultVisible ? (openBlock(), createBlock(_component_el_form_item, {
122063
122215
  key: 0,
@@ -122212,7 +122364,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
122212
122364
 
122213
122365
  /* unplugin-vue-components disabled */
122214
122366
 
122215
- const __unplugin_components_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["__scopeId", "data-v-f1bc60d8"]]);
122367
+ const __unplugin_components_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["__scopeId", "data-v-1b3d7d14"]]);
122216
122368
 
122217
122369
  const StarHorseSearchComp = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
122218
122370
  __proto__: null,
@@ -132942,17 +133094,15 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
132942
133094
  emits: ["focusEvent", "blurEvent"],
132943
133095
  setup(__props, { emit: __emit }) {
132944
133096
  const props = __props;
132945
- const compInfo = computed(
132946
- () => {
132947
- return {
132948
- ...unref(props.item.preps?.compInfo),
132949
- props: {
132950
- data: { type: Object },
132951
- item: { type: Object }
132952
- }
132953
- };
132954
- }
132955
- );
133097
+ const compInfo = computed(() => {
133098
+ return {
133099
+ ...unref(props.item.preps?.compInfo),
133100
+ props: {
133101
+ data: { type: Object },
133102
+ item: { type: Object }
133103
+ }
133104
+ };
133105
+ });
132956
133106
  const currentRow = ref();
132957
133107
  const focusEvent = (_column) => {
132958
133108
  };
@@ -133010,7 +133160,9 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133010
133160
  return parseDateByType(val, item.type);
133011
133161
  }
133012
133162
  if (item.type == "select" || item.type == "checkbox" || item.type == "radio") {
133013
- fname = item.preps?.values?.find((temp) => String(temp.value) == val)?.name;
133163
+ fname = item.preps?.values?.find(
133164
+ (temp) => String(temp.value) == val
133165
+ )?.name;
133014
133166
  }
133015
133167
  if (fname) {
133016
133168
  return fname;
@@ -133132,7 +133284,7 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
133132
133284
 
133133
133285
  /* unplugin-vue-components disabled */
133134
133286
 
133135
- const __unplugin_components_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["__scopeId", "data-v-44464fc3"]]);
133287
+ const __unplugin_components_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["__scopeId", "data-v-f034861b"]]);
133136
133288
 
133137
133289
  const StarHorseTableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
133138
133290
  __proto__: null,
@@ -133150,7 +133302,10 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
133150
133302
  __name: "StarHorseStaticTable",
133151
133303
  props: {
133152
133304
  //主键
133153
- primaryKey: { type: [String, Object], required: true },
133305
+ primaryKey: {
133306
+ type: [String, Object],
133307
+ required: true
133308
+ },
133154
133309
  //列名
133155
133310
  fieldList: { type: Object, required: true },
133156
133311
  //格式化方法
@@ -133217,7 +133372,9 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
133217
133372
  }
133218
133373
  };
133219
133374
  const moveColumn = () => {
133220
- const tbody = document.querySelector(".sh-columns .el-table__body-wrapper tbody");
133375
+ const tbody = document.querySelector(
133376
+ ".sh-columns .el-table__body-wrapper tbody"
133377
+ );
133221
133378
  if (tbody) {
133222
133379
  Sortable.create(tbody, {
133223
133380
  handle: ".move",
@@ -133257,8 +133414,12 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
133257
133414
  if (val.length <= 1) {
133258
133415
  multipleSelection.value = val;
133259
133416
  } else {
133260
- let ids = multipleSelection.value.map((item) => item[props.primaryKey]);
133261
- let datas = val.filter((item) => !ids.includes(item[props.primaryKey]));
133417
+ let ids = multipleSelection.value.map(
133418
+ (item) => item[props.primaryKey]
133419
+ );
133420
+ let datas = val.filter(
133421
+ (item) => !ids.includes(item[props.primaryKey])
133422
+ );
133262
133423
  let data = multipleSelection.value[0];
133263
133424
  shStaticTableCompRef.value?.toggleRowSelection(data, true);
133264
133425
  multipleSelection.value = datas;
@@ -133294,7 +133455,9 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
133294
133455
  shStaticTableCompRef.value.toggleRowSelection(valueElement);
133295
133456
  }
133296
133457
  }
133297
- const selected = multipleSelection.value?.some((item) => item[props.primaryKey] === row[props.primaryKey]);
133458
+ const selected = multipleSelection.value?.some(
133459
+ (item) => item[props.primaryKey] === row[props.primaryKey]
133460
+ );
133298
133461
  if (!selected) {
133299
133462
  multipleSelection.value.push(row);
133300
133463
  shStaticTableCompRef.value?.toggleRowSelection(row);
@@ -133512,7 +133675,7 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
133512
133675
 
133513
133676
  /* unplugin-vue-components disabled */
133514
133677
 
133515
- const StarHorseStaticTable = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["__scopeId", "data-v-aee2066c"]]);
133678
+ const StarHorseStaticTable = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["__scopeId", "data-v-21b06ee3"]]);
133516
133679
 
133517
133680
  const StarHorseStaticTable$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
133518
133681
  __proto__: null,
@@ -133522,7 +133685,9 @@ const StarHorseStaticTable$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.de
133522
133685
  const useButtonPermissionStore = defineStore("buttonPermission", () => {
133523
133686
  const pageBtnPermisson = ref({});
133524
133687
  const currentPermission = ref({});
133525
- const permissionUrlPrefix = ref("/system-config/system/resourcesEntity/permissionResources/");
133688
+ const permissionUrlPrefix = ref(
133689
+ "/system-config/system/resourcesEntity/permissionResources/"
133690
+ );
133526
133691
  const addRoute = async (route) => {
133527
133692
  let data = route ?? (window.__hostRouter__?.currentRoute || window.__hostRouter__);
133528
133693
  const meta = unref(data)?.meta;
@@ -133554,15 +133719,16 @@ const useButtonPermissionStore = defineStore("buttonPermission", () => {
133554
133719
  warning("Session 失效");
133555
133720
  return;
133556
133721
  }
133557
- await postRequest(`${permissionUrlPrefix.value}${userId}/${menuId}`, {}).then(
133558
- (res) => {
133559
- if (res.data.code) {
133560
- console.log(res.data.cnMessage);
133561
- return;
133562
- }
133563
- permissons = res.data.data;
133722
+ await postRequest(
133723
+ `${permissionUrlPrefix.value}${userId}/${menuId}`,
133724
+ {}
133725
+ ).then((res) => {
133726
+ if (res.data.code) {
133727
+ console.log(res.data.cnMessage);
133728
+ return;
133564
133729
  }
133565
- );
133730
+ permissons = res.data.data;
133731
+ });
133566
133732
  if (permissons && permissons.length > 0) {
133567
133733
  addPermission(menuId, permissons);
133568
133734
  } else {
@@ -133623,8 +133789,12 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
133623
133789
  const route = useRoute();
133624
133790
  let configStore = useGlobalConfigStore(piniaInstance);
133625
133791
  let pagePermission = useButtonPermissionStore(piniaInstance);
133626
- let compSize = computed(() => configStore.configFormInfo?.buttonSize || Config.compSize);
133627
- let showType = computed(() => configStore.configFormInfo?.buttonShowType || "dropdown");
133792
+ let compSize = computed(
133793
+ () => configStore.configFormInfo?.buttonSize || Config.compSize
133794
+ );
133795
+ let showType = computed(
133796
+ () => configStore.configFormInfo?.buttonShowType || "dropdown"
133797
+ );
133628
133798
  let permissions = ref({});
133629
133799
  const dataForm = ref({});
133630
133800
  const tableCompFunc = (funcName) => {
@@ -133632,7 +133802,9 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
133632
133802
  };
133633
133803
  const btnOperation = (funcName) => {
133634
133804
  if (props.preValidFunc?.length > 0 && Array.isArray(props.preValidFunc)) {
133635
- const preFunc = props.preValidFunc.find((item) => item.authority == funcName);
133805
+ const preFunc = props.preValidFunc.find(
133806
+ (item) => item.authority == funcName
133807
+ );
133636
133808
  if (preFunc) {
133637
133809
  const result = preFunc.valid?.();
133638
133810
  if (!result) {
@@ -133735,14 +133907,18 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
133735
133907
  if (extBtns?.length > 0) {
133736
133908
  for (let i = 0; i < arr.length; i++) {
133737
133909
  let temp = arr[i];
133738
- if (extBtns.find((item) => item.btnName == temp.btnName && item.authority == temp.authority)) {
133910
+ if (extBtns.find(
133911
+ (item) => item.btnName == temp.btnName && item.authority == temp.authority
133912
+ )) {
133739
133913
  arr.splice(i, 1);
133740
133914
  }
133741
133915
  }
133742
133916
  arr.push(...extBtns);
133743
133917
  }
133744
133918
  }
133745
- arr.sort((a, b) => (a.priority || 100) - (b.priority || 100));
133919
+ arr.sort(
133920
+ (a, b) => (a.priority || 100) - (b.priority || 100)
133921
+ );
133746
133922
  return arr;
133747
133923
  };
133748
133924
  const setFormData = (val) => {
@@ -134008,285 +134184,15 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
134008
134184
 
134009
134185
  /* unplugin-vue-components disabled */
134010
134186
 
134011
- const __unplugin_components_2 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["__scopeId", "data-v-747c1a9f"]]);
134187
+ const __unplugin_components_2 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["__scopeId", "data-v-1d3217a8"]]);
134012
134188
 
134013
134189
  const StarHorseButtonList = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
134014
134190
  __proto__: null,
134015
134191
  default: __unplugin_components_2
134016
134192
  }, Symbol.toStringTag, { value: 'Module' }));
134017
134193
 
134018
- const useDynamicFormStore = defineStore("dynamicForm", () => {
134019
- const dataForm = ref({});
134020
- const selectData = ref(null);
134021
- const dataId = ref(null);
134022
- const setSelectData = (data) => {
134023
- selectData.value = data;
134024
- };
134025
- const setDataId = (id) => {
134026
- dataId.value = id;
134027
- };
134028
- const setFormData = (data) => {
134029
- dataForm.value = { ...data };
134030
- };
134031
- const addBatchData = (batchName, data) => {
134032
- let batchDatas = dataForm.value[batchName];
134033
- if (!batchDatas || batchDatas.length == 0) {
134034
- dataForm.value[batchName] = [];
134035
- batchDatas = dataForm.value[batchName];
134036
- }
134037
- batchDatas.push(data);
134038
- };
134039
- const delField = (fieldName) => {
134040
- delete dataForm.value[fieldName];
134041
- };
134042
- const delBatchField = (batchName, fieldName, rowIndex = -1) => {
134043
- const batchDatas = dataForm.value[batchName];
134044
- if (!batchDatas || batchDatas.length == 0) {
134045
- return;
134046
- }
134047
- if (batchDatas instanceof Object) {
134048
- delete batchDatas[fieldName];
134049
- } else {
134050
- if (rowIndex > 0) {
134051
- delete batchDatas[rowIndex - 1][fieldName];
134052
- } else {
134053
- batchDatas.forEach((item) => {
134054
- delete item[fieldName];
134055
- });
134056
- }
134057
- }
134058
- };
134059
- const addOrUpdateField = (fieldName, value) => {
134060
- dataForm.value[fieldName] = value;
134061
- };
134062
- const batchAddOrUpdateField = (batchName, fieldName, value, rowIndex = -1) => {
134063
- let batchDatas = dataForm.value[batchName];
134064
- if (!batchDatas || batchDatas.length == 0) {
134065
- dataForm.value[batchName] = [];
134066
- batchDatas = dataForm.value[batchName];
134067
- }
134068
- if (batchDatas instanceof Object) {
134069
- batchDatas[fieldName] = value;
134070
- } else {
134071
- if (rowIndex > 0) {
134072
- batchDatas[rowIndex - 1][fieldName] = value;
134073
- } else {
134074
- batchDatas.forEach((item) => {
134075
- item[fieldName] = value;
134076
- });
134077
- }
134078
- }
134079
- };
134080
- const renameField = (sourceField, distField, newValue) => {
134081
- if (Object.keys(dataForm.value).includes(distField)) {
134082
- warning("新的属性名已存在,不能进行修改");
134083
- return;
134084
- }
134085
- const bakeValue = dataForm.value[sourceField];
134086
- delete dataForm.value[sourceField];
134087
- dataForm.value[distField] = newValue ? newValue : bakeValue;
134088
- };
134089
- const batchRenameField = (batchName, sourceField, distField, newValue, rowIndex = -1) => {
134090
- const batchDatas = dataForm.value[batchName];
134091
- if (!batchDatas || batchDatas.length == 0) {
134092
- batchAddOrUpdateField(batchName, distField, newValue, rowIndex);
134093
- return;
134094
- }
134095
- const dataFun = (data, sourceField2, distField2, newValue2) => {
134096
- if (Object.keys(data).includes(distField2)) {
134097
- warning("新的属性名已存在,不能进行修改");
134098
- return false;
134099
- }
134100
- const bakeValue = data[sourceField2];
134101
- delete dataForm.value[sourceField2];
134102
- dataForm.value[distField2] = newValue2 || bakeValue;
134103
- return true;
134104
- };
134105
- if (batchDatas instanceof Object) {
134106
- dataFun(batchDatas, sourceField, distField, newValue);
134107
- } else {
134108
- if (rowIndex > 0) {
134109
- dataFun(batchDatas[rowIndex - 1], sourceField, distField, newValue);
134110
- } else {
134111
- batchDatas.forEach((item) => {
134112
- const result = dataFun(item, sourceField, distField, newValue);
134113
- if (!result) {
134114
- return false;
134115
- }
134116
- });
134117
- }
134118
- }
134119
- };
134120
- const getFieldValue = (fieldName) => {
134121
- return dataForm.value[fieldName];
134122
- };
134123
- const getBatchFieldValue = (batchName, fieldName, rowIndex = -1) => {
134124
- const batchDatas = dataForm.value[batchName];
134125
- if (!batchDatas) {
134126
- return;
134127
- }
134128
- if (batchDatas instanceof Object) {
134129
- return batchDatas[fieldName];
134130
- } else {
134131
- if (rowIndex > 0) {
134132
- return batchDatas[rowIndex - 1][fieldName];
134133
- } else {
134134
- return batchDatas.map((item) => item[fieldName]);
134135
- }
134136
- }
134137
- };
134138
- const clearAll = () => {
134139
- dataForm.value = {};
134140
- };
134141
- return {
134142
- dataForm,
134143
- selectData,
134144
- dataId,
134145
- setSelectData,
134146
- setDataId,
134147
- setFormData,
134148
- addBatchData,
134149
- delField,
134150
- delBatchField,
134151
- addOrUpdateField,
134152
- batchAddOrUpdateField,
134153
- renameField,
134154
- batchRenameField,
134155
- getFieldValue,
134156
- getBatchFieldValue,
134157
- clearAll
134158
- };
134159
- });
134160
-
134161
- const _sfc_main$1n = /* @__PURE__ */ defineComponent({
134162
- __name: "tableColumn",
134163
- props: {
134164
- //url地址
134165
- compUrl: { type: Object, required: true },
134166
- //列名
134167
- fieldList: { type: Object, required: true },
134168
- //格式化方法
134169
- dataFormat: { type: Function, default: null },
134170
- //是否显示排序
134171
- sortable: { type: Boolean, default: true },
134172
- //是否显示批量属性
134173
- showBatchField: { type: Boolean, default: false },
134174
- compSize: { type: String, default: Config.compSize },
134175
- //全局配置,动态页面使用
134176
- globalConfig: { type: Object, required: false },
134177
- //是否动态页面
134178
- isDynamic: { type: Boolean, default: false }
134179
- },
134180
- setup(__props) {
134181
- return (_ctx, _cache) => {
134182
- const _component_star_horse_table_column = __unplugin_components_2$1;
134183
- return openBlock(), createElementBlock(Fragment, null, [
134184
- (openBlock(true), createElementBlock(Fragment, null, renderList(__props.fieldList?.fieldList, (item, index) => {
134185
- return openBlock(), createElementBlock(Fragment, {
134186
- key: unref(compKey)(item, index)
134187
- }, [
134188
- Array.isArray(item) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(item, (sitem, key) => {
134189
- return openBlock(), createBlock(_component_star_horse_table_column, {
134190
- "data-format": __props.dataFormat,
134191
- cellEditable: __props.fieldList["cellEditable"],
134192
- item: sitem,
134193
- globalConfig: __props.globalConfig,
134194
- isDynamic: __props.isDynamic,
134195
- sortable: __props.sortable,
134196
- compSize: __props.compSize,
134197
- compUrl: __props.compUrl,
134198
- key: unref(compKey)(sitem, key)
134199
- }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134200
- }), 128)) : item.tabList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(item.tabList, (tabItems, key) => {
134201
- return openBlock(), createElementBlock(Fragment, {
134202
- key: unref(compKey)(tabItems, key)
134203
- }, [
134204
- (openBlock(true), createElementBlock(Fragment, null, renderList(tabItems.fieldList, (sitem, skey) => {
134205
- return openBlock(), createBlock(_component_star_horse_table_column, {
134206
- "data-format": __props.dataFormat,
134207
- cellEditable: __props.fieldList["cellEditable"],
134208
- item: sitem,
134209
- globalConfig: __props.globalConfig,
134210
- isDynamic: __props.isDynamic,
134211
- sortable: __props.sortable,
134212
- compSize: __props.compSize,
134213
- compUrl: __props.compUrl,
134214
- key: unref(compKey)(sitem, skey)
134215
- }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134216
- }), 128))
134217
- ], 64);
134218
- }), 128)) : item.dytableList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 2 }, renderList(item.dytableList, (tabItems, key) => {
134219
- return openBlock(), createElementBlock(Fragment, {
134220
- key: unref(compKey)(tabItems, key)
134221
- }, [
134222
- (openBlock(true), createElementBlock(Fragment, null, renderList(tabItems, (sitem, skey) => {
134223
- return openBlock(), createBlock(_component_star_horse_table_column, {
134224
- "data-format": __props.dataFormat,
134225
- cellEditable: __props.fieldList["cellEditable"],
134226
- item: sitem,
134227
- globalConfig: __props.globalConfig,
134228
- isDynamic: __props.isDynamic,
134229
- sortable: __props.sortable,
134230
- compSize: __props.compSize,
134231
- compUrl: __props.compUrl,
134232
- key: unref(compKey)(sitem, skey)
134233
- }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134234
- }), 128))
134235
- ], 64);
134236
- }), 128)) : item.batchFieldList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 3 }, renderList(item.batchFieldList, (batchItems, key) => {
134237
- return openBlock(), createElementBlock(Fragment, {
134238
- key: unref(compKey)(batchItems, key)
134239
- }, [
134240
- (openBlock(true), createElementBlock(Fragment, null, renderList(batchItems.fieldList, (sitem, skey) => {
134241
- return openBlock(), createBlock(_component_star_horse_table_column, {
134242
- "data-format": __props.dataFormat,
134243
- cellEditable: __props.fieldList["cellEditable"],
134244
- item: sitem,
134245
- globalConfig: __props.globalConfig,
134246
- isDynamic: __props.isDynamic,
134247
- sortable: __props.sortable,
134248
- compSize: __props.compSize,
134249
- compUrl: __props.compUrl,
134250
- key: unref(compKey)(sitem, skey)
134251
- }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134252
- }), 128))
134253
- ], 64);
134254
- }), 128)) : (openBlock(), createBlock(_component_star_horse_table_column, {
134255
- key: 4,
134256
- compUrl: __props.compUrl,
134257
- cellEditable: __props.fieldList["cellEditable"],
134258
- globalConfig: __props.globalConfig,
134259
- isDynamic: __props.isDynamic,
134260
- "data-format": __props.dataFormat,
134261
- sortable: __props.sortable,
134262
- compSize: __props.compSize,
134263
- item
134264
- }, null, 8, ["compUrl", "cellEditable", "globalConfig", "isDynamic", "data-format", "sortable", "compSize", "item"]))
134265
- ], 64);
134266
- }), 128)),
134267
- __props.showBatchField ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(__props.fieldList["batchFieldList"], (item) => {
134268
- return openBlock(), createBlock(_component_star_horse_table_column, {
134269
- key: unref(compKey)(item, item.batchName),
134270
- "data-format": __props.dataFormat,
134271
- compSize: __props.compSize,
134272
- globalConfig: __props.globalConfig,
134273
- isDynamic: __props.isDynamic,
134274
- sortable: __props.sortable,
134275
- item
134276
- }, null, 8, ["data-format", "compSize", "globalConfig", "isDynamic", "sortable", "item"]);
134277
- }), 128)) : createCommentVNode("", true)
134278
- ], 64);
134279
- };
134280
- }
134281
- });
134282
-
134283
- const tableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
134284
- __proto__: null,
134285
- default: _sfc_main$1n
134286
- }, Symbol.toStringTag, { value: 'Module' }));
134287
-
134288
134194
  const _hoisted_1$H = { class: "el-dropdown-link" };
134289
- const _sfc_main$1m = /* @__PURE__ */ defineComponent({
134195
+ const _sfc_main$1n = /* @__PURE__ */ defineComponent({
134290
134196
  __name: "tablebtn",
134291
134197
  props: {
134292
134198
  //按钮列表
@@ -134296,7 +134202,10 @@ const _sfc_main$1m = /* @__PURE__ */ defineComponent({
134296
134202
  //数据
134297
134203
  row: { type: Object, required: true },
134298
134204
  //按钮隐藏条件
134299
- hideBtnCondition: { type: Array, default: [] },
134205
+ hideBtnCondition: {
134206
+ type: Array,
134207
+ default: []
134208
+ },
134300
134209
  //按钮大小
134301
134210
  compSize: { type: String, default: Config.compSize },
134302
134211
  //按钮默认显示限制,超出按钮个数则折叠显示
@@ -134372,7 +134281,10 @@ const _sfc_main$1m = /* @__PURE__ */ defineComponent({
134372
134281
  dropdown: withCtx(() => [
134373
134282
  createVNode(_component_el_dropdown_menu, null, {
134374
134283
  default: withCtx(() => [
134375
- (openBlock(true), createElementBlock(Fragment, null, renderList(unref(validButtonList).slice(3, unref(validButtonList).length), (auth, key) => {
134284
+ (openBlock(true), createElementBlock(Fragment, null, renderList(unref(validButtonList).slice(
134285
+ 3,
134286
+ unref(validButtonList).length
134287
+ ), (auth, key) => {
134376
134288
  return openBlock(), createBlock(_component_el_dropdown_item, {
134377
134289
  key: unref(compKey)(auth, key),
134378
134290
  "v-if": __props.permissions[auth.authority]
@@ -134434,10 +134346,280 @@ const _sfc_main$1m = /* @__PURE__ */ defineComponent({
134434
134346
  });
134435
134347
 
134436
134348
  const tablebtn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
134349
+ __proto__: null,
134350
+ default: _sfc_main$1n
134351
+ }, Symbol.toStringTag, { value: 'Module' }));
134352
+
134353
+ const _sfc_main$1m = /* @__PURE__ */ defineComponent({
134354
+ __name: "tableColumn",
134355
+ props: {
134356
+ //url地址
134357
+ compUrl: { type: Object, required: true },
134358
+ //列名
134359
+ fieldList: { type: Object, required: true },
134360
+ //格式化方法
134361
+ dataFormat: { type: Function, default: null },
134362
+ //是否显示排序
134363
+ sortable: { type: Boolean, default: true },
134364
+ //是否显示批量属性
134365
+ showBatchField: { type: Boolean, default: false },
134366
+ compSize: { type: String, default: Config.compSize },
134367
+ //全局配置,动态页面使用
134368
+ globalConfig: { type: Object, required: false },
134369
+ //是否动态页面
134370
+ isDynamic: { type: Boolean, default: false }
134371
+ },
134372
+ setup(__props) {
134373
+ return (_ctx, _cache) => {
134374
+ const _component_star_horse_table_column = __unplugin_components_2$1;
134375
+ return openBlock(), createElementBlock(Fragment, null, [
134376
+ (openBlock(true), createElementBlock(Fragment, null, renderList(__props.fieldList?.fieldList, (item, index) => {
134377
+ return openBlock(), createElementBlock(Fragment, {
134378
+ key: unref(compKey)(item, index)
134379
+ }, [
134380
+ Array.isArray(item) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(item, (sitem, key) => {
134381
+ return openBlock(), createBlock(_component_star_horse_table_column, {
134382
+ "data-format": __props.dataFormat,
134383
+ cellEditable: __props.fieldList["cellEditable"],
134384
+ item: sitem,
134385
+ globalConfig: __props.globalConfig,
134386
+ isDynamic: __props.isDynamic,
134387
+ sortable: __props.sortable,
134388
+ compSize: __props.compSize,
134389
+ compUrl: __props.compUrl,
134390
+ key: unref(compKey)(sitem, key)
134391
+ }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134392
+ }), 128)) : item.tabList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(item.tabList, (tabItems, key) => {
134393
+ return openBlock(), createElementBlock(Fragment, {
134394
+ key: unref(compKey)(tabItems, key)
134395
+ }, [
134396
+ (openBlock(true), createElementBlock(Fragment, null, renderList(tabItems.fieldList, (sitem, skey) => {
134397
+ return openBlock(), createBlock(_component_star_horse_table_column, {
134398
+ "data-format": __props.dataFormat,
134399
+ cellEditable: __props.fieldList["cellEditable"],
134400
+ item: sitem,
134401
+ globalConfig: __props.globalConfig,
134402
+ isDynamic: __props.isDynamic,
134403
+ sortable: __props.sortable,
134404
+ compSize: __props.compSize,
134405
+ compUrl: __props.compUrl,
134406
+ key: unref(compKey)(sitem, skey)
134407
+ }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134408
+ }), 128))
134409
+ ], 64);
134410
+ }), 128)) : item.dytableList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 2 }, renderList(item.dytableList, (tabItems, key) => {
134411
+ return openBlock(), createElementBlock(Fragment, {
134412
+ key: unref(compKey)(tabItems, key)
134413
+ }, [
134414
+ (openBlock(true), createElementBlock(Fragment, null, renderList(tabItems, (sitem, skey) => {
134415
+ return openBlock(), createBlock(_component_star_horse_table_column, {
134416
+ "data-format": __props.dataFormat,
134417
+ cellEditable: __props.fieldList["cellEditable"],
134418
+ item: sitem,
134419
+ globalConfig: __props.globalConfig,
134420
+ isDynamic: __props.isDynamic,
134421
+ sortable: __props.sortable,
134422
+ compSize: __props.compSize,
134423
+ compUrl: __props.compUrl,
134424
+ key: unref(compKey)(sitem, skey)
134425
+ }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134426
+ }), 128))
134427
+ ], 64);
134428
+ }), 128)) : item.batchFieldList?.length > 0 ? (openBlock(true), createElementBlock(Fragment, { key: 3 }, renderList(item.batchFieldList, (batchItems, key) => {
134429
+ return openBlock(), createElementBlock(Fragment, {
134430
+ key: unref(compKey)(batchItems, key)
134431
+ }, [
134432
+ (openBlock(true), createElementBlock(Fragment, null, renderList(batchItems.fieldList, (sitem, skey) => {
134433
+ return openBlock(), createBlock(_component_star_horse_table_column, {
134434
+ "data-format": __props.dataFormat,
134435
+ cellEditable: __props.fieldList["cellEditable"],
134436
+ item: sitem,
134437
+ globalConfig: __props.globalConfig,
134438
+ isDynamic: __props.isDynamic,
134439
+ sortable: __props.sortable,
134440
+ compSize: __props.compSize,
134441
+ compUrl: __props.compUrl,
134442
+ key: unref(compKey)(sitem, skey)
134443
+ }, null, 8, ["data-format", "cellEditable", "item", "globalConfig", "isDynamic", "sortable", "compSize", "compUrl"]);
134444
+ }), 128))
134445
+ ], 64);
134446
+ }), 128)) : (openBlock(), createBlock(_component_star_horse_table_column, {
134447
+ key: 4,
134448
+ compUrl: __props.compUrl,
134449
+ cellEditable: __props.fieldList["cellEditable"],
134450
+ globalConfig: __props.globalConfig,
134451
+ isDynamic: __props.isDynamic,
134452
+ "data-format": __props.dataFormat,
134453
+ sortable: __props.sortable,
134454
+ compSize: __props.compSize,
134455
+ item
134456
+ }, null, 8, ["compUrl", "cellEditable", "globalConfig", "isDynamic", "data-format", "sortable", "compSize", "item"]))
134457
+ ], 64);
134458
+ }), 128)),
134459
+ __props.showBatchField ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(__props.fieldList["batchFieldList"], (item) => {
134460
+ return openBlock(), createBlock(_component_star_horse_table_column, {
134461
+ key: unref(compKey)(item, item.batchName),
134462
+ "data-format": __props.dataFormat,
134463
+ compSize: __props.compSize,
134464
+ globalConfig: __props.globalConfig,
134465
+ isDynamic: __props.isDynamic,
134466
+ sortable: __props.sortable,
134467
+ item
134468
+ }, null, 8, ["data-format", "compSize", "globalConfig", "isDynamic", "sortable", "item"]);
134469
+ }), 128)) : createCommentVNode("", true)
134470
+ ], 64);
134471
+ };
134472
+ }
134473
+ });
134474
+
134475
+ const tableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
134437
134476
  __proto__: null,
134438
134477
  default: _sfc_main$1m
134439
134478
  }, Symbol.toStringTag, { value: 'Module' }));
134440
134479
 
134480
+ const useDynamicFormStore = defineStore("dynamicForm", () => {
134481
+ const dataForm = ref({});
134482
+ const selectData = ref(null);
134483
+ const dataId = ref(null);
134484
+ const setSelectData = (data) => {
134485
+ selectData.value = data;
134486
+ };
134487
+ const setDataId = (id) => {
134488
+ dataId.value = id;
134489
+ };
134490
+ const setFormData = (data) => {
134491
+ dataForm.value = { ...data };
134492
+ };
134493
+ const addBatchData = (batchName, data) => {
134494
+ let batchDatas = dataForm.value[batchName];
134495
+ if (!batchDatas || batchDatas.length == 0) {
134496
+ dataForm.value[batchName] = [];
134497
+ batchDatas = dataForm.value[batchName];
134498
+ }
134499
+ batchDatas.push(data);
134500
+ };
134501
+ const delField = (fieldName) => {
134502
+ delete dataForm.value[fieldName];
134503
+ };
134504
+ const delBatchField = (batchName, fieldName, rowIndex = -1) => {
134505
+ const batchDatas = dataForm.value[batchName];
134506
+ if (!batchDatas || batchDatas.length == 0) {
134507
+ return;
134508
+ }
134509
+ if (batchDatas instanceof Object) {
134510
+ delete batchDatas[fieldName];
134511
+ } else {
134512
+ if (rowIndex > 0) {
134513
+ delete batchDatas[rowIndex - 1][fieldName];
134514
+ } else {
134515
+ batchDatas.forEach((item) => {
134516
+ delete item[fieldName];
134517
+ });
134518
+ }
134519
+ }
134520
+ };
134521
+ const addOrUpdateField = (fieldName, value) => {
134522
+ dataForm.value[fieldName] = value;
134523
+ };
134524
+ const batchAddOrUpdateField = (batchName, fieldName, value, rowIndex = -1) => {
134525
+ let batchDatas = dataForm.value[batchName];
134526
+ if (!batchDatas || batchDatas.length == 0) {
134527
+ dataForm.value[batchName] = [];
134528
+ batchDatas = dataForm.value[batchName];
134529
+ }
134530
+ if (batchDatas instanceof Object) {
134531
+ batchDatas[fieldName] = value;
134532
+ } else {
134533
+ if (rowIndex > 0) {
134534
+ batchDatas[rowIndex - 1][fieldName] = value;
134535
+ } else {
134536
+ batchDatas.forEach((item) => {
134537
+ item[fieldName] = value;
134538
+ });
134539
+ }
134540
+ }
134541
+ };
134542
+ const renameField = (sourceField, distField, newValue) => {
134543
+ if (Object.keys(dataForm.value).includes(distField)) {
134544
+ warning("新的属性名已存在,不能进行修改");
134545
+ return;
134546
+ }
134547
+ const bakeValue = dataForm.value[sourceField];
134548
+ delete dataForm.value[sourceField];
134549
+ dataForm.value[distField] = newValue ? newValue : bakeValue;
134550
+ };
134551
+ const batchRenameField = (batchName, sourceField, distField, newValue, rowIndex = -1) => {
134552
+ const batchDatas = dataForm.value[batchName];
134553
+ if (!batchDatas || batchDatas.length == 0) {
134554
+ batchAddOrUpdateField(batchName, distField, newValue, rowIndex);
134555
+ return;
134556
+ }
134557
+ const dataFun = (data, sourceField2, distField2, newValue2) => {
134558
+ if (Object.keys(data).includes(distField2)) {
134559
+ warning("新的属性名已存在,不能进行修改");
134560
+ return false;
134561
+ }
134562
+ const bakeValue = data[sourceField2];
134563
+ delete dataForm.value[sourceField2];
134564
+ dataForm.value[distField2] = newValue2 || bakeValue;
134565
+ return true;
134566
+ };
134567
+ if (batchDatas instanceof Object) {
134568
+ dataFun(batchDatas, sourceField, distField, newValue);
134569
+ } else {
134570
+ if (rowIndex > 0) {
134571
+ dataFun(batchDatas[rowIndex - 1], sourceField, distField, newValue);
134572
+ } else {
134573
+ batchDatas.forEach((item) => {
134574
+ const result = dataFun(item, sourceField, distField, newValue);
134575
+ if (!result) {
134576
+ return false;
134577
+ }
134578
+ });
134579
+ }
134580
+ }
134581
+ };
134582
+ const getFieldValue = (fieldName) => {
134583
+ return dataForm.value[fieldName];
134584
+ };
134585
+ const getBatchFieldValue = (batchName, fieldName, rowIndex = -1) => {
134586
+ const batchDatas = dataForm.value[batchName];
134587
+ if (!batchDatas) {
134588
+ return;
134589
+ }
134590
+ if (batchDatas instanceof Object) {
134591
+ return batchDatas[fieldName];
134592
+ } else {
134593
+ if (rowIndex > 0) {
134594
+ return batchDatas[rowIndex - 1][fieldName];
134595
+ } else {
134596
+ return batchDatas.map((item) => item[fieldName]);
134597
+ }
134598
+ }
134599
+ };
134600
+ const clearAll = () => {
134601
+ dataForm.value = {};
134602
+ };
134603
+ return {
134604
+ dataForm,
134605
+ selectData,
134606
+ dataId,
134607
+ setSelectData,
134608
+ setDataId,
134609
+ setFormData,
134610
+ addBatchData,
134611
+ delField,
134612
+ delBatchField,
134613
+ addOrUpdateField,
134614
+ batchAddOrUpdateField,
134615
+ renameField,
134616
+ batchRenameField,
134617
+ getFieldValue,
134618
+ getBatchFieldValue,
134619
+ clearAll
134620
+ };
134621
+ });
134622
+
134441
134623
  const _hoisted_1$G = { class: "star-horse-table" };
134442
134624
  const _hoisted_2$x = {
134443
134625
  key: 0,
@@ -134465,11 +134647,17 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134465
134647
  //url地址
134466
134648
  compUrl: { type: Object, required: true },
134467
134649
  //主键
134468
- primaryKey: { type: [String, Object], required: true },
134650
+ primaryKey: {
134651
+ type: [String, Object],
134652
+ required: true
134653
+ },
134469
134654
  //列名
134470
134655
  fieldList: { type: Object, required: true },
134471
134656
  //按钮隐藏条件
134472
- hideBtnCondition: { type: Array, default: [] },
134657
+ hideBtnCondition: {
134658
+ type: Array,
134659
+ default: []
134660
+ },
134473
134661
  //是否显示批量属性
134474
134662
  showBatchField: { type: Boolean, default: false },
134475
134663
  //格式化方法
@@ -134542,7 +134730,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134542
134730
  showType(data.tableType == "card" ? "list" : "card");
134543
134731
  return data;
134544
134732
  });
134545
- let compSize = computed(() => configStore.configFormInfo?.inputSize || Config.compSize);
134733
+ let compSize = computed(
134734
+ () => configStore.configFormInfo?.inputSize || Config.compSize
134735
+ );
134546
134736
  const multipleSelection = ref([]);
134547
134737
  const starHorseTableCompRef = ref();
134548
134738
  let pageInfo = reactive({
@@ -134689,7 +134879,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134689
134879
  }
134690
134880
  };
134691
134881
  const moveColumn = () => {
134692
- const tbody = document.querySelector(".sh-columns .el-table__body-wrapper tbody");
134882
+ const tbody = document.querySelector(
134883
+ ".sh-columns .el-table__body-wrapper tbody"
134884
+ );
134693
134885
  if (tbody) {
134694
134886
  Sortable.create(tbody, {
134695
134887
  handle: ".move",
@@ -134776,8 +134968,12 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134776
134968
  }
134777
134969
  multipleSelection.value = filters;
134778
134970
  } else {
134779
- let ids = multipleSelection.value.map((item) => item[keys]);
134780
- multipleSelection.value = val.filter((item) => !ids.includes(item[keys]));
134971
+ let ids = multipleSelection.value.map(
134972
+ (item) => item[keys]
134973
+ );
134974
+ multipleSelection.value = val.filter(
134975
+ (item) => !ids.includes(item[keys])
134976
+ );
134781
134977
  }
134782
134978
  let data = multipleSelection.value[0];
134783
134979
  starHorseTableCompRef.value.toggleRowSelection(data, true);
@@ -134938,7 +135134,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134938
135134
  const filterData = () => {
134939
135135
  let name = unref(inputFieldName);
134940
135136
  if (pageInfo.dataList && name && inputFieldVal.value) {
134941
- let row = pageInfo.dataList.find((item) => item[name] == inputFieldVal.value);
135137
+ let row = pageInfo.dataList.find(
135138
+ (item) => item[name] == inputFieldVal.value
135139
+ );
134942
135140
  if (row) {
134943
135141
  multipleSelection.value.push(row);
134944
135142
  starHorseTableCompRef.value.toggleRowSelection(row, true);
@@ -134969,7 +135167,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
134969
135167
  starHorseTableCompRef.value.toggleRowSelection(valueElement);
134970
135168
  }
134971
135169
  }
134972
- const selected = multipleSelection.value?.some((item) => item[props.primaryKey] === row[props.primaryKey]);
135170
+ const selected = multipleSelection.value?.some(
135171
+ (item) => item[props.primaryKey] === row[props.primaryKey]
135172
+ );
134973
135173
  if (!selected) {
134974
135174
  multipleSelection.value.push(row);
134975
135175
  starHorseTableCompRef.value.toggleRowSelection(row, true);
@@ -135035,7 +135235,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135035
135235
  });
135036
135236
  }
135037
135237
  }
135038
- arr.sort((a, b) => (a.priority || 40) - (b.priority || 40));
135238
+ arr.sort(
135239
+ (a, b) => (a.priority || 40) - (b.priority || 40)
135240
+ );
135039
135241
  return arr;
135040
135242
  };
135041
135243
  const expandCommonFun = (name, row, parentRow) => {
@@ -135078,7 +135280,9 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135078
135280
  const loadField = () => {
135079
135281
  let { fieldList } = analysisFields(props.fieldList?.fieldList);
135080
135282
  if (fieldList) {
135081
- fieldList.sort((a, b) => (a.priority || 100) - (b.priority || 100));
135283
+ fieldList.sort(
135284
+ (a, b) => (a.priority || 100) - (b.priority || 100)
135285
+ );
135082
135286
  return fieldList.filter((item) => item.listVisible)?.slice(0, 3);
135083
135287
  }
135084
135288
  return [];
@@ -135356,7 +135560,11 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135356
135560
  default: withCtx(() => [
135357
135561
  unref(permissions)[epd.authority] ? (openBlock(), createBlock(_component_star_horse_icon, {
135358
135562
  key: 0,
135359
- onClick: ($event) => expandCommonFun(epd.authority, innerScope.row, scope.row),
135563
+ onClick: ($event) => expandCommonFun(
135564
+ epd.authority,
135565
+ innerScope.row,
135566
+ scope.row
135567
+ ),
135360
135568
  "icon-class": epd.icon || "edit",
135361
135569
  style: { "cursor": "pointer" },
135362
135570
  color: epd.authority == "delete" ? "var(--el-color-danger)" : "var(--star-horse-style)"
@@ -135368,7 +135576,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135368
135576
  ]),
135369
135577
  _: 2
135370
135578
  }, 1024)) : createCommentVNode("", true),
135371
- createVNode(_sfc_main$1n, {
135579
+ createVNode(_sfc_main$1m, {
135372
135580
  fieldList: __props.expandTable,
135373
135581
  compSize: configInfo.value.inputSize,
135374
135582
  compUrl: __props.compUrl,
@@ -135385,7 +135593,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135385
135593
  ]),
135386
135594
  _: 1
135387
135595
  })) : createCommentVNode("", true),
135388
- createVNode(_sfc_main$1n, {
135596
+ createVNode(_sfc_main$1m, {
135389
135597
  fieldList: __props.fieldList,
135390
135598
  compSize: configInfo.value.inputSize,
135391
135599
  compUrl: __props.compUrl,
@@ -135401,7 +135609,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135401
135609
  width: unref(buttonList).length > 3 ? 160 : 110
135402
135610
  }, {
135403
135611
  default: withCtx((scope) => [
135404
- createVNode(_sfc_main$1m, {
135612
+ createVNode(_sfc_main$1n, {
135405
135613
  row: scope.row,
135406
135614
  permissions: unref(permissions),
135407
135615
  buttonList: unref(buttonList),
@@ -135432,11 +135640,15 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135432
135640
  onClick: ($event) => selectRow(data),
135433
135641
  onDblclick: ($event) => editData(data)
135434
135642
  }, [
135435
- createElementVNode("span", null, toDisplayString(__props.dataFormat(unref(cardFieldList)[0]?.fieldName, data[unref(cardFieldList)[0]?.fieldName], data)), 1)
135643
+ createElementVNode("span", null, toDisplayString(__props.dataFormat(
135644
+ unref(cardFieldList)[0]?.fieldName,
135645
+ data[unref(cardFieldList)[0]?.fieldName],
135646
+ data
135647
+ )), 1)
135436
135648
  ], 40, _hoisted_9$1)
135437
135649
  ]),
135438
135650
  footer: withCtx(() => [
135439
- createVNode(_sfc_main$1m, {
135651
+ createVNode(_sfc_main$1n, {
135440
135652
  row: data,
135441
135653
  permissions: unref(permissions),
135442
135654
  buttonList: unref(buttonList),
@@ -135503,7 +135715,7 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
135503
135715
 
135504
135716
  /* unplugin-vue-components disabled */
135505
135717
 
135506
- const __unplugin_components_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__scopeId", "data-v-10f5a29e"]]);
135718
+ const __unplugin_components_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__scopeId", "data-v-49d9026c"]]);
135507
135719
 
135508
135720
  const StarHorseTableComp = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
135509
135721
  __proto__: null,
@@ -135682,7 +135894,7 @@ const _sfc_main$1k = /* @__PURE__ */ defineComponent({
135682
135894
 
135683
135895
  /* unplugin-vue-components disabled */
135684
135896
 
135685
- const SubSystemMenu = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__scopeId", "data-v-6f7c685e"]]);
135897
+ const SubSystemMenu = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__scopeId", "data-v-dd41bfa1"]]);
135686
135898
 
135687
135899
  const _hoisted_1$E = {
135688
135900
  key: 0,
@@ -135766,12 +135978,19 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
135766
135978
  "treeDatas": {},
135767
135979
  "treeDatasModifiers": {}
135768
135980
  }),
135769
- emits: /* @__PURE__ */ mergeModels(["selectData", "changeCollapse", "addData", "removeData"], ["update:treeDatas"]),
135981
+ emits: /* @__PURE__ */ mergeModels([
135982
+ "selectData",
135983
+ "changeCollapse",
135984
+ "addData",
135985
+ "removeData"
135986
+ ], ["update:treeDatas"]),
135770
135987
  setup(__props, { expose: __expose, emit: __emit }) {
135771
135988
  const props = __props;
135772
135989
  const emits = __emit;
135773
135990
  let configStore = useGlobalConfigStore(piniaInstance);
135774
- let compSize = computed(() => configStore.configFormInfo?.inputSize || Config.compSize);
135991
+ let compSize = computed(
135992
+ () => configStore.configFormInfo?.inputSize || Config.compSize
135993
+ );
135775
135994
  const treeRef = ref();
135776
135995
  const menuTreeRef = ref();
135777
135996
  const searchData = ref("");
@@ -135806,9 +136025,13 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
135806
136025
  if (cmd == "add") {
135807
136026
  emits("addData", {});
135808
136027
  } else if (cmd == "collapse") {
135809
- Object.values(treeRef.value.store.nodesMap).forEach((v) => v.collapse());
136028
+ Object.values(treeRef.value.store.nodesMap).forEach(
136029
+ (v) => v.collapse()
136030
+ );
135810
136031
  } else {
135811
- Object.values(treeRef.value.store.nodesMap).forEach((v) => v.expand());
136032
+ Object.values(treeRef.value.store.nodesMap).forEach(
136033
+ (v) => v.expand()
136034
+ );
135812
136035
  }
135813
136036
  } else {
135814
136037
  const getAllSubNodeIndex = (datas) => {
@@ -135831,7 +136054,9 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
135831
136054
  let selectedDataList = ref([]);
135832
136055
  const operSelectData = (data, checked) => {
135833
136056
  if (checked) {
135834
- let hasData = selectedDataList.value.find((item) => item[props.preps.value] == data[props.preps.value]);
136057
+ let hasData = selectedDataList.value.find(
136058
+ (item) => item[props.preps.value] == data[props.preps.value]
136059
+ );
135835
136060
  if (!hasData) {
135836
136061
  selectedDataList.value.push(data);
135837
136062
  }
@@ -135892,7 +136117,9 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
135892
136117
  };
135893
136118
  const loadByPage = async () => {
135894
136119
  if (props.commonPersons?.length && !isSystemManage()) {
135895
- searchParams.push(createCondition("a.createdBy", props.commonPersons, "in"));
136120
+ searchParams.push(
136121
+ createCondition("a.createdBy", props.commonPersons, "in")
136122
+ );
135896
136123
  }
135897
136124
  let params = {
135898
136125
  currentPage: pageInfo.currentPage,
@@ -135964,9 +136191,9 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
135964
136191
  __props.showSelectData && unref(selectedDataList)?.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_1$E, [
135965
136192
  (openBlock(true), createElementBlock(Fragment, null, renderList(unref(selectedDataList), (item) => {
135966
136193
  return openBlock(), createBlock(_component_el_tag, {
135967
- key: unref(_compKey)(item, item[__props.preps.value]),
135968
136194
  closable: "",
135969
- onClose: ($event) => operSelectData(item, false)
136195
+ onClose: ($event) => operSelectData(item, false),
136196
+ key: unref(_compKey)(item, item[__props.preps.value])
135970
136197
  }, {
135971
136198
  default: withCtx(() => [
135972
136199
  createTextVNode(toDisplayString(item[__props.preps.label]), 1)
@@ -136159,7 +136386,7 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
136159
136386
 
136160
136387
  /* unplugin-vue-components disabled */
136161
136388
 
136162
- const StarHorseTree = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__scopeId", "data-v-6ffd7d08"]]);
136389
+ const StarHorseTree = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__scopeId", "data-v-f544e839"]]);
136163
136390
 
136164
136391
  const StarHorseTree$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
136165
136392
  __proto__: null,
@@ -136185,7 +136412,7 @@ const _sfc_main$1i = /* @__PURE__ */ defineComponent({
136185
136412
  const _component_el_scrollbar = ElScrollbar;
136186
136413
  const _component_el_form = ElForm;
136187
136414
  return openBlock(), createElementBlock(Fragment, null, [
136188
- renderSlot(_ctx.$slots, "header", {}, void 0, true),
136415
+ renderSlot(_ctx.$slots, "header"),
136189
136416
  createVNode(_component_el_form, mergeProps({ model: dataForm.value }, _ctx.$attrs, {
136190
136417
  class: "data-form",
136191
136418
  ref_key: "shFormRef",
@@ -136197,28 +136424,24 @@ const _sfc_main$1i = /* @__PURE__ */ defineComponent({
136197
136424
  height: "100%"
136198
136425
  }, {
136199
136426
  default: withCtx(() => [
136200
- _ctx.$slots.default ? renderSlot(_ctx.$slots, "default", { key: 0 }, void 0, true) : renderSlot(_ctx.$slots, "empty", { key: 1 }, void 0, true)
136427
+ _ctx.$slots.default ? renderSlot(_ctx.$slots, "default", { key: 0 }) : renderSlot(_ctx.$slots, "empty", { key: 1 })
136201
136428
  ]),
136202
136429
  _: 3
136203
136430
  })) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
136204
- _ctx.$slots.default ? renderSlot(_ctx.$slots, "default", { key: 0 }, void 0, true) : renderSlot(_ctx.$slots, "empty", { key: 1 }, void 0, true)
136431
+ _ctx.$slots.default ? renderSlot(_ctx.$slots, "default", { key: 0 }) : renderSlot(_ctx.$slots, "empty", { key: 1 })
136205
136432
  ], 64))
136206
136433
  ]),
136207
136434
  _: 3
136208
136435
  }, 16, ["model"]),
136209
- renderSlot(_ctx.$slots, "button", {}, void 0, true)
136436
+ renderSlot(_ctx.$slots, "button")
136210
136437
  ], 64);
136211
136438
  };
136212
136439
  }
136213
136440
  });
136214
136441
 
136215
- /* unplugin-vue-components disabled */
136216
-
136217
- const ShForm = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__scopeId", "data-v-7127b1b9"]]);
136218
-
136219
- const ShForm$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
136442
+ const ShForm = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
136220
136443
  __proto__: null,
136221
- default: ShForm
136444
+ default: _sfc_main$1i
136222
136445
  }, Symbol.toStringTag, { value: 'Module' }));
136223
136446
 
136224
136447
  const colDataInfo = () => {
@@ -136617,7 +136840,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136617
136840
  class: "field-item",
136618
136841
  onClick: ($event) => selectData(item)
136619
136842
  }, [
136620
- _cache[4] || (_cache[4] = createTextVNode("   ")),
136843
+ _cache[4] || (_cache[4] = createTextVNode("    ")),
136621
136844
  createElementVNode("div", null, [
136622
136845
  createVNode(_component_star_horse_icon, {
136623
136846
  "icon-class": item.itemIcon
@@ -136640,7 +136863,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136640
136863
  class: "field-item",
136641
136864
  onClick: ($event) => selectData(item)
136642
136865
  }, [
136643
- _cache[6] || (_cache[6] = createTextVNode("   ")),
136866
+ _cache[6] || (_cache[6] = createTextVNode("    ")),
136644
136867
  createElementVNode("div", null, [
136645
136868
  createVNode(_component_star_horse_icon, {
136646
136869
  "icon-class": item.itemIcon
@@ -136663,7 +136886,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136663
136886
  class: "field-item",
136664
136887
  onClick: ($event) => selectData(item)
136665
136888
  }, [
136666
- _cache[8] || (_cache[8] = createTextVNode("   ")),
136889
+ _cache[8] || (_cache[8] = createTextVNode("    ")),
136667
136890
  createElementVNode("div", null, [
136668
136891
  createVNode(_component_star_horse_icon, {
136669
136892
  "icon-class": item.itemIcon
@@ -136684,7 +136907,7 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
136684
136907
 
136685
136908
  /* unplugin-vue-components disabled */
136686
136909
 
136687
- const FieldList = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-bed8633c"]]);
136910
+ const FieldList = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__scopeId", "data-v-19524449"]]);
136688
136911
 
136689
136912
  const designForm$1 = useDesignFormStore(piniaInstance);
136690
136913
  const formData = computed(() => designForm$1.formData);
@@ -136741,11 +136964,18 @@ function fieldCopy(data, type) {
136741
136964
  mvData["compType"] = type;
136742
136965
  mvData["itemType"] = reData.itemType;
136743
136966
  if (reData.itemType == "box") {
136744
- mvData.preps["elements"] = [{ rowIndex: 1, columns: [{ colIndex: 1, colspan: 24, items: [] }] }];
136967
+ mvData.preps["elements"] = [
136968
+ { rowIndex: 1, columns: [{ colIndex: 1, colspan: 24, items: [] }] }
136969
+ ];
136745
136970
  } else if (reData.itemType == "table") {
136746
136971
  mvData.preps["elements"] = [{ colIndex: 1, columns: 1, items: [] }];
136747
136972
  } else if (reData.itemType == "dytable") {
136748
- mvData.preps["elements"] = [{ colIndex: 1, columns: [{ colIndex: 1, colspan: 1, rowspan: 1, items: [] }] }];
136973
+ mvData.preps["elements"] = [
136974
+ {
136975
+ colIndex: 1,
136976
+ columns: [{ colIndex: 1, colspan: 1, rowspan: 1, items: [] }]
136977
+ }
136978
+ ];
136749
136979
  }
136750
136980
  return mvData;
136751
136981
  }
@@ -137043,7 +137273,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
137043
137273
 
137044
137274
  /* unplugin-vue-components disabled */
137045
137275
 
137046
- const __unplugin_components_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__scopeId", "data-v-fcb8577d"]]);
137276
+ const __unplugin_components_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__scopeId", "data-v-79633df0"]]);
137047
137277
 
137048
137278
  const groupBoxContainer = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137049
137279
  __proto__: null,
@@ -137072,7 +137302,14 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137072
137302
  let isEdit = computed(() => designForm.isEdit);
137073
137303
  const isDragging = computed(() => designForm.isDragging);
137074
137304
  let boxCompList = computed(() => props.field);
137075
- let excludeContainerType = ["box", "tab", "table", "dytable", "collapse", "card"];
137305
+ let excludeContainerType = [
137306
+ "box",
137307
+ "tab",
137308
+ "table",
137309
+ "dytable",
137310
+ "collapse",
137311
+ "card"
137312
+ ];
137076
137313
  const checkItem = (items) => {
137077
137314
  if (!items["items"]) {
137078
137315
  items["items"] = [];
@@ -137194,7 +137431,7 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
137194
137431
 
137195
137432
  /* unplugin-vue-components disabled */
137196
137433
 
137197
- const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-c06acb5f"]]);
137434
+ const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-ae6af8ca"]]);
137198
137435
 
137199
137436
  const boxContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137200
137437
  __proto__: null,
@@ -137222,7 +137459,14 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137222
137459
  let designForm = useDesignFormStore(piniaInstance);
137223
137460
  const isDragging = computed(() => designForm.isDragging);
137224
137461
  const formData = useModel(__props, "formData");
137225
- let containerType = ["tab", "box", "table", "card", "dytable", "collapse"];
137462
+ let containerType = [
137463
+ "tab",
137464
+ "box",
137465
+ "table",
137466
+ "card",
137467
+ "dytable",
137468
+ "collapse"
137469
+ ];
137226
137470
  const isContainer = (data) => {
137227
137471
  return containerType.includes(data.itemType);
137228
137472
  };
@@ -137375,7 +137619,7 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
137375
137619
 
137376
137620
  /* unplugin-vue-components disabled */
137377
137621
 
137378
- const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-6f12a687"]]);
137622
+ const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-e1ae7783"]]);
137379
137623
 
137380
137624
  const cardContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137381
137625
  __proto__: null,
@@ -137524,7 +137768,7 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
137524
137768
 
137525
137769
  /* unplugin-vue-components disabled */
137526
137770
 
137527
- const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-526b58e1"]]);
137771
+ const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-b81bf226"]]);
137528
137772
 
137529
137773
  const collapseContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137530
137774
  __proto__: null,
@@ -137560,7 +137804,14 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
137560
137804
  const props = __props;
137561
137805
  let designForm = useDesignFormStore(piniaInstance);
137562
137806
  let draggingItem = computed(() => designForm.draggingItem);
137563
- let excludeContainerType = ["box", "tab", "table", "dytable", "collapse", "card"];
137807
+ let excludeContainerType = [
137808
+ "box",
137809
+ "tab",
137810
+ "table",
137811
+ "dytable",
137812
+ "collapse",
137813
+ "card"
137814
+ ];
137564
137815
  let currentSubItemId = computed(() => designForm.currentSubItemId);
137565
137816
  let isEdit = computed(() => designForm.isEdit);
137566
137817
  const isDragging = computed(() => designForm.isDragging);
@@ -137697,7 +137948,10 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
137697
137948
  }, {
137698
137949
  item: withCtx(({ element: data }) => [
137699
137950
  createElementVNode("div", {
137700
- class: normalizeClass({ "comp-item": data?.preps["headerFlag"] != "Y", "bare-item": data?.preps["headerFlag"] })
137951
+ class: normalizeClass({
137952
+ "comp-item": data?.preps["headerFlag"] != "Y",
137953
+ "bare-item": data?.preps["headerFlag"]
137954
+ })
137701
137955
  }, [
137702
137956
  (openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
137703
137957
  key: data?.id,
@@ -137884,7 +138138,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
137884
138138
 
137885
138139
  /* unplugin-vue-components disabled */
137886
138140
 
137887
- const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-b8426e0f"]]);
138141
+ const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-2ba233b6"]]);
137888
138142
 
137889
138143
  const dytableCol = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137890
138144
  __proto__: null,
@@ -137957,7 +138211,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
137957
138211
 
137958
138212
  /* unplugin-vue-components disabled */
137959
138213
 
137960
- const dytableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__scopeId", "data-v-75a63e4b"]]);
138214
+ const dytableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__scopeId", "data-v-7c1492bc"]]);
137961
138215
 
137962
138216
  const dytableContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
137963
138217
  __proto__: null,
@@ -137982,7 +138236,14 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
137982
138236
  let designForm = useDesignFormStore(piniaInstance);
137983
138237
  const isDragging = computed(() => designForm.isDragging);
137984
138238
  const formData = useModel(__props, "formData");
137985
- let containerType = ["tab", "box", "table", "card", "dytable", "collapse"];
138239
+ let containerType = [
138240
+ "tab",
138241
+ "box",
138242
+ "table",
138243
+ "card",
138244
+ "dytable",
138245
+ "collapse"
138246
+ ];
137986
138247
  const isContainer = (data) => {
137987
138248
  return containerType.includes(data.itemType);
137988
138249
  };
@@ -138124,7 +138385,7 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
138124
138385
 
138125
138386
  /* unplugin-vue-components disabled */
138126
138387
 
138127
- const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-57f47323"]]);
138388
+ const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-b41a6477"]]);
138128
138389
 
138129
138390
  const tabContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138130
138391
  __proto__: null,
@@ -138157,7 +138418,14 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138157
138418
  const props = __props;
138158
138419
  let designForm = useDesignFormStore(piniaInstance);
138159
138420
  let draggingItem = computed(() => designForm.draggingItem);
138160
- let excludeContainerType = ["box", "tab", "table", "dytable", "collapse", "card"];
138421
+ let excludeContainerType = [
138422
+ "box",
138423
+ "tab",
138424
+ "table",
138425
+ "dytable",
138426
+ "collapse",
138427
+ "card"
138428
+ ];
138161
138429
  let isEdit = computed(() => designForm.isEdit);
138162
138430
  const isDragging = computed(() => designForm.isDragging);
138163
138431
  const formData = useModel(__props, "formData");
@@ -138214,17 +138482,19 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138214
138482
  currentIndex.value = 0;
138215
138483
  };
138216
138484
  const deleteCol = (index) => {
138217
- operationConfirm("列删除后,对应的组件也会删除,确认删除吗?").then((res) => {
138218
- if (res) {
138219
- let elements = props.field.preps.elements;
138220
- elements.splice(index - 1, 1);
138221
- for (let index2 in elements) {
138222
- elements[index2].colIndex = parseInt(index2) + 1;
138485
+ operationConfirm("列删除后,对应的组件也会删除,确认删除吗?").then(
138486
+ (res) => {
138487
+ if (res) {
138488
+ let elements = props.field.preps.elements;
138489
+ elements.splice(index - 1, 1);
138490
+ for (let index2 in elements) {
138491
+ elements[index2].colIndex = parseInt(index2) + 1;
138492
+ }
138493
+ props.field.preps.columns = props.field.preps.columns - 1;
138494
+ currentIndex.value = 0;
138223
138495
  }
138224
- props.field.preps.columns = props.field.preps.columns - 1;
138225
- currentIndex.value = 0;
138226
138496
  }
138227
- });
138497
+ );
138228
138498
  };
138229
138499
  return (_ctx, _cache) => {
138230
138500
  const _component_el_tooltip = ElTooltip;
@@ -138274,7 +138544,10 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138274
138544
  createElementVNode("tr", null, [
138275
138545
  (openBlock(true), createElementBlock(Fragment, null, renderList(parseInt(__props.field.preps.columns || 1), (td) => {
138276
138546
  return openBlock(), createElementBlock("td", {
138277
- style: normalizeStyle({ width: 100 / parseInt(__props.field.preps.columns || 1) + "%", "margin-top": "5px" }),
138547
+ style: normalizeStyle({
138548
+ width: 100 / parseInt(__props.field.preps.columns || 1) + "%",
138549
+ "margin-top": "5px"
138550
+ }),
138278
138551
  class: normalizeClass(["td-clz", { "dragging-area": isDragging.value }]),
138279
138552
  onMouseenter: (evt) => tdOver(evt, td),
138280
138553
  onMouseleave: (evt) => tdOut(evt)
@@ -138319,7 +138592,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
138319
138592
 
138320
138593
  /* unplugin-vue-components disabled */
138321
138594
 
138322
- const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-d1ed37f0"]]);
138595
+ const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-a3ef3199"]]);
138323
138596
 
138324
138597
  const tableContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138325
138598
  __proto__: null,
@@ -138364,7 +138637,11 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138364
138637
  };
138365
138638
  const selectData = (data) => {
138366
138639
  if (!isEdit.value || isDisabled.value) return;
138367
- designForm.selectItem(props.formItem, data.itemType, getParentComp(props.parentField));
138640
+ designForm.selectItem(
138641
+ props.formItem,
138642
+ data.itemType,
138643
+ getParentComp(props.parentField)
138644
+ );
138368
138645
  };
138369
138646
  const exchangeItem = () => {
138370
138647
  designForm.setComponentVisible(true);
@@ -138432,7 +138709,9 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138432
138709
  __props.bareFlag === true ? (openBlock(), createElementBlock("div", {
138433
138710
  key: 0,
138434
138711
  class: normalizeClass(["w-fill", { "item-info": __props.formItem.preps?.itemType != "usercomp" }]),
138435
- style: normalizeStyle({ margin: __props.formItem.preps?.itemType == "button" ? "5px auto" : "unset" })
138712
+ style: normalizeStyle({
138713
+ margin: __props.formItem.preps?.itemType == "button" ? "5px auto" : "unset"
138714
+ })
138436
138715
  }, [
138437
138716
  __props.formItem.preps?.helpMsg ? (openBlock(), createBlock(_component_help, {
138438
138717
  key: 0,
@@ -138475,7 +138754,9 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138475
138754
  "bare-item": true,
138476
138755
  "item-info": __props.formItem.preps?.itemType != "usercomp"
138477
138756
  }]),
138478
- style: normalizeStyle({ margin: __props.formItem?.itemType == "button" ? "5px auto" : "unset" })
138757
+ style: normalizeStyle({
138758
+ margin: __props.formItem?.itemType == "button" ? "5px auto" : "unset"
138759
+ })
138479
138760
  }, [
138480
138761
  __props.formItem.preps?.helpMsg ? (openBlock(), createBlock(_component_help, {
138481
138762
  key: 0,
@@ -138574,7 +138855,9 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138574
138855
  ], 34)) : (openBlock(), createElementBlock("div", {
138575
138856
  key: 1,
138576
138857
  class: "item-info",
138577
- style: normalizeStyle({ margin: __props.formItem.preps?.itemType == "button" ? "5px auto" : "unset" })
138858
+ style: normalizeStyle({
138859
+ margin: __props.formItem.preps?.itemType == "button" ? "5px auto" : "unset"
138860
+ })
138578
138861
  }, [
138579
138862
  __props.formItem.preps?.helpMsg ? (openBlock(), createBlock(_component_help, {
138580
138863
  key: 0,
@@ -138597,7 +138880,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
138597
138880
 
138598
138881
  /* unplugin-vue-components disabled */
138599
138882
 
138600
- const __unplugin_components_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-967cf10e"]]);
138883
+ const __unplugin_components_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-78544621"]]);
138601
138884
 
138602
138885
  const starhorseFormItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138603
138886
  __proto__: null,
@@ -138653,7 +138936,9 @@ const operationRelation = async (relation, actionName, formData, currentName) =>
138653
138936
  const field = userOperation.getFormItem(fieldName);
138654
138937
  const params = temp.params;
138655
138938
  if (conditon == "dataLinkage") {
138656
- formData[fieldName + "OptionList"] = await compDynamicData({ preps: temp });
138939
+ formData[fieldName + "OptionList"] = await compDynamicData({
138940
+ preps: temp
138941
+ });
138657
138942
  } else if (conditon == "eqDisable" || conditon == "eqDisableOrEditable") {
138658
138943
  formData["_" + fieldName + "Editable"] = !(currentVal == params);
138659
138944
  } else if (conditon == "eqEditable" || conditon == "eqEditableOrDisable") {
@@ -138671,7 +138956,6 @@ const operationRelation = async (relation, actionName, formData, currentName) =>
138671
138956
  };
138672
138957
  const allAction = (context, emits, formData, actionName, isInit = false) => {
138673
138958
  const currentData = unref(formData);
138674
- context.field;
138675
138959
  if (!isInit && actionName != "normal") {
138676
138960
  try {
138677
138961
  emits("selfFunc", actionName, currentData);
@@ -138808,13 +139092,17 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
138808
139092
  allAction(props, emits, formData, actionName.value, true);
138809
139093
  }
138810
139094
  });
138811
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
138812
- if (val?.length > 0) {
138813
- props.field.preps["options"] = val;
139095
+ watch(
139096
+ () => formData.value[props.field.fieldName + "OptionList"],
139097
+ (val) => {
139098
+ if (val?.length > 0) {
139099
+ props.field.preps["options"] = val;
139100
+ }
139101
+ },
139102
+ {
139103
+ immediate: true
138814
139104
  }
138815
- }, {
138816
- immediate: true
138817
- });
139105
+ );
138818
139106
  return (_ctx, _cache) => {
138819
139107
  const _component_el_cascader = ElCascader;
138820
139108
  const _component_starhorse_form_item = __unplugin_components_0$3;
@@ -138843,7 +139131,7 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
138843
139131
 
138844
139132
  /* unplugin-vue-components disabled */
138845
139133
 
138846
- const areaItem = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-0301af79"]]);
139134
+ const areaItem = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-0af83aee"]]);
138847
139135
 
138848
139136
  const areaItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
138849
139137
  __proto__: null,
@@ -138902,7 +139190,11 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
138902
139190
  let endOffset = rate * 3;
138903
139191
  let frameCount = endOffset - startOffset;
138904
139192
  let newAudioBuffer;
138905
- newAudioBuffer = new AudioContext().createBuffer(channels, endOffset - startOffset, rate);
139193
+ newAudioBuffer = new AudioContext().createBuffer(
139194
+ channels,
139195
+ endOffset - startOffset,
139196
+ rate
139197
+ );
138906
139198
  let anotherArray = new Float32Array(frameCount);
138907
139199
  let offset = 0;
138908
139200
  for (let channel = 0; channel < channels; channel++) {
@@ -139057,11 +139349,15 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
139057
139349
  cb(results);
139058
139350
  }
139059
139351
  };
139060
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
139061
- if (val?.length > 0) {
139062
- props.field.preps["data"] = val;
139063
- }
139064
- }, { immediate: true });
139352
+ watch(
139353
+ () => formData.value[props.field.fieldName + "OptionList"],
139354
+ (val) => {
139355
+ if (val?.length > 0) {
139356
+ props.field.preps["data"] = val;
139357
+ }
139358
+ },
139359
+ { immediate: true }
139360
+ );
139065
139361
  return (_ctx, _cache) => {
139066
139362
  const _component_el_autocomplete = ElAutocomplete;
139067
139363
  const _component_starhorse_form_item = __unplugin_components_0$3;
@@ -139163,7 +139459,13 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139163
139459
  let params = [];
139164
139460
  dynamicParams?.forEach((dynamicParam) => {
139165
139461
  let value = formData.value[dynamicParam.paramName] ?? dynamicParam.defaultValue;
139166
- params.push(createCondition(dynamicParam.paramName, value, dynamicParam.matchType));
139462
+ params.push(
139463
+ createCondition(
139464
+ dynamicParam.paramName,
139465
+ value,
139466
+ dynamicParam.matchType
139467
+ )
139468
+ );
139167
139469
  });
139168
139470
  urlParam["fieldList"] = params;
139169
139471
  } else {
@@ -139173,33 +139475,35 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139173
139475
  warning("请提供需要调用的接口");
139174
139476
  return;
139175
139477
  }
139176
- httpRequest(action.url, action.method ?? "POST", urlParam).then((res) => {
139177
- console.log(res);
139178
- let reData = res.data;
139179
- if (reData.code) {
139180
- warning(reData.cnMessage);
139181
- return;
139182
- }
139183
- let datas = reData?.data;
139184
- if (action?.afterAction) {
139185
- if (!datas) {
139186
- warning("返回数据为空,无法赋值");
139187
- return;
139188
- }
139189
- if (Array.isArray(datas)) {
139190
- warning("返回数据为数组,无法赋值");
139478
+ httpRequest(action.url, action.method ?? "POST", urlParam).then(
139479
+ (res) => {
139480
+ console.log(res);
139481
+ let reData = res.data;
139482
+ if (reData.code) {
139483
+ warning(reData.cnMessage);
139191
139484
  return;
139192
139485
  }
139193
- if (action?.afterAction == "assignCurrentName") {
139194
- formData.value[props.field.fieldName] = datas;
139195
- } else if (action?.afterAction == "assignForm") {
139196
- let entries = Object.entries(datas);
139197
- entries.forEach(([key, value]) => {
139198
- formData.value[key] = value;
139199
- });
139486
+ let datas = reData?.data;
139487
+ if (action?.afterAction) {
139488
+ if (!datas) {
139489
+ warning("返回数据为空,无法赋值");
139490
+ return;
139491
+ }
139492
+ if (Array.isArray(datas)) {
139493
+ warning("返回数据为数组,无法赋值");
139494
+ return;
139495
+ }
139496
+ if (action?.afterAction == "assignCurrentName") {
139497
+ formData.value[props.field.fieldName] = datas;
139498
+ } else if (action?.afterAction == "assignForm") {
139499
+ let entries = Object.entries(datas);
139500
+ entries.forEach(([key, value]) => {
139501
+ formData.value[key] = value;
139502
+ });
139503
+ }
139200
139504
  }
139201
139505
  }
139202
- });
139506
+ );
139203
139507
  } else if (action?.viewType == "code") {
139204
139508
  if (!action.code) {
139205
139509
  warning("请提供需要执行的代码");
@@ -139230,7 +139534,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139230
139534
  actionName.value = props.field.actionName || "normal";
139231
139535
  });
139232
139536
  return (_ctx, _cache) => {
139233
- const _component_star_horse_form = __unplugin_components_1$2;
139537
+ const _component_star_horse_form = _sfc_main$1u;
139234
139538
  const _component_star_horse_editor = resolveComponent("star-horse-editor");
139235
139539
  const _component_star_horse_dialog = __unplugin_components_0$8;
139236
139540
  const _component_star_horse_icon = __unplugin_components_0$a;
@@ -139300,7 +139604,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
139300
139604
 
139301
139605
  /* unplugin-vue-components disabled */
139302
139606
 
139303
- const buttonItem = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-41c4fc6c"]]);
139607
+ const buttonItem = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-0cdee032"]]);
139304
139608
 
139305
139609
  const buttonItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
139306
139610
  __proto__: null,
@@ -139380,13 +139684,17 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
139380
139684
  allAction(props, emits, formData, actionName.value, true);
139381
139685
  }
139382
139686
  });
139383
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
139384
- if (val?.length > 0) {
139385
- props.field.preps["options"] = val;
139687
+ watch(
139688
+ () => formData.value[props.field.fieldName + "OptionList"],
139689
+ (val) => {
139690
+ if (val?.length > 0) {
139691
+ props.field.preps["options"] = val;
139692
+ }
139693
+ },
139694
+ {
139695
+ immediate: true
139386
139696
  }
139387
- }, {
139388
- immediate: true
139389
- });
139697
+ );
139390
139698
  return (_ctx, _cache) => {
139391
139699
  const _component_el_cascader = ElCascader;
139392
139700
  const _component_starhorse_form_item = __unplugin_components_0$3;
@@ -139415,7 +139723,7 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
139415
139723
 
139416
139724
  /* unplugin-vue-components disabled */
139417
139725
 
139418
- const cascadeItem = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-e6cc1828"]]);
139726
+ const cascadeItem = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-b42db049"]]);
139419
139727
 
139420
139728
  const cascadeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
139421
139729
  __proto__: null,
@@ -139476,11 +139784,15 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
139476
139784
  initData();
139477
139785
  allAction(props, emits, formData, "change", true);
139478
139786
  });
139479
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
139480
- if (val?.length > 0) {
139481
- props.field.preps["values"] = val;
139482
- }
139483
- }, { immediate: true });
139787
+ watch(
139788
+ () => formData.value[props.field.fieldName + "OptionList"],
139789
+ (val) => {
139790
+ if (val?.length > 0) {
139791
+ props.field.preps["values"] = val;
139792
+ }
139793
+ },
139794
+ { immediate: true }
139795
+ );
139484
139796
  return (_ctx, _cache) => {
139485
139797
  const _component_el_checkbox = ElCheckbox;
139486
139798
  const _component_el_checkbox_group = ElCheckboxGroup$1;
@@ -139742,7 +140054,10 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139742
140054
  thisDD = DD < 10 ? "0" + DD : DD;
139743
140055
  }
139744
140056
  }
139745
- let thisWeek = formatDate(/* @__PURE__ */ new Date(YY + "-" + MM + "-" + thisDD + " 00:00:00"), "week");
140057
+ let thisWeek = formatDate(
140058
+ /* @__PURE__ */ new Date(YY + "-" + MM + "-" + thisDD + " 00:00:00"),
140059
+ "week"
140060
+ );
139746
140061
  if (thisWeek == 0) {
139747
140062
  DD++;
139748
140063
  thisDD = DD < 10 ? "0" + DD : DD;
@@ -139757,7 +140072,10 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139757
140072
  }
139758
140073
  }
139759
140074
  } else if (dayRule.value == "weekDay") {
139760
- let thisWeek = formatDate(/* @__PURE__ */ new Date(YY + "-" + MM + "-" + DD + " 00:00:00"), "week");
140075
+ let thisWeek = formatDate(
140076
+ /* @__PURE__ */ new Date(YY + "-" + MM + "-" + DD + " 00:00:00"),
140077
+ "week"
140078
+ );
139761
140079
  if (dayRuleSup.value.indexOf(thisWeek) < 0) {
139762
140080
  if (Di == DDate.length - 1) {
139763
140081
  resetDay();
@@ -139770,7 +140088,10 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139770
140088
  continue;
139771
140089
  }
139772
140090
  } else if (dayRule.value == "assWeek") {
139773
- let thisWeek = formatDate(/* @__PURE__ */ new Date(YY + "-" + MM + "-" + DD + " 00:00:00"), "week");
140091
+ let thisWeek = formatDate(
140092
+ /* @__PURE__ */ new Date(YY + "-" + MM + "-" + DD + " 00:00:00"),
140093
+ "week"
140094
+ );
139774
140095
  if (dayRuleSup.value[1] >= thisWeek) {
139775
140096
  DD = (dayRuleSup.value[0] - 1) * 7 + dayRuleSup.value[1] - thisWeek + 1;
139776
140097
  } else {
@@ -139783,7 +140104,10 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139783
140104
  thisDD = DD < 10 ? "0" + DD : DD;
139784
140105
  }
139785
140106
  }
139786
- let thisWeek = formatDate(/* @__PURE__ */ new Date(YY + "-" + MM + "-" + thisDD + " 00:00:00"), "week");
140107
+ let thisWeek = formatDate(
140108
+ /* @__PURE__ */ new Date(YY + "-" + MM + "-" + thisDD + " 00:00:00"),
140109
+ "week"
140110
+ );
139787
140111
  if (dayRuleSup.value < thisWeek) {
139788
140112
  DD -= thisWeek - dayRuleSup.value;
139789
140113
  } else if (dayRuleSup.value > thisWeek) {
@@ -139834,7 +140158,9 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139834
140158
  for (let si = sIdx; si <= sDate.length - 1; si++) {
139835
140159
  let ss = sDate[si] < 10 ? "0" + sDate[si] : sDate[si];
139836
140160
  if (MM !== "00" && DD !== "00") {
139837
- resultArr.push(YY + "-" + MM + "-" + DD + " " + hh + ":" + mm + ":" + ss);
140161
+ resultArr.push(
140162
+ YY + "-" + MM + "-" + DD + " " + hh + ":" + mm + ":" + ss
140163
+ );
139838
140164
  nums++;
139839
140165
  }
139840
140166
  if (nums == 5) break goYear;
@@ -139869,7 +140195,9 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
139869
140195
  } else {
139870
140196
  resultList.value = resultArr;
139871
140197
  if (resultArr.length !== 5) {
139872
- resultList.value.push("最近100年内只有上面" + resultArr.length + "条结果!");
140198
+ resultList.value.push(
140199
+ "最近100年内只有上面" + resultArr.length + "条结果!"
140200
+ );
139873
140201
  }
139874
140202
  }
139875
140203
  isShow.value = true;
@@ -140107,7 +140435,7 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
140107
140435
 
140108
140436
  /* unplugin-vue-components disabled */
140109
140437
 
140110
- const __unplugin_components_3 = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-622d18f9"]]);
140438
+ const __unplugin_components_3 = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-05335f05"]]);
140111
140439
 
140112
140440
  const _hoisted_1$s = { class: "cron-content" };
140113
140441
  const _hoisted_2$m = { class: "cron-item" };
@@ -141567,13 +141895,13 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
141567
141895
  "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => isRef(checkboxList) ? checkboxList.value = $event : checkboxList = $event)
141568
141896
  }, {
141569
141897
  default: withCtx(() => [
141570
- (openBlock(true), createElementBlock(Fragment, null, renderList(unref(weekList), (item, index) => {
141898
+ (openBlock(true), createElementBlock(Fragment, null, renderList(unref(weekList), (item) => {
141571
141899
  return openBlock(), createBlock(_component_el_checkbox, {
141572
141900
  class: "my-[5px]",
141573
141901
  border: true,
141574
141902
  key: item,
141575
141903
  value: item + 1,
141576
- label: item < 10 ? "0" + item : item
141904
+ label: Number(item) < 10 ? "0" + item : item
141577
141905
  }, null, 8, ["value", "label"]);
141578
141906
  }), 128))
141579
141907
  ]),
@@ -141610,12 +141938,24 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
141610
141938
  let average02 = ref(1);
141611
141939
  let checkboxList = ref([]);
141612
141940
  const cycleTotalFun = () => {
141613
- cycle01.value = props.check?.(cycle01.value, fullYear.value, fullYear.value + 100);
141614
- cycle02.value = props.check?.(cycle02.value, fullYear.value + 1, fullYear.value + 101);
141941
+ cycle01.value = props.check?.(
141942
+ cycle01.value,
141943
+ fullYear.value,
141944
+ fullYear.value + 100
141945
+ );
141946
+ cycle02.value = props.check?.(
141947
+ cycle02.value,
141948
+ fullYear.value + 1,
141949
+ fullYear.value + 101
141950
+ );
141615
141951
  return cycle01.value + "-" + cycle02.value;
141616
141952
  };
141617
141953
  const averageTotalFun = () => {
141618
- average01.value = props.check?.(average01.value, fullYear.value, fullYear.value + 100);
141954
+ average01.value = props.check?.(
141955
+ average01.value,
141956
+ fullYear.value,
141957
+ fullYear.value + 100
141958
+ );
141619
141959
  average02.value = props.check?.(average02.value, 1, 10);
141620
141960
  return average01.value + "/" + average02.value;
141621
141961
  };
@@ -141842,7 +142182,15 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
141842
142182
  const props = __props;
141843
142183
  const emits = __emit;
141844
142184
  let dataValue = useVModel(props, "modelValue", emits);
141845
- let tabTitles = ref(["秒", "分钟", "小时", "日", "月", "周", "年"]);
142185
+ let tabTitles = ref([
142186
+ "秒",
142187
+ "分钟",
142188
+ "小时",
142189
+ "日",
142190
+ "月",
142191
+ "周",
142192
+ "年"
142193
+ ]);
141846
142194
  let tabActive = ref("0");
141847
142195
  const cronsecond = ref();
141848
142196
  const cronmin = ref();
@@ -142284,7 +142632,7 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
142284
142632
 
142285
142633
  /* unplugin-vue-components disabled */
142286
142634
 
142287
- const Crontab = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-fb0ce684"]]);
142635
+ const Crontab = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-9b1db419"]]);
142288
142636
 
142289
142637
  const _sfc_main$T = /* @__PURE__ */ defineComponent({
142290
142638
  __name: "cron-item",
@@ -142418,7 +142766,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
142418
142766
 
142419
142767
  /* unplugin-vue-components disabled */
142420
142768
 
142421
- const cronItem = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-122ac10b"]]);
142769
+ const cronItem = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-0eb2001e"]]);
142422
142770
 
142423
142771
  const cronItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142424
142772
  __proto__: null,
@@ -142526,7 +142874,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
142526
142874
 
142527
142875
  /* unplugin-vue-components disabled */
142528
142876
 
142529
- const datetimeItem = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-c12022cd"]]);
142877
+ const datetimeItem = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-f6892f36"]]);
142530
142878
 
142531
142879
  const datetimeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142532
142880
  __proto__: null,
@@ -142801,7 +143149,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
142801
143149
 
142802
143150
  /* unplugin-vue-components disabled */
142803
143151
 
142804
- const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-3fde5b28"]]);
143152
+ const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-7daedcdf"]]);
142805
143153
 
142806
143154
  const dialogInputItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142807
143155
  __proto__: null,
@@ -142949,7 +143297,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
142949
143297
 
142950
143298
  /* unplugin-vue-components disabled */
142951
143299
 
142952
- const htmlItem = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-b6fa2372"]]);
143300
+ const htmlItem = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-d9d9a95c"]]);
142953
143301
 
142954
143302
  const htmlItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
142955
143303
  __proto__: null,
@@ -160106,7 +160454,10 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
160106
160454
  default: withCtx(() => [
160107
160455
  createElementVNode("div", _hoisted_1$i, [
160108
160456
  createVNode(unref(QuillEditor), mergeProps({
160109
- style: { height: __props.field.preps?.height || "300px", "overflow-y": "hidden" },
160457
+ style: {
160458
+ height: __props.field.preps?.height || "300px",
160459
+ "overflow-y": "hidden"
160460
+ },
160110
160461
  modules
160111
160462
  }, toHandlers(unref(getDynamicEvents)(props, itemAction)), {
160112
160463
  modelValue: formData.value[__props.field.fieldName],
@@ -160314,7 +160665,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
160314
160665
 
160315
160666
  /* unplugin-vue-components disabled */
160316
160667
 
160317
- const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-023f7835"]]);
160668
+ const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-18485b81"]]);
160318
160669
 
160319
160670
  const iconItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160320
160671
  __proto__: null,
@@ -160547,7 +160898,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
160547
160898
 
160548
160899
  /* unplugin-vue-components disabled */
160549
160900
 
160550
- const imageItem = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-099b96fb"]]);
160901
+ const imageItem = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-70ac6f71"]]);
160551
160902
 
160552
160903
  const imageItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160553
160904
  __proto__: null,
@@ -160585,9 +160936,12 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
160585
160936
  const handleReset = () => {
160586
160937
  content.value = "";
160587
160938
  };
160588
- watch(() => props.initialContent, (newVal) => {
160589
- content.value = newVal || "";
160590
- });
160939
+ watch(
160940
+ () => props.initialContent,
160941
+ (newVal) => {
160942
+ content.value = newVal || "";
160943
+ }
160944
+ );
160591
160945
  return (_ctx, _cache) => {
160592
160946
  const _component_el_input = ElInput;
160593
160947
  const _component_star_horse_dialog = __unplugin_components_0$8;
@@ -160804,7 +161158,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
160804
161158
 
160805
161159
  /* unplugin-vue-components disabled */
160806
161160
 
160807
- const inputItem = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-0cee7dd9"]]);
161161
+ const inputItem = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-991cb7cf"]]);
160808
161162
 
160809
161163
  const inputItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160810
161164
  __proto__: null,
@@ -160825,7 +161179,11 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
160825
161179
  parentField: { type: Object },
160826
161180
  formInfo: { type: Object },
160827
161181
  // 新增:区分 JSON 对象/数组的关键参数
160828
- dataType: { type: String, default: "object", validator: (v) => ["object", "array"].includes(v) }
161182
+ dataType: {
161183
+ type: String,
161184
+ default: "object",
161185
+ validator: (v) => ["object", "array"].includes(v)
161186
+ }
160829
161187
  }, {
160830
161188
  "formData": {},
160831
161189
  "formDataModifiers": {}
@@ -160843,8 +161201,18 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
160843
161201
  {
160844
161202
  batchName: "jsonDatas",
160845
161203
  fieldList: [
160846
- { label: "Name/名称", fieldName: "name", required: true, formVisible: true },
160847
- { label: "Value/值", fieldName: "value", required: true, formVisible: true }
161204
+ {
161205
+ label: "Name/名称",
161206
+ fieldName: "name",
161207
+ required: true,
161208
+ formVisible: true
161209
+ },
161210
+ {
161211
+ label: "Value/值",
161212
+ fieldName: "value",
161213
+ required: true,
161214
+ formVisible: true
161215
+ }
160848
161216
  ]
160849
161217
  }
160850
161218
  ]
@@ -160867,14 +161235,26 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
160867
161235
  };
160868
161236
  const selectItem = async () => {
160869
161237
  if (props.field.preps["devType"]) {
160870
- formData.value[props.field.fieldName] = lib$1.stringify(jsonData.value, null, 4);
161238
+ formData.value[props.field.fieldName] = lib$1.stringify(
161239
+ jsonData.value,
161240
+ null,
161241
+ 4
161242
+ );
160871
161243
  } else {
160872
161244
  let flag = false;
160873
- await jsonFormRef.value.$refs.starHorseFormRef.validate((res) => flag = res);
161245
+ await jsonFormRef.value.$refs.starHorseFormRef.validate(
161246
+ (res) => flag = res
161247
+ );
160874
161248
  if (!flag) return;
160875
161249
  const temp = jsonFormRef.value.getFormData().value;
160876
161250
  const dataList = temp["jsonDatas"];
160877
- formData.value[props.field.fieldName] = props.dataType === "object" ? lib$1.stringify(Object.fromEntries(dataList.map(({ name, value }) => [name, value])), null, 4) : lib$1.stringify(dataList, null, 4);
161251
+ formData.value[props.field.fieldName] = props.dataType === "object" ? lib$1.stringify(
161252
+ Object.fromEntries(
161253
+ dataList.map(({ name, value }) => [name, value])
161254
+ ),
161255
+ null,
161256
+ 4
161257
+ ) : lib$1.stringify(dataList, null, 4);
160878
161258
  }
160879
161259
  closeAction();
160880
161260
  };
@@ -160882,7 +161262,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
160882
161262
  const closeAction = () => dialogInputVisible.value = false;
160883
161263
  return (_ctx, _cache) => {
160884
161264
  const _component_star_horse_json_editor = __unplugin_components_0$5;
160885
- const _component_star_horse_form = __unplugin_components_1$2;
161265
+ const _component_star_horse_form = _sfc_main$1u;
160886
161266
  const _component_star_horse_dialog = __unplugin_components_0$8;
160887
161267
  const _component_el_input = ElInput;
160888
161268
  const _component_star_horse_icon = __unplugin_components_0$a;
@@ -160960,7 +161340,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
160960
161340
 
160961
161341
  /* unplugin-vue-components disabled */
160962
161342
 
160963
- const __unplugin_components_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-52f2d1b4"]]);
161343
+ const __unplugin_components_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-3e3840dd"]]);
160964
161344
 
160965
161345
  const baseJsonItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
160966
161346
  __proto__: null,
@@ -161187,7 +161567,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
161187
161567
 
161188
161568
  /* unplugin-vue-components disabled */
161189
161569
 
161190
- const markdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-f3c73035"]]);
161570
+ const markdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-a959605c"]]);
161191
161571
 
161192
161572
  const markdownItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161193
161573
  __proto__: null,
@@ -161292,7 +161672,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
161292
161672
 
161293
161673
  /* unplugin-vue-components disabled */
161294
161674
 
161295
- const numberItem = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-192ec77d"]]);
161675
+ const numberItem = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-08a01f3f"]]);
161296
161676
 
161297
161677
  const numberItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161298
161678
  __proto__: null,
@@ -161458,7 +161838,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
161458
161838
 
161459
161839
  /* unplugin-vue-components disabled */
161460
161840
 
161461
- const numberRangeItem = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-8463726f"]]);
161841
+ const numberRangeItem = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-5b58850f"]]);
161462
161842
 
161463
161843
  const numberRangeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161464
161844
  __proto__: null,
@@ -161533,7 +161913,13 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
161533
161913
  let value = formData.value[props.field.aliasName || props.field.fieldName];
161534
161914
  if (fieldName && value) {
161535
161915
  if (props.field.preps?.multiple) {
161536
- searchData.value.push(createCondition(fieldName, Array.isArray(value) ? value : value.split(";"), "in"));
161916
+ searchData.value.push(
161917
+ createCondition(
161918
+ fieldName,
161919
+ Array.isArray(value) ? value : value.split(";"),
161920
+ "in"
161921
+ )
161922
+ );
161537
161923
  } else {
161538
161924
  searchData.value.push(createCondition(fieldName, value));
161539
161925
  }
@@ -161614,7 +162000,9 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
161614
162000
  let name = props.field.fieldName;
161615
162001
  if (fields) {
161616
162002
  fields.forEach((temp) => {
161617
- let value = multipleSelection.value.map((item) => item[temp.sourceField]);
162003
+ let value = multipleSelection.value.map(
162004
+ (item) => item[temp.sourceField]
162005
+ );
161618
162006
  if (!props.field.preps?.multiple) {
161619
162007
  value = value[0];
161620
162008
  }
@@ -161787,7 +162175,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
161787
162175
 
161788
162176
  /* unplugin-vue-components disabled */
161789
162177
 
161790
- const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-87dfd5ae"]]);
162178
+ const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-f33af78d"]]);
161791
162179
 
161792
162180
  const pageSelectItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
161793
162181
  __proto__: null,
@@ -161926,13 +162314,17 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
161926
162314
  initData();
161927
162315
  allAction(props, emits, formData, "change", true);
161928
162316
  });
161929
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
161930
- if (val?.length > 0) {
161931
- props.field.preps["values"] = val;
162317
+ watch(
162318
+ () => formData.value[props.field.fieldName + "OptionList"],
162319
+ (val) => {
162320
+ if (val?.length > 0) {
162321
+ props.field.preps["values"] = val;
162322
+ }
162323
+ },
162324
+ {
162325
+ immediate: true
161932
162326
  }
161933
- }, {
161934
- immediate: true
161935
- });
162327
+ );
161936
162328
  return (_ctx, _cache) => {
161937
162329
  const _component_el_radio_button = ElRadioButton;
161938
162330
  const _component_el_radio = ElRadio;
@@ -162136,16 +162528,26 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
162136
162528
  initData();
162137
162529
  actionName.value = props.field.actionName || "normal";
162138
162530
  if (!props.isSearch) {
162139
- allAction(props, emits, formData, actionName.value, !props.field.preps["needInitLink"]);
162531
+ allAction(
162532
+ props,
162533
+ emits,
162534
+ formData,
162535
+ actionName.value,
162536
+ !props.field.preps["needInitLink"]
162537
+ );
162140
162538
  }
162141
162539
  });
162142
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
162143
- if (val?.length > 0) {
162144
- props.field.preps["values"] = val;
162540
+ watch(
162541
+ () => formData.value[props.field.fieldName + "OptionList"],
162542
+ (val) => {
162543
+ if (val?.length > 0) {
162544
+ props.field.preps["values"] = val;
162545
+ }
162546
+ },
162547
+ {
162548
+ immediate: true
162145
162549
  }
162146
- }, {
162147
- immediate: true
162148
- });
162550
+ );
162149
162551
  return (_ctx, _cache) => {
162150
162552
  const _component_el_option = ElOption;
162151
162553
  const _component_el_select = ElSelect;
@@ -162186,7 +162588,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
162186
162588
 
162187
162589
  /* unplugin-vue-components disabled */
162188
162590
 
162189
- const selectItem = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-5779468f"]]);
162591
+ const selectItem = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-f819df72"]]);
162190
162592
 
162191
162593
  const selectItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
162192
162594
  __proto__: null,
@@ -162770,7 +163172,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
162770
163172
 
162771
163173
  /* unplugin-vue-components disabled */
162772
163174
 
162773
- const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-cb4cf8f6"]]);
163175
+ const signatureItem = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-e66a7fbe"]]);
162774
163176
 
162775
163177
  const signatureItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
162776
163178
  __proto__: null,
@@ -163280,7 +163682,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
163280
163682
 
163281
163683
  /* unplugin-vue-components disabled */
163282
163684
 
163283
- const timeItem = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-fc87b4d0"]]);
163685
+ const timeItem = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-99b3e9a6"]]);
163284
163686
 
163285
163687
  const timeItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163286
163688
  __proto__: null,
@@ -163362,7 +163764,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
163362
163764
 
163363
163765
  /* unplugin-vue-components disabled */
163364
163766
 
163365
- const timePickerItem = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-ac7614bf"]]);
163767
+ const timePickerItem = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-70a9b23e"]]);
163366
163768
 
163367
163769
  const timePickerItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163368
163770
  __proto__: null,
@@ -163415,9 +163817,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
163415
163817
  const initData = async () => {
163416
163818
  const dataa = await compDynamicData(props.field);
163417
163819
  if (dataa?.length) {
163418
- props.field.preps["values"] = dataa;
163820
+ props.field.preps["data"] = dataa;
163419
163821
  }
163420
- bakeData.value = JSON.parse(JSON.stringify(props.field?.preps["values"] ?? []));
163822
+ bakeData.value = JSON.parse(JSON.stringify(props.field?.preps["data"] ?? []));
163421
163823
  };
163422
163824
  onMounted(() => {
163423
163825
  if (!props.field.preps) {
@@ -163429,13 +163831,17 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
163429
163831
  allAction(props, emits, formData, actionName.value, true);
163430
163832
  }
163431
163833
  });
163432
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
163433
- if (val?.length > 0) {
163434
- props.field.preps["values"] = val;
163834
+ watch(
163835
+ () => formData.value[props.field.fieldName + "OptionList"],
163836
+ (val) => {
163837
+ if (val?.length > 0) {
163838
+ props.field.preps["data"] = val;
163839
+ }
163840
+ },
163841
+ {
163842
+ immediate: true
163435
163843
  }
163436
- }, {
163437
- immediate: true
163438
- });
163844
+ );
163439
163845
  return (_ctx, _cache) => {
163440
163846
  const _component_el_transfer = ElTransfer;
163441
163847
  const _component_starhorse_form_item = __unplugin_components_0$3;
@@ -163542,13 +163948,17 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
163542
163948
  allAction(props, emits, formData, actionName.value, true);
163543
163949
  }
163544
163950
  });
163545
- watch(() => formData.value[props.field.fieldName + "OptionList"], (val) => {
163546
- if (val?.length > 0) {
163547
- props.field.preps["data"] = val;
163951
+ watch(
163952
+ () => formData.value[props.field.fieldName + "OptionList"],
163953
+ (val) => {
163954
+ if (val?.length > 0) {
163955
+ props.field.preps["data"] = val;
163956
+ }
163957
+ },
163958
+ {
163959
+ immediate: true
163548
163960
  }
163549
- }, {
163550
- immediate: true
163551
- });
163961
+ );
163552
163962
  return (_ctx, _cache) => {
163553
163963
  const _component_el_tree_select = ElTreeSelect;
163554
163964
  const _component_starhorse_form_item = __unplugin_components_0$3;
@@ -163709,7 +164119,9 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
163709
164119
  await nextTick();
163710
164120
  let datas = formData.value[props.field.fieldName];
163711
164121
  if (datas) {
163712
- dataField.value.push({ url: (props.field.preps["context"] || "/system-config") + datas });
164122
+ dataField.value.push({
164123
+ url: (props.field.preps["context"] || "/system-config") + datas
164124
+ });
163713
164125
  }
163714
164126
  let temp = props.field.preps?.headers;
163715
164127
  if (temp && Object.keys(temp).length > 0) {
@@ -163721,7 +164133,11 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
163721
164133
  () => props.formFieldList,
163722
164134
  (val) => {
163723
164135
  if (val && Object.keys(val).includes(props.field.fieldName)) {
163724
- dataField.value = [{ url: (props.field.preps["context"] || "/system-config") + val[props.field.fieldName] }];
164136
+ dataField.value = [
164137
+ {
164138
+ url: (props.field.preps["context"] || "/system-config") + val[props.field.fieldName]
164139
+ }
164140
+ ];
163725
164141
  }
163726
164142
  },
163727
164143
  { immediate: true, deep: true }
@@ -163795,7 +164211,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
163795
164211
 
163796
164212
  /* unplugin-vue-components disabled */
163797
164213
 
163798
- const uploadItem = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-652f0049"]]);
164214
+ const uploadItem = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-54bdafa6"]]);
163799
164215
 
163800
164216
  const uploadItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
163801
164217
  __proto__: null,
@@ -163919,7 +164335,10 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
163919
164335
  if (fields) {
163920
164336
  name = fields.map((item) => item.sourceField)[0];
163921
164337
  }
163922
- userTableRef.value.$refs.employeeInfoRef.setDataInfo(name, formData.value[realName]);
164338
+ userTableRef.value.$refs.employeeInfoRef.setDataInfo(
164339
+ name,
164340
+ formData.value[realName]
164341
+ );
163923
164342
  });
163924
164343
  };
163925
164344
  return (_ctx, _cache) => {
@@ -172520,7 +172939,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
172520
172939
 
172521
172940
  /* unplugin-vue-components disabled */
172522
172941
 
172523
- const viewMarkdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-3eec27ad"]]);
172942
+ const viewMarkdownItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-15777ed5"]]);
172524
172943
 
172525
172944
  const viewMarkdownItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
172526
172945
  __proto__: null,
@@ -173998,14 +174417,16 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
173998
174417
  emits: ["selectItem"],
173999
174418
  setup(__props, { emit: __emit }) {
174000
174419
  useCssVars((_ctx) => ({
174001
- "0e267edb": unref(menuColor)
174420
+ "9ab310e4": unref(menuColor)
174002
174421
  }));
174003
174422
  const props = __props;
174004
174423
  const emits = __emit;
174005
174424
  const selectItem = (item) => {
174006
174425
  emits("selectItem", item);
174007
174426
  };
174008
- let menuColor = computed(() => props.level > 1 ? "var(--star-horse-shadow)" : "var(--star-horse-background)");
174427
+ let menuColor = computed(
174428
+ () => props.level > 1 ? "var(--star-horse-shadow)" : "var(--star-horse-background)"
174429
+ );
174009
174430
  return (_ctx, _cache) => {
174010
174431
  const _component_el_icon = ElIcon;
174011
174432
  const _component_MenuItem = resolveComponent("MenuItem", true);
@@ -174029,11 +174450,11 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
174029
174450
  default: withCtx(() => [
174030
174451
  (openBlock(true), createElementBlock(Fragment, null, renderList(__props.item[__props.preps.children ?? "children"], (sitem, key) => {
174031
174452
  return openBlock(), createBlock(_component_MenuItem, {
174032
- key: unref(compKey)(sitem, key),
174033
174453
  item: sitem,
174034
174454
  level: __props.level + 1,
174035
174455
  preps: __props.preps,
174036
- onSelectItem: selectItem
174456
+ onSelectItem: selectItem,
174457
+ key: unref(compKey)(sitem, key)
174037
174458
  }, null, 8, ["item", "level", "preps"]);
174038
174459
  }), 128))
174039
174460
  ]),
@@ -174063,7 +174484,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
174063
174484
 
174064
174485
  /* unplugin-vue-components disabled */
174065
174486
 
174066
- const MenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-fb7acce2"]]);
174487
+ const MenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-eec111f8"]]);
174067
174488
 
174068
174489
  const _sfc_main$f = /* @__PURE__ */ defineComponent({
174069
174490
  __name: "StarHorseMenu",
@@ -174117,7 +174538,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
174117
174538
 
174118
174539
  /* unplugin-vue-components disabled */
174119
174540
 
174120
- const StarHorseMenu = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-d982918d"]]);
174541
+ const StarHorseMenu = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-221dbeb4"]]);
174121
174542
 
174122
174543
  const StarHorseMenu$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
174123
174544
  __proto__: null,
@@ -174145,9 +174566,9 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
174145
174566
  },
174146
174567
  setup(__props) {
174147
174568
  useCssVars((_ctx) => ({
174148
- "50991ffe": __props.cursor,
174149
- "173812ae": __props.size,
174150
- "d188248a": __props.color
174569
+ "3655dfb4": __props.cursor,
174570
+ "dacda842": __props.size,
174571
+ "80a54176": __props.color
174151
174572
  }));
174152
174573
  const props = __props;
174153
174574
  const svgClass = computed(() => {
@@ -174184,7 +174605,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
174184
174605
 
174185
174606
  /* unplugin-vue-components disabled */
174186
174607
 
174187
- const StarHorseSvg = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-9abc3606"]]);
174608
+ const StarHorseSvg = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-8e96b37d"]]);
174188
174609
 
174189
174610
  const StarHorseSvg$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
174190
174611
  __proto__: null,
@@ -174268,7 +174689,7 @@ const useContinusConfigStore = defineStore(
174268
174689
  {}
174269
174690
  );
174270
174691
 
174271
- const items = /* #__PURE__ */ Object.assign({"/src/components/comp/ShDynamicForm.vue": () => Promise.resolve().then(() => ShDynamicForm),"/src/components/comp/ShForm.vue": () => Promise.resolve().then(() => ShForm$1),"/src/components/comp/ShTableListColumn.vue": () => Promise.resolve().then(() => ShTableListColumn),"/src/components/comp/StarHorseDataSelector.vue": () => Promise.resolve().then(() => StarHorseDataSelector$1),"/src/components/comp/StarHorseDataView.vue": () => Promise.resolve().then(() => StarHorseDataView),"/src/components/comp/StarHorseDataViewItems.vue": () => Promise.resolve().then(() => StarHorseDataViewItems),"/src/components/comp/StarHorseDataViewTable.vue": () => Promise.resolve().then(() => StarHorseDataViewTable),"/src/components/comp/StarHorseDialog.vue": () => Promise.resolve().then(() => StarHorseDialog),"/src/components/comp/StarHorseDraggable.vue": () => Promise.resolve().then(() => StarHorseDraggable$1),"/src/components/comp/StarHorseForm.vue": () => Promise.resolve().then(() => StarHorseForm),"/src/components/comp/StarHorseFormItem.vue": () => Promise.resolve().then(() => StarHorseFormItem),"/src/components/comp/StarHorseFormList.vue": () => Promise.resolve().then(() => StarHorseFormList),"/src/components/comp/StarHorseFormTable.vue": () => Promise.resolve().then(() => StarHorseFormTable),"/src/components/comp/StarHorseIcon.vue": () => Promise.resolve().then(() => StarHorseIcon),"/src/components/comp/StarHorseItem.vue": () => Promise.resolve().then(() => StarHorseItem),"/src/components/comp/StarHorseJsonEditor.vue": () => Promise.resolve().then(() => StarHorseJsonEditor),"/src/components/comp/StarHorsePopover.vue": () => Promise.resolve().then(() => StarHorsePopover),"/src/components/comp/StarHorseSearchComp.vue": () => Promise.resolve().then(() => StarHorseSearchComp),"/src/components/comp/StarHorseStaticTable.vue": () => Promise.resolve().then(() => StarHorseStaticTable$1),"/src/components/comp/StarHorseTableColumn.vue": () => Promise.resolve().then(() => StarHorseTableColumn),"/src/components/comp/StarHorseTableComp.vue": () => Promise.resolve().then(() => StarHorseTableComp),"/src/components/comp/StarHorseTableViewColumn.vue": () => Promise.resolve().then(() => StarHorseTableViewColumn),"/src/components/comp/StarHorseTree.vue": () => Promise.resolve().then(() => StarHorseTree$1),"/src/components/comp/items/UTableColumn.vue": () => Promise.resolve().then(() => UTableColumn),"/src/components/comp/items/boxItem.vue": () => Promise.resolve().then(() => boxItem),"/src/components/comp/items/cardItem.vue": () => Promise.resolve().then(() => cardItem$1),"/src/components/comp/items/collapseItem.vue": () => Promise.resolve().then(() => collapseItem$1),"/src/components/comp/items/dytableItem.vue": () => Promise.resolve().then(() => dytableItem$1),"/src/components/comp/items/otherItem.vue": () => Promise.resolve().then(() => otherItem),"/src/components/comp/items/tabItem.vue": () => Promise.resolve().then(() => tabItem$1),"/src/components/comp/items/tabPanelItem.vue": () => Promise.resolve().then(() => tabPanelItem),"/src/components/comp/items/tableColumn.vue": () => Promise.resolve().then(() => tableColumn),"/src/components/comp/items/tableItem.vue": () => Promise.resolve().then(() => tableItem),"/src/components/comp/items/tablebtn.vue": () => Promise.resolve().then(() => tablebtn),"/src/components/comp/items/viewBoxItem.vue": () => Promise.resolve().then(() => viewBoxItem),"/src/components/comp/items/viewCardItem.vue": () => Promise.resolve().then(() => viewCardItem$1),"/src/components/comp/items/viewCollapseItem.vue": () => Promise.resolve().then(() => viewCollapseItem$1),"/src/components/comp/items/viewDytableItem.vue": () => Promise.resolve().then(() => viewDytableItem$1),"/src/components/comp/items/viewOtherItem.vue": () => Promise.resolve().then(() => viewOtherItem),"/src/components/comp/items/viewTabItem.vue": () => Promise.resolve().then(() => viewTabItem$1),"/src/components/comp/items/viewTabPanelItem.vue": () => Promise.resolve().then(() => viewTabPanelItem),"/src/components/comp/items/viewTableItem.vue": () => Promise.resolve().then(() => viewTableItem),"/src/components/formcomp/container/box-container.vue": () => Promise.resolve().then(() => boxContainer$1),"/src/components/formcomp/container/card-container.vue": () => Promise.resolve().then(() => cardContainer$1),"/src/components/formcomp/container/collapse-container.vue": () => Promise.resolve().then(() => collapseContainer$1),"/src/components/formcomp/container/dytable-col.vue": () => Promise.resolve().then(() => dytableCol),"/src/components/formcomp/container/dytable-container.vue": () => Promise.resolve().then(() => dytableContainer$1),"/src/components/formcomp/container/group-box-container.vue": () => Promise.resolve().then(() => groupBoxContainer),"/src/components/formcomp/container/tab-container.vue": () => Promise.resolve().then(() => tabContainer$1),"/src/components/formcomp/container/table-container.vue": () => Promise.resolve().then(() => tableContainer$1),"/src/components/formcomp/items/area-item.vue": () => Promise.resolve().then(() => areaItem$1),"/src/components/formcomp/items/audio-item.vue": () => Promise.resolve().then(() => audioItem),"/src/components/formcomp/items/autocomplete-item.vue": () => Promise.resolve().then(() => autocompleteItem),"/src/components/formcomp/items/barcode-item.vue": () => Promise.resolve().then(() => barcodeItem),"/src/components/formcomp/items/base-json-item.vue": () => Promise.resolve().then(() => baseJsonItem),"/src/components/formcomp/items/button-item.vue": () => Promise.resolve().then(() => buttonItem$1),"/src/components/formcomp/items/cascade-item.vue": () => Promise.resolve().then(() => cascadeItem$1),"/src/components/formcomp/items/checkbox-item.vue": () => Promise.resolve().then(() => checkboxItem),"/src/components/formcomp/items/color-item.vue": () => Promise.resolve().then(() => colorItem),"/src/components/formcomp/items/cron-item.vue": () => Promise.resolve().then(() => cronItem$1),"/src/components/formcomp/items/datetime-item.vue": () => Promise.resolve().then(() => datetimeItem$1),"/src/components/formcomp/items/depart-item.vue": () => Promise.resolve().then(() => departItem),"/src/components/formcomp/items/dialog-input-item.vue": () => Promise.resolve().then(() => dialogInputItem$1),"/src/components/formcomp/items/divider-item.vue": () => Promise.resolve().then(() => dividerItem),"/src/components/formcomp/items/html-item.vue": () => Promise.resolve().then(() => htmlItem$1),"/src/components/formcomp/items/htmleditor-item.vue": () => Promise.resolve().then(() => htmleditorItem),"/src/components/formcomp/items/icon-item.vue": () => Promise.resolve().then(() => iconItem$1),"/src/components/formcomp/items/image-item.vue": () => Promise.resolve().then(() => imageItem$1),"/src/components/formcomp/items/input-item.vue": () => Promise.resolve().then(() => inputItem$1),"/src/components/formcomp/items/json-array-item.vue": () => Promise.resolve().then(() => jsonArrayItem),"/src/components/formcomp/items/json-item.vue": () => Promise.resolve().then(() => jsonItem),"/src/components/formcomp/items/markdown-item.vue": () => Promise.resolve().then(() => markdownItem$1),"/src/components/formcomp/items/number-item.vue": () => Promise.resolve().then(() => numberItem$1),"/src/components/formcomp/items/number-range-item.vue": () => Promise.resolve().then(() => numberRangeItem$1),"/src/components/formcomp/items/page-select-item.vue": () => Promise.resolve().then(() => pageSelectItem$1),"/src/components/formcomp/items/password-item.vue": () => Promise.resolve().then(() => passwordItem),"/src/components/formcomp/items/qrcode-item.vue": () => Promise.resolve().then(() => qrcodeItem),"/src/components/formcomp/items/radio-item.vue": () => Promise.resolve().then(() => radioItem),"/src/components/formcomp/items/rate-item.vue": () => Promise.resolve().then(() => rateItem),"/src/components/formcomp/items/select-item.vue": () => Promise.resolve().then(() => selectItem$1),"/src/components/formcomp/items/signature-item.vue": () => Promise.resolve().then(() => signatureItem$1),"/src/components/formcomp/items/slider-item.vue": () => Promise.resolve().then(() => sliderItem),"/src/components/formcomp/items/starhorse-form-item.vue": () => Promise.resolve().then(() => starhorseFormItem),"/src/components/formcomp/items/switch-item.vue": () => Promise.resolve().then(() => switchItem),"/src/components/formcomp/items/tag-item.vue": () => Promise.resolve().then(() => tagItem),"/src/components/formcomp/items/text-item.vue": () => Promise.resolve().then(() => textItem),"/src/components/formcomp/items/textarea-item.vue": () => Promise.resolve().then(() => textareaItem),"/src/components/formcomp/items/time-item.vue": () => Promise.resolve().then(() => timeItem$1),"/src/components/formcomp/items/time-picker-item.vue": () => Promise.resolve().then(() => timePickerItem$1),"/src/components/formcomp/items/transfer-item.vue": () => Promise.resolve().then(() => transferItem),"/src/components/formcomp/items/tselect-item.vue": () => Promise.resolve().then(() => tselectItem),"/src/components/formcomp/items/unknown-item.vue": () => Promise.resolve().then(() => unknownItem),"/src/components/formcomp/items/upload-item.vue": () => Promise.resolve().then(() => uploadItem$1),"/src/components/formcomp/items/user-item.vue": () => Promise.resolve().then(() => userItem),"/src/components/formcomp/items/usercomp-item.vue": () => Promise.resolve().then(() => usercompItem),"/src/components/formcomp/items/view-markdown-item.vue": () => Promise.resolve().then(() => viewMarkdownItem$1),"/src/components/system/ContentMenu.vue": () => Promise.resolve().then(() => ContentMenu),"/src/components/system/StarHorseButtonList.vue": () => Promise.resolve().then(() => StarHorseButtonList),"/src/components/system/StarHorseMenu.vue": () => Promise.resolve().then(() => StarHorseMenu$1),"/src/components/system/StarHorseSvg.vue": () => Promise.resolve().then(() => StarHorseSvg$1)
174692
+ const items = /* #__PURE__ */ Object.assign({"/src/components/comp/ShDynamicForm.vue": () => Promise.resolve().then(() => ShDynamicForm),"/src/components/comp/ShForm.vue": () => Promise.resolve().then(() => ShForm),"/src/components/comp/ShTableListColumn.vue": () => Promise.resolve().then(() => ShTableListColumn),"/src/components/comp/StarHorseDataSelector.vue": () => Promise.resolve().then(() => StarHorseDataSelector$1),"/src/components/comp/StarHorseDataView.vue": () => Promise.resolve().then(() => StarHorseDataView),"/src/components/comp/StarHorseDataViewItems.vue": () => Promise.resolve().then(() => StarHorseDataViewItems),"/src/components/comp/StarHorseDataViewTable.vue": () => Promise.resolve().then(() => StarHorseDataViewTable),"/src/components/comp/StarHorseDialog.vue": () => Promise.resolve().then(() => StarHorseDialog),"/src/components/comp/StarHorseDraggable.vue": () => Promise.resolve().then(() => StarHorseDraggable$1),"/src/components/comp/StarHorseForm.vue": () => Promise.resolve().then(() => StarHorseForm),"/src/components/comp/StarHorseFormItem.vue": () => Promise.resolve().then(() => StarHorseFormItem),"/src/components/comp/StarHorseFormList.vue": () => Promise.resolve().then(() => StarHorseFormList),"/src/components/comp/StarHorseFormTable.vue": () => Promise.resolve().then(() => StarHorseFormTable),"/src/components/comp/StarHorseIcon.vue": () => Promise.resolve().then(() => StarHorseIcon),"/src/components/comp/StarHorseItem.vue": () => Promise.resolve().then(() => StarHorseItem),"/src/components/comp/StarHorseJsonEditor.vue": () => Promise.resolve().then(() => StarHorseJsonEditor),"/src/components/comp/StarHorsePopover.vue": () => Promise.resolve().then(() => StarHorsePopover),"/src/components/comp/StarHorseSearchComp.vue": () => Promise.resolve().then(() => StarHorseSearchComp),"/src/components/comp/StarHorseStaticTable.vue": () => Promise.resolve().then(() => StarHorseStaticTable$1),"/src/components/comp/StarHorseTableColumn.vue": () => Promise.resolve().then(() => StarHorseTableColumn),"/src/components/comp/StarHorseTableComp.vue": () => Promise.resolve().then(() => StarHorseTableComp),"/src/components/comp/StarHorseTableViewColumn.vue": () => Promise.resolve().then(() => StarHorseTableViewColumn),"/src/components/comp/StarHorseTree.vue": () => Promise.resolve().then(() => StarHorseTree$1),"/src/components/comp/items/UTableColumn.vue": () => Promise.resolve().then(() => UTableColumn),"/src/components/comp/items/boxItem.vue": () => Promise.resolve().then(() => boxItem),"/src/components/comp/items/cardItem.vue": () => Promise.resolve().then(() => cardItem$1),"/src/components/comp/items/collapseItem.vue": () => Promise.resolve().then(() => collapseItem$1),"/src/components/comp/items/dytableItem.vue": () => Promise.resolve().then(() => dytableItem$1),"/src/components/comp/items/otherItem.vue": () => Promise.resolve().then(() => otherItem),"/src/components/comp/items/tabItem.vue": () => Promise.resolve().then(() => tabItem$1),"/src/components/comp/items/tabPanelItem.vue": () => Promise.resolve().then(() => tabPanelItem),"/src/components/comp/items/tableColumn.vue": () => Promise.resolve().then(() => tableColumn),"/src/components/comp/items/tableItem.vue": () => Promise.resolve().then(() => tableItem),"/src/components/comp/items/tablebtn.vue": () => Promise.resolve().then(() => tablebtn),"/src/components/comp/items/viewBoxItem.vue": () => Promise.resolve().then(() => viewBoxItem),"/src/components/comp/items/viewCardItem.vue": () => Promise.resolve().then(() => viewCardItem$1),"/src/components/comp/items/viewCollapseItem.vue": () => Promise.resolve().then(() => viewCollapseItem$1),"/src/components/comp/items/viewDytableItem.vue": () => Promise.resolve().then(() => viewDytableItem$1),"/src/components/comp/items/viewOtherItem.vue": () => Promise.resolve().then(() => viewOtherItem),"/src/components/comp/items/viewTabItem.vue": () => Promise.resolve().then(() => viewTabItem$1),"/src/components/comp/items/viewTabPanelItem.vue": () => Promise.resolve().then(() => viewTabPanelItem),"/src/components/comp/items/viewTableItem.vue": () => Promise.resolve().then(() => viewTableItem),"/src/components/formcomp/container/box-container.vue": () => Promise.resolve().then(() => boxContainer$1),"/src/components/formcomp/container/card-container.vue": () => Promise.resolve().then(() => cardContainer$1),"/src/components/formcomp/container/collapse-container.vue": () => Promise.resolve().then(() => collapseContainer$1),"/src/components/formcomp/container/dytable-col.vue": () => Promise.resolve().then(() => dytableCol),"/src/components/formcomp/container/dytable-container.vue": () => Promise.resolve().then(() => dytableContainer$1),"/src/components/formcomp/container/group-box-container.vue": () => Promise.resolve().then(() => groupBoxContainer),"/src/components/formcomp/container/tab-container.vue": () => Promise.resolve().then(() => tabContainer$1),"/src/components/formcomp/container/table-container.vue": () => Promise.resolve().then(() => tableContainer$1),"/src/components/formcomp/items/area-item.vue": () => Promise.resolve().then(() => areaItem$1),"/src/components/formcomp/items/audio-item.vue": () => Promise.resolve().then(() => audioItem),"/src/components/formcomp/items/autocomplete-item.vue": () => Promise.resolve().then(() => autocompleteItem),"/src/components/formcomp/items/barcode-item.vue": () => Promise.resolve().then(() => barcodeItem),"/src/components/formcomp/items/base-json-item.vue": () => Promise.resolve().then(() => baseJsonItem),"/src/components/formcomp/items/button-item.vue": () => Promise.resolve().then(() => buttonItem$1),"/src/components/formcomp/items/cascade-item.vue": () => Promise.resolve().then(() => cascadeItem$1),"/src/components/formcomp/items/checkbox-item.vue": () => Promise.resolve().then(() => checkboxItem),"/src/components/formcomp/items/color-item.vue": () => Promise.resolve().then(() => colorItem),"/src/components/formcomp/items/cron-item.vue": () => Promise.resolve().then(() => cronItem$1),"/src/components/formcomp/items/datetime-item.vue": () => Promise.resolve().then(() => datetimeItem$1),"/src/components/formcomp/items/depart-item.vue": () => Promise.resolve().then(() => departItem),"/src/components/formcomp/items/dialog-input-item.vue": () => Promise.resolve().then(() => dialogInputItem$1),"/src/components/formcomp/items/divider-item.vue": () => Promise.resolve().then(() => dividerItem),"/src/components/formcomp/items/html-item.vue": () => Promise.resolve().then(() => htmlItem$1),"/src/components/formcomp/items/htmleditor-item.vue": () => Promise.resolve().then(() => htmleditorItem),"/src/components/formcomp/items/icon-item.vue": () => Promise.resolve().then(() => iconItem$1),"/src/components/formcomp/items/image-item.vue": () => Promise.resolve().then(() => imageItem$1),"/src/components/formcomp/items/input-item.vue": () => Promise.resolve().then(() => inputItem$1),"/src/components/formcomp/items/json-array-item.vue": () => Promise.resolve().then(() => jsonArrayItem),"/src/components/formcomp/items/json-item.vue": () => Promise.resolve().then(() => jsonItem),"/src/components/formcomp/items/markdown-item.vue": () => Promise.resolve().then(() => markdownItem$1),"/src/components/formcomp/items/number-item.vue": () => Promise.resolve().then(() => numberItem$1),"/src/components/formcomp/items/number-range-item.vue": () => Promise.resolve().then(() => numberRangeItem$1),"/src/components/formcomp/items/page-select-item.vue": () => Promise.resolve().then(() => pageSelectItem$1),"/src/components/formcomp/items/password-item.vue": () => Promise.resolve().then(() => passwordItem),"/src/components/formcomp/items/qrcode-item.vue": () => Promise.resolve().then(() => qrcodeItem),"/src/components/formcomp/items/radio-item.vue": () => Promise.resolve().then(() => radioItem),"/src/components/formcomp/items/rate-item.vue": () => Promise.resolve().then(() => rateItem),"/src/components/formcomp/items/select-item.vue": () => Promise.resolve().then(() => selectItem$1),"/src/components/formcomp/items/signature-item.vue": () => Promise.resolve().then(() => signatureItem$1),"/src/components/formcomp/items/slider-item.vue": () => Promise.resolve().then(() => sliderItem),"/src/components/formcomp/items/starhorse-form-item.vue": () => Promise.resolve().then(() => starhorseFormItem),"/src/components/formcomp/items/switch-item.vue": () => Promise.resolve().then(() => switchItem),"/src/components/formcomp/items/tag-item.vue": () => Promise.resolve().then(() => tagItem),"/src/components/formcomp/items/text-item.vue": () => Promise.resolve().then(() => textItem),"/src/components/formcomp/items/textarea-item.vue": () => Promise.resolve().then(() => textareaItem),"/src/components/formcomp/items/time-item.vue": () => Promise.resolve().then(() => timeItem$1),"/src/components/formcomp/items/time-picker-item.vue": () => Promise.resolve().then(() => timePickerItem$1),"/src/components/formcomp/items/transfer-item.vue": () => Promise.resolve().then(() => transferItem),"/src/components/formcomp/items/tselect-item.vue": () => Promise.resolve().then(() => tselectItem),"/src/components/formcomp/items/unknown-item.vue": () => Promise.resolve().then(() => unknownItem),"/src/components/formcomp/items/upload-item.vue": () => Promise.resolve().then(() => uploadItem$1),"/src/components/formcomp/items/user-item.vue": () => Promise.resolve().then(() => userItem),"/src/components/formcomp/items/usercomp-item.vue": () => Promise.resolve().then(() => usercompItem),"/src/components/formcomp/items/view-markdown-item.vue": () => Promise.resolve().then(() => viewMarkdownItem$1),"/src/components/system/ContentMenu.vue": () => Promise.resolve().then(() => ContentMenu),"/src/components/system/StarHorseButtonList.vue": () => Promise.resolve().then(() => StarHorseButtonList),"/src/components/system/StarHorseMenu.vue": () => Promise.resolve().then(() => StarHorseMenu$1),"/src/components/system/StarHorseSvg.vue": () => Promise.resolve().then(() => StarHorseSvg$1)
174272
174693
 
174273
174694
 
174274
174695
 
@@ -175045,7 +175466,12 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
175045
175466
  size: __props.compSize,
175046
175467
  label: headerItem.preps?.hideLabel ? "" : headerItem.label,
175047
175468
  required: headerItem.required,
175048
- prop: unref(loadProp)(unref(getPrefix)(cardItem, __props.propPrefix, __props.dataIndex, key2), headerItem.fieldName, -1, -1),
175469
+ prop: unref(loadProp)(
175470
+ unref(getPrefix)(cardItem, __props.propPrefix, __props.dataIndex, key2),
175471
+ headerItem.fieldName,
175472
+ -1,
175473
+ -1
175474
+ ),
175049
175475
  labelPosition: __props.parentPreps?.labelPosition,
175050
175476
  rules: unref(validMsg)(headerItem, dataForm.value)
175051
175477
  }, {
@@ -175097,7 +175523,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
175097
175523
 
175098
175524
  /* unplugin-vue-components disabled */
175099
175525
 
175100
- const cardItem = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-b1149e92"]]);
175526
+ const cardItem = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-fe9df9ac"]]);
175101
175527
 
175102
175528
  const cardItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175103
175529
  __proto__: null,
@@ -175218,7 +175644,7 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
175218
175644
 
175219
175645
  /* unplugin-vue-components disabled */
175220
175646
 
175221
- const collapseItem = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-c13983cf"]]);
175647
+ const collapseItem = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-eb12e982"]]);
175222
175648
 
175223
175649
  const collapseItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175224
175650
  __proto__: null,
@@ -175327,7 +175753,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
175327
175753
 
175328
175754
  /* unplugin-vue-components disabled */
175329
175755
 
175330
- const dytableItem = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-9e27b198"]]);
175756
+ const dytableItem = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-ca735455"]]);
175331
175757
 
175332
175758
  const dytableItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175333
175759
  __proto__: null,
@@ -175502,7 +175928,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
175502
175928
 
175503
175929
  /* unplugin-vue-components disabled */
175504
175930
 
175505
- const __unplugin_components_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-5e581477"]]);
175931
+ const __unplugin_components_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-9b1b4c46"]]);
175506
175932
 
175507
175933
  const tabPanelItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175508
175934
  __proto__: null,
@@ -175641,7 +176067,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
175641
176067
 
175642
176068
  /* unplugin-vue-components disabled */
175643
176069
 
175644
- const tabItem = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-06654001"]]);
176070
+ const tabItem = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-68cfc290"]]);
175645
176071
 
175646
176072
  const tabItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175647
176073
  __proto__: null,
@@ -175782,7 +176208,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
175782
176208
 
175783
176209
  /* unplugin-vue-components disabled */
175784
176210
 
175785
- const viewCardItem = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-157469e0"]]);
176211
+ const viewCardItem = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-39dcf76b"]]);
175786
176212
 
175787
176213
  const viewCardItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175788
176214
  __proto__: null,
@@ -175859,7 +176285,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
175859
176285
 
175860
176286
  /* unplugin-vue-components disabled */
175861
176287
 
175862
- const viewCollapseItem = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-67980705"]]);
176288
+ const viewCollapseItem = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-7d497f01"]]);
175863
176289
 
175864
176290
  const viewCollapseItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175865
176291
  __proto__: null,
@@ -175946,7 +176372,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
175946
176372
 
175947
176373
  /* unplugin-vue-components disabled */
175948
176374
 
175949
- const viewDytableItem = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-788b9083"]]);
176375
+ const viewDytableItem = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-64cc620c"]]);
175950
176376
 
175951
176377
  const viewDytableItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
175952
176378
  __proto__: null,
@@ -176079,7 +176505,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
176079
176505
 
176080
176506
  /* unplugin-vue-components disabled */
176081
176507
 
176082
- const __unplugin_components_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-55d3c4fc"]]);
176508
+ const __unplugin_components_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-b2d10fac"]]);
176083
176509
 
176084
176510
  const viewTabPanelItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
176085
176511
  __proto__: null,
@@ -176167,7 +176593,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
176167
176593
 
176168
176594
  /* unplugin-vue-components disabled */
176169
176595
 
176170
- const viewTabItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d483ef4b"]]);
176596
+ const viewTabItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-bb00b470"]]);
176171
176597
 
176172
176598
  const viewTabItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
176173
176599
  __proto__: null,
@@ -176298,4 +176724,4 @@ const stringStylesDT93GIY_ = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defi
176298
176724
  fullWidthButton: e
176299
176725
  }, Symbol.toStringTag, { value: 'Module' }));
176300
176726
 
176301
- export { __unplugin_components_5 as ContentMenu, DEFAULT_INITIAL_Z_INDEX, _sfc_main$1O as ShDynamicForm, 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, __unplugin_components_1$2 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 };
176727
+ 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 };