@kmkf-fe-packages/kmkf-work-order-service-component 2.2.31-beta.72 → 2.2.31-beta.73

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.
@@ -340,7 +340,10 @@ export var DETAIL_ITEM_LIST = [{
340
340
  dataIndex: 'applyStatus'
341
341
  }, {
342
342
  title: '处理结果',
343
- dataIndex: 'processResult'
343
+ dataIndex: 'processResult',
344
+ render: function render(value) {
345
+ return value === '1' ? '同意' : value === '2' ? '不同意' : value;
346
+ }
344
347
  }, {
345
348
  title: '费用承担方',
346
349
  dataIndex: 'payer'
@@ -379,7 +382,10 @@ export var DETAIL_ITEM_LIST = [{
379
382
  dataIndex: 'applyStatus'
380
383
  }, {
381
384
  title: '处理结果',
382
- dataIndex: 'processResult'
385
+ dataIndex: 'processResult',
386
+ render: function render(value) {
387
+ return value === '1' ? '同意' : value === '2' ? '不同意' : value;
388
+ }
383
389
  }, {
384
390
  title: '承担金额',
385
391
  dataIndex: 'bearAmount'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/kmkf-work-order-service-component",
3
- "version": "2.2.31-beta.72",
3
+ "version": "2.2.31-beta.73",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -75,7 +75,7 @@
75
75
  "publishConfig": {
76
76
  "access": "public"
77
77
  },
78
- "gitHead": "2863a407e4b51b560fc7505310f16c36db7bc99b",
78
+ "gitHead": "0e06c7eee0e3d99bf04a8ff491f81e84d6bf9b62",
79
79
  "gitHooks": {
80
80
  "pre-commit": "lint-staged"
81
81
  }