@kmkf-fe-packages/kmkf-work-order-service-component 2.2.44-beta.49 → 2.2.44-beta.50

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.
@@ -236,7 +236,6 @@ export declare const selectCurrentNodeDetail: (state: FlowTemplateDetailState) =
236
236
  }[];
237
237
  } | undefined;
238
238
  } | undefined;
239
- uniqueKey: string;
240
239
  } | undefined;
241
240
  } | undefined;
242
241
  export declare const selectTid: (state: FlowTemplateDetailState) => string;
@@ -169,10 +169,22 @@ export var DETAIL_ITEM_LIST = [{
169
169
  render: renderTime
170
170
  }, {
171
171
  title: '物流公司名称',
172
- dataIndex: 'logisticsCompany'
172
+ dataIndex: 'logisticsCompany',
173
+ render: function render(value) {
174
+ var newValue = value ? JSON.parse(value) : '';
175
+ return Array.isArray(newValue) ? newValue === null || newValue === void 0 ? void 0 : newValue.map(function (item) {
176
+ return item.logisticsName;
177
+ }).join('、') : newValue;
178
+ }
173
179
  }, {
174
180
  title: '物流单号',
175
- dataIndex: 'logisticsNo'
181
+ dataIndex: 'logisticsNo',
182
+ render: function render(value) {
183
+ var newValue = value ? JSON.parse(value) : '';
184
+ return Array.isArray(newValue) ? newValue === null || newValue === void 0 ? void 0 : newValue.map(function (item) {
185
+ return item.logisticsNo;
186
+ }).join('、') : newValue;
187
+ }
176
188
  },
177
189
  // {
178
190
  // title: '是否核销单',
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.44-beta.49",
3
+ "version": "2.2.44-beta.50",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -32,9 +32,9 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@ant-design/icons": "^4.7.0",
35
- "@kmkf-fe-packages/basic-components": "2.2.44-beta.49",
36
- "@kmkf-fe-packages/kmkf-utils": "2.2.44-beta.49",
37
- "@kmkf-fe-packages/services-components": "2.2.44-beta.49",
35
+ "@kmkf-fe-packages/basic-components": "2.2.44-beta.50",
36
+ "@kmkf-fe-packages/kmkf-utils": "2.2.44-beta.50",
37
+ "@kmkf-fe-packages/services-components": "2.2.44-beta.50",
38
38
  "@reduxjs/toolkit": "^1.8.5",
39
39
  "ahooks": "^3.7.4",
40
40
  "copy-to-clipboard": "^3.3.3",
@@ -75,7 +75,7 @@
75
75
  "publishConfig": {
76
76
  "access": "public"
77
77
  },
78
- "gitHead": "16a6287f3a0526364fc7a7a8c7e2a9f89215b7ba",
78
+ "gitHead": "867325f7f5c34a9c37415c74365e5be151e66952",
79
79
  "gitHooks": {
80
80
  "pre-commit": "lint-staged"
81
81
  }