@kmkf-fe-packages/kmkf-work-order-service-component 2.2.31-beta.77 → 2.2.31-beta.78

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.
@@ -490,7 +490,10 @@ export var DETAIL_ITEM_LIST = [{
490
490
  dataIndex: 'complaintWorkOrderStatus'
491
491
  }, {
492
492
  title: '判定结果',
493
- dataIndex: 'judgmentResult'
493
+ dataIndex: 'judgeResult',
494
+ render: function render(value) {
495
+ return value === 1 ? '同意' : value === 2 ? '不同意' : value;
496
+ }
494
497
  }, {
495
498
  title: '师傅说明',
496
499
  dataIndex: 'workerExplanation'
@@ -119,7 +119,7 @@ export declare type DetailType = {
119
119
  initiateImages: string;
120
120
  complaintWorkOrderStatus: string;
121
121
  complaintOrderStatus: string;
122
- judgmentResult: string;
122
+ judgeResult: 1 | 2;
123
123
  workerExplanation: string;
124
124
  customerServiceRemark: string;
125
125
  isCompensation: 0 | 1;
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.77",
3
+ "version": "2.2.31-beta.78",
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": "d7c5aae8383190143985343943f30c6e2c015f06",
78
+ "gitHead": "ed9cf501d11575c07dfb34da8f2d1053acf093d7",
79
79
  "gitHooks": {
80
80
  "pre-commit": "lint-staged"
81
81
  }