@ebiz/designer-components 0.1.114 → 0.1.115

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.mjs CHANGED
@@ -60876,14 +60876,16 @@ const ZU = /* @__PURE__ */ mt(t8e, [["render", n8e], ["__scopeId", "data-v-d22af
60876
60876
  APPROVED: "success",
60877
60877
  ACTIVE: "primary",
60878
60878
  COMPLETED: "success",
60879
- SUSPENDED: "warning"
60879
+ SUSPENDED: "warning",
60880
+ REVOKE: "default"
60880
60881
  })[M] || "default", f = (M) => ({
60881
60882
  CANCELED: "已取消",
60882
60883
  REJECTED: "已驳回",
60883
60884
  APPROVED: "已通过",
60884
60885
  ACTIVE: "进行中",
60885
60886
  COMPLETED: "已完成",
60886
- SUSPENDED: "已暂停"
60887
+ SUSPENDED: "已暂停",
60888
+ REVOKE: "已撤销"
60887
60889
  })[M] || M, v = (M) => {
60888
60890
  switch (M.nodeStatus) {
60889
60891
  case "COMPLETED":
@@ -61429,7 +61431,7 @@ const ZU = /* @__PURE__ */ mt(t8e, [["render", n8e], ["__scopeId", "data-v-d22af
61429
61431
  ]);
61430
61432
  };
61431
61433
  }
61432
- }), gNe = /* @__PURE__ */ mt(pNe, [["__scopeId", "data-v-87be99ee"]]), hNe = { class: "ebiz-approval-container" }, mNe = { class: "detail-container" }, yNe = { class: "title" }, bNe = { class: "block-detail" }, wNe = { class: "approval-area" }, CNe = /* @__PURE__ */ pe({
61434
+ }), gNe = /* @__PURE__ */ mt(pNe, [["__scopeId", "data-v-01349b28"]]), hNe = { class: "ebiz-approval-container" }, mNe = { class: "detail-container" }, yNe = { class: "title" }, bNe = { class: "block-detail" }, wNe = { class: "approval-area" }, CNe = /* @__PURE__ */ pe({
61433
61435
  __name: "EbizApprovalDetail",
61434
61436
  props: {
61435
61437
  businessKey: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebiz/designer-components",
3
- "version": "0.1.114",
3
+ "version": "0.1.115",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -466,7 +466,8 @@ const getProcessStatusTheme = (status) => {
466
466
  'APPROVED': "success",
467
467
  'ACTIVE': 'primary',
468
468
  'COMPLETED': 'success',
469
- 'SUSPENDED': 'warning'
469
+ 'SUSPENDED': 'warning',
470
+ 'REVOKE': 'default'
470
471
  }
471
472
  return statusMap[status] || 'default'
472
473
  }
@@ -479,7 +480,8 @@ const getProcessStatusText = (status) => {
479
480
  'APPROVED': "已通过",
480
481
  'ACTIVE': '进行中',
481
482
  'COMPLETED': '已完成',
482
- 'SUSPENDED': '已暂停'
483
+ 'SUSPENDED': '已暂停',
484
+ 'REVOKE': '已撤销'
483
485
  }
484
486
  return statusMap[status] || status
485
487
  }