@kmkf-fe-packages/kmkf-work-order-service-component 2.2.44-beta.50 → 2.2.44-beta.51
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,6 +236,7 @@ export declare const selectCurrentNodeDetail: (state: FlowTemplateDetailState) =
|
|
|
236
236
|
}[];
|
|
237
237
|
} | undefined;
|
|
238
238
|
} | undefined;
|
|
239
|
+
uniqueKey: string;
|
|
239
240
|
} | undefined;
|
|
240
241
|
} | undefined;
|
|
241
242
|
export declare const selectTid: (state: FlowTemplateDetailState) => string;
|
|
@@ -172,18 +172,22 @@ export var DETAIL_ITEM_LIST = [{
|
|
|
172
172
|
dataIndex: 'logisticsCompany',
|
|
173
173
|
render: function render(value) {
|
|
174
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
|
|
177
|
-
|
|
175
|
+
return Array.isArray(newValue) ? newValue === null || newValue === void 0 ? void 0 : newValue.map(function (item, index) {
|
|
176
|
+
return /*#__PURE__*/React.createElement("p", {
|
|
177
|
+
key: index
|
|
178
|
+
}, "\u5305\u88F9", index + 1, "\uFF1A", item.logisticsName);
|
|
179
|
+
}) : newValue;
|
|
178
180
|
}
|
|
179
181
|
}, {
|
|
180
182
|
title: '物流单号',
|
|
181
183
|
dataIndex: 'logisticsNo',
|
|
182
184
|
render: function render(value) {
|
|
183
185
|
var newValue = value ? JSON.parse(value) : '';
|
|
184
|
-
return Array.isArray(newValue) ? newValue === null || newValue === void 0 ? void 0 : newValue.map(function (item) {
|
|
185
|
-
return
|
|
186
|
-
|
|
186
|
+
return Array.isArray(newValue) ? newValue === null || newValue === void 0 ? void 0 : newValue.map(function (item, index) {
|
|
187
|
+
return /*#__PURE__*/React.createElement("p", {
|
|
188
|
+
key: index
|
|
189
|
+
}, "\u5305\u88F9", index + 1, "\uFF1A", item.logisticsNo);
|
|
190
|
+
}) : newValue;
|
|
187
191
|
}
|
|
188
192
|
},
|
|
189
193
|
// {
|
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.
|
|
3
|
+
"version": "2.2.44-beta.51",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@ant-design/icons": "^4.7.0",
|
|
35
35
|
"@kmkf-fe-packages/basic-components": "2.2.44-beta.50",
|
|
36
36
|
"@kmkf-fe-packages/kmkf-utils": "2.2.44-beta.50",
|
|
37
|
-
"@kmkf-fe-packages/services-components": "2.2.44-beta.
|
|
37
|
+
"@kmkf-fe-packages/services-components": "2.2.44-beta.51",
|
|
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": "
|
|
78
|
+
"gitHead": "0a0f6ca9182adec86b091d8cbd963b4c55b4a90a",
|
|
79
79
|
"gitHooks": {
|
|
80
80
|
"pre-commit": "lint-staged"
|
|
81
81
|
}
|