fast-element-plus 1.0.0-alpha.11 → 1.0.0-alpha.13

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.
@@ -20394,8 +20394,8 @@
20394
20394
  submitInfoField: {
20395
20395
  type: utils.definePropType(Object),
20396
20396
  default: () => ({
20397
- submitClerkName: "submitClerkName",
20398
- submitTime: "submitTime"
20397
+ submitClerkName: "createdUserName",
20398
+ submitTime: "createdTime"
20399
20399
  })
20400
20400
  }
20401
20401
  },
@@ -20533,8 +20533,8 @@
20533
20533
  }) => {
20534
20534
  if (props.type === "submitInfo") {
20535
20535
  let _slot;
20536
- const submitClerkName = row[props.submitInfoField?.submitClerkName ?? "submitClerkName"];
20537
- const submitTime = row[props.submitInfoField?.submitTime ?? "submitTime"];
20536
+ const submitClerkName = row[props.submitInfoField?.submitClerkName ?? "createdUserName"];
20537
+ const submitTime = row[props.submitInfoField?.submitTime ?? "createdTime"];
20538
20538
  return vue.createVNode(vue.Fragment, null, [vue.createVNode("div", {
20539
20539
  "style": "white-space: nowrap; overflow: hidden; text-overflow: ellipsis;",
20540
20540
  "title": submitTime
@@ -20713,7 +20713,7 @@
20713
20713
  "lazy": true,
20714
20714
  "src": row[props.prop],
20715
20715
  "fit": "cover",
20716
- "thumb": true
20716
+ "original": true
20717
20717
  }, null) : vue.createVNode(ElementPlus.ElImage, {
20718
20718
  "class": "fa-image",
20719
20719
  "lazy": true,
@@ -24094,12 +24094,12 @@
24094
24094
  /** @description 折叠搜素 */
24095
24095
  collapsedSearch: {
24096
24096
  type: Boolean,
24097
- required: true
24097
+ default: true
24098
24098
  },
24099
24099
  /** @description 高级搜素抽屉 */
24100
24100
  advancedSearchDrawer: {
24101
24101
  type: Boolean,
24102
- required: true
24102
+ default: false
24103
24103
  },
24104
24104
  /** @description Grid布局列配置 */
24105
24105
  cols: {
@@ -29621,7 +29621,7 @@
29621
29621
  if (isNil(options?.closeOnPressEscape)) {
29622
29622
  options.closeOnPressEscape = false;
29623
29623
  }
29624
- if (isNil(options?.beforeClose)) {
29624
+ if (!isNil(options?.beforeClose)) {
29625
29625
  const localBeforeClose = options.beforeClose;
29626
29626
  const localConfirmButtonText = options?.confirmButtonText;
29627
29627
  const localShowCancelButton = options?.showCancelButton;