@kmkf-fe-packages/basic-components 1.4.3-rc.1 → 1.6.0-beta.0
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.esm.js +623 -281
- package/dist/index.js +620 -277
- package/dist/src/apaas/ApaasInput/index.d.ts +1 -0
- package/dist/src/apaas/SubForm/index.d.ts +27 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -1,372 +1,386 @@
|
|
|
1
|
-
import React, { useRef, useState, useEffect, forwardRef, useImperativeHandle, useMemo } from 'react';
|
|
2
|
-
import { Cascader, DatePicker, InputNumber, Input, Select, Upload, Image, message, Radio, Space, Spin, Modal, Button, Checkbox, Row, Col, Slider, Rate, Form,
|
|
1
|
+
import React, { useRef, useState, useEffect, forwardRef, useImperativeHandle, useMemo, useCallback } from 'react';
|
|
2
|
+
import { Cascader, DatePicker, InputNumber, Input, Select, Upload, Image, message, Radio, Space, Spin, Modal, Button, Checkbox, Row, Col, Slider, Rate, Form, Popover, Table, Tabs, ConfigProvider, Pagination } from 'antd';
|
|
3
3
|
import { EyeOutlined, DeleteOutlined, CloseCircleOutlined, CaretUpOutlined } from '@ant-design/icons';
|
|
4
4
|
import request, { extend as extend$1 } from 'umi-request';
|
|
5
5
|
import { CopyToClipboard } from 'react-copy-to-clipboard';
|
|
6
6
|
import { AddressData, BsAddressData, WdtAddressData, request as request$1, ExpressData, uuid, LogisticsAddressData, WdtSendData, WDT_ORDER_TYPE_MAP } from '@kmkf-fe-packages/kmkf-utils';
|
|
7
|
+
import { debounce, cloneDeep, difference, differenceWith } from 'lodash';
|
|
8
|
+
import { useUpdateEffect, useDebounceEffect } from 'ahooks';
|
|
7
9
|
import zhCN from 'antd/lib/locale/zh_CN';
|
|
8
|
-
import { cloneDeep, difference, differenceWith } from 'lodash';
|
|
9
|
-
import { useDebounceEffect } from 'ahooks';
|
|
10
10
|
import pubsub from 'pubsub-js';
|
|
11
11
|
import BigNumber from 'bignumber.js';
|
|
12
12
|
|
|
13
|
-
function _iterableToArrayLimit(
|
|
14
|
-
var
|
|
15
|
-
if (null !=
|
|
16
|
-
var
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
13
|
+
function _iterableToArrayLimit(r, l) {
|
|
14
|
+
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
15
|
+
if (null != t) {
|
|
16
|
+
var e,
|
|
17
|
+
n,
|
|
18
|
+
i,
|
|
19
|
+
u,
|
|
20
|
+
a = [],
|
|
21
|
+
f = !0,
|
|
22
|
+
o = !1;
|
|
23
23
|
try {
|
|
24
|
-
if (
|
|
25
|
-
if (Object(
|
|
26
|
-
|
|
27
|
-
} else for (; !(
|
|
28
|
-
} catch (
|
|
29
|
-
|
|
24
|
+
if (i = (t = t.call(r)).next, 0 === l) {
|
|
25
|
+
if (Object(t) !== t) return;
|
|
26
|
+
f = !1;
|
|
27
|
+
} else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
|
|
28
|
+
} catch (r) {
|
|
29
|
+
o = !0, n = r;
|
|
30
30
|
} finally {
|
|
31
31
|
try {
|
|
32
|
-
if (!
|
|
32
|
+
if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;
|
|
33
33
|
} finally {
|
|
34
|
-
if (
|
|
34
|
+
if (o) throw n;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
return
|
|
37
|
+
return a;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
function ownKeys(
|
|
41
|
-
var
|
|
40
|
+
function ownKeys(e, r) {
|
|
41
|
+
var t = Object.keys(e);
|
|
42
42
|
if (Object.getOwnPropertySymbols) {
|
|
43
|
-
var
|
|
44
|
-
|
|
45
|
-
return Object.getOwnPropertyDescriptor(
|
|
46
|
-
})),
|
|
43
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
44
|
+
r && (o = o.filter(function (r) {
|
|
45
|
+
return Object.getOwnPropertyDescriptor(e, r).enumerable;
|
|
46
|
+
})), t.push.apply(t, o);
|
|
47
47
|
}
|
|
48
|
-
return
|
|
49
|
-
}
|
|
50
|
-
function _objectSpread2(
|
|
51
|
-
for (var
|
|
52
|
-
var
|
|
53
|
-
|
|
54
|
-
_defineProperty(
|
|
55
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(
|
|
56
|
-
Object.defineProperty(
|
|
48
|
+
return t;
|
|
49
|
+
}
|
|
50
|
+
function _objectSpread2(e) {
|
|
51
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
52
|
+
var t = null != arguments[r] ? arguments[r] : {};
|
|
53
|
+
r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {
|
|
54
|
+
_defineProperty(e, r, t[r]);
|
|
55
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
|
|
56
|
+
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
|
|
57
57
|
});
|
|
58
58
|
}
|
|
59
|
-
return
|
|
59
|
+
return e;
|
|
60
60
|
}
|
|
61
61
|
function _regeneratorRuntime() {
|
|
62
62
|
_regeneratorRuntime = function () {
|
|
63
|
-
return
|
|
64
|
-
};
|
|
65
|
-
var
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
return e;
|
|
64
|
+
};
|
|
65
|
+
var t,
|
|
66
|
+
e = {},
|
|
67
|
+
r = Object.prototype,
|
|
68
|
+
n = r.hasOwnProperty,
|
|
69
|
+
o = Object.defineProperty || function (t, e, r) {
|
|
70
|
+
t[e] = r.value;
|
|
70
71
|
},
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
function define(
|
|
76
|
-
return Object.defineProperty(
|
|
77
|
-
value:
|
|
72
|
+
i = "function" == typeof Symbol ? Symbol : {},
|
|
73
|
+
a = i.iterator || "@@iterator",
|
|
74
|
+
c = i.asyncIterator || "@@asyncIterator",
|
|
75
|
+
u = i.toStringTag || "@@toStringTag";
|
|
76
|
+
function define(t, e, r) {
|
|
77
|
+
return Object.defineProperty(t, e, {
|
|
78
|
+
value: r,
|
|
78
79
|
enumerable: !0,
|
|
79
80
|
configurable: !0,
|
|
80
81
|
writable: !0
|
|
81
|
-
}),
|
|
82
|
+
}), t[e];
|
|
82
83
|
}
|
|
83
84
|
try {
|
|
84
85
|
define({}, "");
|
|
85
|
-
} catch (
|
|
86
|
-
define = function (
|
|
87
|
-
return
|
|
86
|
+
} catch (t) {
|
|
87
|
+
define = function (t, e, r) {
|
|
88
|
+
return t[e] = r;
|
|
88
89
|
};
|
|
89
90
|
}
|
|
90
|
-
function wrap(
|
|
91
|
-
var
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
return
|
|
95
|
-
value: makeInvokeMethod(
|
|
96
|
-
}),
|
|
91
|
+
function wrap(t, e, r, n) {
|
|
92
|
+
var i = e && e.prototype instanceof Generator ? e : Generator,
|
|
93
|
+
a = Object.create(i.prototype),
|
|
94
|
+
c = new Context(n || []);
|
|
95
|
+
return o(a, "_invoke", {
|
|
96
|
+
value: makeInvokeMethod(t, r, c)
|
|
97
|
+
}), a;
|
|
97
98
|
}
|
|
98
|
-
function tryCatch(
|
|
99
|
+
function tryCatch(t, e, r) {
|
|
99
100
|
try {
|
|
100
101
|
return {
|
|
101
102
|
type: "normal",
|
|
102
|
-
arg:
|
|
103
|
+
arg: t.call(e, r)
|
|
103
104
|
};
|
|
104
|
-
} catch (
|
|
105
|
+
} catch (t) {
|
|
105
106
|
return {
|
|
106
107
|
type: "throw",
|
|
107
|
-
arg:
|
|
108
|
+
arg: t
|
|
108
109
|
};
|
|
109
110
|
}
|
|
110
111
|
}
|
|
111
|
-
|
|
112
|
-
var
|
|
112
|
+
e.wrap = wrap;
|
|
113
|
+
var h = "suspendedStart",
|
|
114
|
+
l = "suspendedYield",
|
|
115
|
+
f = "executing",
|
|
116
|
+
s = "completed",
|
|
117
|
+
y = {};
|
|
113
118
|
function Generator() {}
|
|
114
119
|
function GeneratorFunction() {}
|
|
115
120
|
function GeneratorFunctionPrototype() {}
|
|
116
|
-
var
|
|
117
|
-
define(
|
|
121
|
+
var p = {};
|
|
122
|
+
define(p, a, function () {
|
|
118
123
|
return this;
|
|
119
124
|
});
|
|
120
|
-
var
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
var
|
|
124
|
-
function defineIteratorMethods(
|
|
125
|
-
["next", "throw", "return"].forEach(function (
|
|
126
|
-
define(
|
|
127
|
-
return this._invoke(
|
|
125
|
+
var d = Object.getPrototypeOf,
|
|
126
|
+
v = d && d(d(values([])));
|
|
127
|
+
v && v !== r && n.call(v, a) && (p = v);
|
|
128
|
+
var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
|
|
129
|
+
function defineIteratorMethods(t) {
|
|
130
|
+
["next", "throw", "return"].forEach(function (e) {
|
|
131
|
+
define(t, e, function (t) {
|
|
132
|
+
return this._invoke(e, t);
|
|
128
133
|
});
|
|
129
134
|
});
|
|
130
135
|
}
|
|
131
|
-
function AsyncIterator(
|
|
132
|
-
function invoke(
|
|
133
|
-
var
|
|
134
|
-
if ("throw" !==
|
|
135
|
-
var
|
|
136
|
-
|
|
137
|
-
return
|
|
138
|
-
invoke("next",
|
|
139
|
-
}, function (
|
|
140
|
-
invoke("throw",
|
|
141
|
-
}) :
|
|
142
|
-
|
|
143
|
-
}, function (
|
|
144
|
-
return invoke("throw",
|
|
136
|
+
function AsyncIterator(t, e) {
|
|
137
|
+
function invoke(r, o, i, a) {
|
|
138
|
+
var c = tryCatch(t[r], t, o);
|
|
139
|
+
if ("throw" !== c.type) {
|
|
140
|
+
var u = c.arg,
|
|
141
|
+
h = u.value;
|
|
142
|
+
return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
|
143
|
+
invoke("next", t, i, a);
|
|
144
|
+
}, function (t) {
|
|
145
|
+
invoke("throw", t, i, a);
|
|
146
|
+
}) : e.resolve(h).then(function (t) {
|
|
147
|
+
u.value = t, i(u);
|
|
148
|
+
}, function (t) {
|
|
149
|
+
return invoke("throw", t, i, a);
|
|
145
150
|
});
|
|
146
151
|
}
|
|
147
|
-
|
|
152
|
+
a(c.arg);
|
|
148
153
|
}
|
|
149
|
-
var
|
|
150
|
-
|
|
151
|
-
value: function (
|
|
154
|
+
var r;
|
|
155
|
+
o(this, "_invoke", {
|
|
156
|
+
value: function (t, n) {
|
|
152
157
|
function callInvokeWithMethodAndArg() {
|
|
153
|
-
return new
|
|
154
|
-
invoke(
|
|
158
|
+
return new e(function (e, r) {
|
|
159
|
+
invoke(t, n, e, r);
|
|
155
160
|
});
|
|
156
161
|
}
|
|
157
|
-
return
|
|
162
|
+
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
158
163
|
}
|
|
159
164
|
});
|
|
160
165
|
}
|
|
161
|
-
function makeInvokeMethod(
|
|
162
|
-
var
|
|
163
|
-
return function (
|
|
164
|
-
if (
|
|
165
|
-
if (
|
|
166
|
-
if ("throw" ===
|
|
167
|
-
return
|
|
166
|
+
function makeInvokeMethod(e, r, n) {
|
|
167
|
+
var o = h;
|
|
168
|
+
return function (i, a) {
|
|
169
|
+
if (o === f) throw new Error("Generator is already running");
|
|
170
|
+
if (o === s) {
|
|
171
|
+
if ("throw" === i) throw a;
|
|
172
|
+
return {
|
|
173
|
+
value: t,
|
|
174
|
+
done: !0
|
|
175
|
+
};
|
|
168
176
|
}
|
|
169
|
-
for (
|
|
170
|
-
var
|
|
171
|
-
if (
|
|
172
|
-
var
|
|
173
|
-
if (
|
|
174
|
-
if (
|
|
175
|
-
return
|
|
177
|
+
for (n.method = i, n.arg = a;;) {
|
|
178
|
+
var c = n.delegate;
|
|
179
|
+
if (c) {
|
|
180
|
+
var u = maybeInvokeDelegate(c, n);
|
|
181
|
+
if (u) {
|
|
182
|
+
if (u === y) continue;
|
|
183
|
+
return u;
|
|
176
184
|
}
|
|
177
185
|
}
|
|
178
|
-
if ("next" ===
|
|
179
|
-
if (
|
|
180
|
-
|
|
181
|
-
} else "return" ===
|
|
182
|
-
|
|
183
|
-
var
|
|
184
|
-
if ("normal" ===
|
|
185
|
-
if (
|
|
186
|
+
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
|
|
187
|
+
if (o === h) throw o = s, n.arg;
|
|
188
|
+
n.dispatchException(n.arg);
|
|
189
|
+
} else "return" === n.method && n.abrupt("return", n.arg);
|
|
190
|
+
o = f;
|
|
191
|
+
var p = tryCatch(e, r, n);
|
|
192
|
+
if ("normal" === p.type) {
|
|
193
|
+
if (o = n.done ? s : l, p.arg === y) continue;
|
|
186
194
|
return {
|
|
187
|
-
value:
|
|
188
|
-
done:
|
|
195
|
+
value: p.arg,
|
|
196
|
+
done: n.done
|
|
189
197
|
};
|
|
190
198
|
}
|
|
191
|
-
"throw" ===
|
|
199
|
+
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
|
|
192
200
|
}
|
|
193
201
|
};
|
|
194
202
|
}
|
|
195
|
-
function maybeInvokeDelegate(
|
|
196
|
-
var
|
|
197
|
-
|
|
198
|
-
if (
|
|
199
|
-
var
|
|
200
|
-
if ("throw" ===
|
|
201
|
-
var
|
|
202
|
-
return
|
|
203
|
+
function maybeInvokeDelegate(e, r) {
|
|
204
|
+
var n = r.method,
|
|
205
|
+
o = e.iterator[n];
|
|
206
|
+
if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
|
207
|
+
var i = tryCatch(o, e.iterator, r.arg);
|
|
208
|
+
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
|
209
|
+
var a = i.arg;
|
|
210
|
+
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
|
203
211
|
}
|
|
204
|
-
function pushTryEntry(
|
|
205
|
-
var
|
|
206
|
-
tryLoc:
|
|
212
|
+
function pushTryEntry(t) {
|
|
213
|
+
var e = {
|
|
214
|
+
tryLoc: t[0]
|
|
207
215
|
};
|
|
208
|
-
1 in
|
|
216
|
+
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
|
209
217
|
}
|
|
210
|
-
function resetTryEntry(
|
|
211
|
-
var
|
|
212
|
-
|
|
218
|
+
function resetTryEntry(t) {
|
|
219
|
+
var e = t.completion || {};
|
|
220
|
+
e.type = "normal", delete e.arg, t.completion = e;
|
|
213
221
|
}
|
|
214
|
-
function Context(
|
|
222
|
+
function Context(t) {
|
|
215
223
|
this.tryEntries = [{
|
|
216
224
|
tryLoc: "root"
|
|
217
|
-
}],
|
|
225
|
+
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
|
218
226
|
}
|
|
219
|
-
function values(
|
|
220
|
-
if (
|
|
221
|
-
var
|
|
222
|
-
if (
|
|
223
|
-
if ("function" == typeof
|
|
224
|
-
if (!isNaN(
|
|
225
|
-
var
|
|
226
|
-
|
|
227
|
-
for (; ++
|
|
228
|
-
return next.value =
|
|
227
|
+
function values(e) {
|
|
228
|
+
if (e || "" === e) {
|
|
229
|
+
var r = e[a];
|
|
230
|
+
if (r) return r.call(e);
|
|
231
|
+
if ("function" == typeof e.next) return e;
|
|
232
|
+
if (!isNaN(e.length)) {
|
|
233
|
+
var o = -1,
|
|
234
|
+
i = function next() {
|
|
235
|
+
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
|
236
|
+
return next.value = t, next.done = !0, next;
|
|
229
237
|
};
|
|
230
|
-
return
|
|
238
|
+
return i.next = i;
|
|
231
239
|
}
|
|
232
240
|
}
|
|
233
|
-
|
|
234
|
-
next: doneResult
|
|
235
|
-
};
|
|
236
|
-
}
|
|
237
|
-
function doneResult() {
|
|
238
|
-
return {
|
|
239
|
-
value: undefined,
|
|
240
|
-
done: !0
|
|
241
|
-
};
|
|
241
|
+
throw new TypeError(typeof e + " is not iterable");
|
|
242
242
|
}
|
|
243
|
-
return GeneratorFunction.prototype = GeneratorFunctionPrototype,
|
|
243
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
|
244
244
|
value: GeneratorFunctionPrototype,
|
|
245
245
|
configurable: !0
|
|
246
|
-
}),
|
|
246
|
+
}), o(GeneratorFunctionPrototype, "constructor", {
|
|
247
247
|
value: GeneratorFunction,
|
|
248
248
|
configurable: !0
|
|
249
|
-
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype,
|
|
250
|
-
var
|
|
251
|
-
return !!
|
|
252
|
-
},
|
|
253
|
-
return Object.setPrototypeOf ? Object.setPrototypeOf(
|
|
254
|
-
},
|
|
249
|
+
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
|
250
|
+
var e = "function" == typeof t && t.constructor;
|
|
251
|
+
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
|
252
|
+
}, e.mark = function (t) {
|
|
253
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
|
254
|
+
}, e.awrap = function (t) {
|
|
255
255
|
return {
|
|
256
|
-
__await:
|
|
256
|
+
__await: t
|
|
257
257
|
};
|
|
258
|
-
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype,
|
|
258
|
+
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
|
|
259
259
|
return this;
|
|
260
|
-
}),
|
|
261
|
-
void 0 ===
|
|
262
|
-
var
|
|
263
|
-
return
|
|
264
|
-
return
|
|
260
|
+
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
|
|
261
|
+
void 0 === i && (i = Promise);
|
|
262
|
+
var a = new AsyncIterator(wrap(t, r, n, o), i);
|
|
263
|
+
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
|
|
264
|
+
return t.done ? t.value : a.next();
|
|
265
265
|
});
|
|
266
|
-
}, defineIteratorMethods(
|
|
266
|
+
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
|
|
267
267
|
return this;
|
|
268
|
-
}), define(
|
|
268
|
+
}), define(g, "toString", function () {
|
|
269
269
|
return "[object Generator]";
|
|
270
|
-
}),
|
|
271
|
-
var
|
|
272
|
-
|
|
273
|
-
for (var
|
|
274
|
-
return
|
|
275
|
-
for (;
|
|
276
|
-
var
|
|
277
|
-
if (
|
|
270
|
+
}), e.keys = function (t) {
|
|
271
|
+
var e = Object(t),
|
|
272
|
+
r = [];
|
|
273
|
+
for (var n in e) r.push(n);
|
|
274
|
+
return r.reverse(), function next() {
|
|
275
|
+
for (; r.length;) {
|
|
276
|
+
var t = r.pop();
|
|
277
|
+
if (t in e) return next.value = t, next.done = !1, next;
|
|
278
278
|
}
|
|
279
279
|
return next.done = !0, next;
|
|
280
280
|
};
|
|
281
|
-
},
|
|
281
|
+
}, e.values = values, Context.prototype = {
|
|
282
282
|
constructor: Context,
|
|
283
|
-
reset: function (
|
|
284
|
-
if (this.prev = 0, this.next = 0, this.sent = this._sent =
|
|
283
|
+
reset: function (e) {
|
|
284
|
+
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
|
285
285
|
},
|
|
286
286
|
stop: function () {
|
|
287
287
|
this.done = !0;
|
|
288
|
-
var
|
|
289
|
-
if ("throw" ===
|
|
288
|
+
var t = this.tryEntries[0].completion;
|
|
289
|
+
if ("throw" === t.type) throw t.arg;
|
|
290
290
|
return this.rval;
|
|
291
291
|
},
|
|
292
|
-
dispatchException: function (
|
|
293
|
-
if (this.done) throw
|
|
294
|
-
var
|
|
295
|
-
function handle(
|
|
296
|
-
return
|
|
292
|
+
dispatchException: function (e) {
|
|
293
|
+
if (this.done) throw e;
|
|
294
|
+
var r = this;
|
|
295
|
+
function handle(n, o) {
|
|
296
|
+
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
|
297
297
|
}
|
|
298
|
-
for (var
|
|
299
|
-
var
|
|
300
|
-
|
|
301
|
-
if ("root" ===
|
|
302
|
-
if (
|
|
303
|
-
var
|
|
304
|
-
|
|
305
|
-
if (
|
|
306
|
-
if (this.prev <
|
|
307
|
-
if (this.prev <
|
|
308
|
-
} else if (
|
|
309
|
-
if (this.prev <
|
|
298
|
+
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
|
299
|
+
var i = this.tryEntries[o],
|
|
300
|
+
a = i.completion;
|
|
301
|
+
if ("root" === i.tryLoc) return handle("end");
|
|
302
|
+
if (i.tryLoc <= this.prev) {
|
|
303
|
+
var c = n.call(i, "catchLoc"),
|
|
304
|
+
u = n.call(i, "finallyLoc");
|
|
305
|
+
if (c && u) {
|
|
306
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
307
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
308
|
+
} else if (c) {
|
|
309
|
+
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
310
310
|
} else {
|
|
311
|
-
if (!
|
|
312
|
-
if (this.prev <
|
|
311
|
+
if (!u) throw new Error("try statement without catch or finally");
|
|
312
|
+
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
313
313
|
}
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
},
|
|
317
|
-
abrupt: function (
|
|
318
|
-
for (var
|
|
319
|
-
var
|
|
320
|
-
if (
|
|
321
|
-
var
|
|
317
|
+
abrupt: function (t, e) {
|
|
318
|
+
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
|
319
|
+
var o = this.tryEntries[r];
|
|
320
|
+
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
|
321
|
+
var i = o;
|
|
322
322
|
break;
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
|
-
|
|
326
|
-
var
|
|
327
|
-
return
|
|
325
|
+
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
|
326
|
+
var a = i ? i.completion : {};
|
|
327
|
+
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
|
328
328
|
},
|
|
329
|
-
complete: function (
|
|
330
|
-
if ("throw" ===
|
|
331
|
-
return "break" ===
|
|
329
|
+
complete: function (t, e) {
|
|
330
|
+
if ("throw" === t.type) throw t.arg;
|
|
331
|
+
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
|
332
332
|
},
|
|
333
|
-
finish: function (
|
|
334
|
-
for (var
|
|
335
|
-
var
|
|
336
|
-
if (
|
|
333
|
+
finish: function (t) {
|
|
334
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
335
|
+
var r = this.tryEntries[e];
|
|
336
|
+
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
|
337
337
|
}
|
|
338
338
|
},
|
|
339
|
-
catch: function (
|
|
340
|
-
for (var
|
|
341
|
-
var
|
|
342
|
-
if (
|
|
343
|
-
var
|
|
344
|
-
if ("throw" ===
|
|
345
|
-
var
|
|
346
|
-
resetTryEntry(
|
|
339
|
+
catch: function (t) {
|
|
340
|
+
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
341
|
+
var r = this.tryEntries[e];
|
|
342
|
+
if (r.tryLoc === t) {
|
|
343
|
+
var n = r.completion;
|
|
344
|
+
if ("throw" === n.type) {
|
|
345
|
+
var o = n.arg;
|
|
346
|
+
resetTryEntry(r);
|
|
347
347
|
}
|
|
348
|
-
return
|
|
348
|
+
return o;
|
|
349
349
|
}
|
|
350
350
|
}
|
|
351
351
|
throw new Error("illegal catch attempt");
|
|
352
352
|
},
|
|
353
|
-
delegateYield: function (
|
|
353
|
+
delegateYield: function (e, r, n) {
|
|
354
354
|
return this.delegate = {
|
|
355
|
-
iterator: values(
|
|
356
|
-
resultName:
|
|
357
|
-
nextLoc:
|
|
358
|
-
}, "next" === this.method && (this.arg =
|
|
359
|
-
}
|
|
360
|
-
},
|
|
355
|
+
iterator: values(e),
|
|
356
|
+
resultName: r,
|
|
357
|
+
nextLoc: n
|
|
358
|
+
}, "next" === this.method && (this.arg = t), y;
|
|
359
|
+
}
|
|
360
|
+
}, e;
|
|
361
|
+
}
|
|
362
|
+
function _toPrimitive(t, r) {
|
|
363
|
+
if ("object" != typeof t || !t) return t;
|
|
364
|
+
var e = t[Symbol.toPrimitive];
|
|
365
|
+
if (void 0 !== e) {
|
|
366
|
+
var i = e.call(t, r || "default");
|
|
367
|
+
if ("object" != typeof i) return i;
|
|
368
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
369
|
+
}
|
|
370
|
+
return ("string" === r ? String : Number)(t);
|
|
371
|
+
}
|
|
372
|
+
function _toPropertyKey(t) {
|
|
373
|
+
var i = _toPrimitive(t, "string");
|
|
374
|
+
return "symbol" == typeof i ? i : String(i);
|
|
361
375
|
}
|
|
362
|
-
function _typeof(
|
|
376
|
+
function _typeof(o) {
|
|
363
377
|
"@babel/helpers - typeof";
|
|
364
378
|
|
|
365
|
-
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (
|
|
366
|
-
return typeof
|
|
367
|
-
} : function (
|
|
368
|
-
return
|
|
369
|
-
}, _typeof(
|
|
379
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
380
|
+
return typeof o;
|
|
381
|
+
} : function (o) {
|
|
382
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
383
|
+
}, _typeof(o);
|
|
370
384
|
}
|
|
371
385
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
372
386
|
try {
|
|
@@ -473,20 +487,6 @@ function _nonIterableSpread() {
|
|
|
473
487
|
function _nonIterableRest() {
|
|
474
488
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
475
489
|
}
|
|
476
|
-
function _toPrimitive(input, hint) {
|
|
477
|
-
if (typeof input !== "object" || input === null) return input;
|
|
478
|
-
var prim = input[Symbol.toPrimitive];
|
|
479
|
-
if (prim !== undefined) {
|
|
480
|
-
var res = prim.call(input, hint || "default");
|
|
481
|
-
if (typeof res !== "object") return res;
|
|
482
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
483
|
-
}
|
|
484
|
-
return (hint === "string" ? String : Number)(input);
|
|
485
|
-
}
|
|
486
|
-
function _toPropertyKey(arg) {
|
|
487
|
-
var key = _toPrimitive(arg, "string");
|
|
488
|
-
return typeof key === "symbol" ? key : String(key);
|
|
489
|
-
}
|
|
490
490
|
|
|
491
491
|
function ApaasCascader(props) {
|
|
492
492
|
return /*#__PURE__*/React.createElement(Cascader, _objectSpread2({
|
|
@@ -511,11 +511,12 @@ var ApaasDate = function ApaasDate(props) {
|
|
|
511
511
|
}, otherProps));
|
|
512
512
|
};
|
|
513
513
|
|
|
514
|
-
var _excluded$1 = ["isNumber", "replaceWarn"];
|
|
514
|
+
var _excluded$1 = ["isNumber", "replaceWarn", "precision"];
|
|
515
515
|
function ApaasInput(props) {
|
|
516
516
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
517
517
|
var isNumber = props.isNumber,
|
|
518
518
|
replaceWarn = props.replaceWarn,
|
|
519
|
+
precision = props.precision,
|
|
519
520
|
other = _objectWithoutProperties(props, _excluded$1);
|
|
520
521
|
var handleBlur = function handleBlur(e) {
|
|
521
522
|
// 去除头尾空格
|
|
@@ -525,8 +526,12 @@ function ApaasInput(props) {
|
|
|
525
526
|
typeof onChange === 'function' && onChange(e);
|
|
526
527
|
typeof onBlur === 'function' && onBlur(e);
|
|
527
528
|
};
|
|
529
|
+
return isNumber ?
|
|
530
|
+
/*#__PURE__*/
|
|
528
531
|
// @ts-ignore
|
|
529
|
-
|
|
532
|
+
React.createElement(InputNumber, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
533
|
+
precision: precision === 'limit' ? undefined : precision
|
|
534
|
+
})) : /*#__PURE__*/React.createElement(Input, _objectSpread2(_objectSpread2({}, other), {}, {
|
|
530
535
|
onBlur: handleBlur
|
|
531
536
|
}));
|
|
532
537
|
}
|
|
@@ -7627,6 +7632,354 @@ function withFormItem(WrappedComponent) {
|
|
|
7627
7632
|
};
|
|
7628
7633
|
}
|
|
7629
7634
|
|
|
7635
|
+
/*
|
|
7636
|
+
* @Author: wangzhenggui jianjia.wzg@raycloud.com
|
|
7637
|
+
* @Date: 2022-09-13 11:06:09
|
|
7638
|
+
* @LastEditors: wangzhenggui jianjia.wzg@raycloud.com
|
|
7639
|
+
* @LastEditTime: 2022-11-04 15:55:10
|
|
7640
|
+
* @FilePath: /raycloud-apaas-fe-setup/packages/apaas-react-basics-widgets/src/common/request.ts
|
|
7641
|
+
* @Description:
|
|
7642
|
+
*
|
|
7643
|
+
* Copyright (c) 2022 by wangzhenggui jianjia.wzg@raycloud.com, All Rights Reserved.
|
|
7644
|
+
*/
|
|
7645
|
+
var extendRequest = extend$1({});
|
|
7646
|
+
|
|
7647
|
+
var WidgetMap = {
|
|
7648
|
+
INPUT: 'input',
|
|
7649
|
+
TEXTAREA: 'textarea'
|
|
7650
|
+
};
|
|
7651
|
+
var pageSize = 50;
|
|
7652
|
+
var SubForm = function SubForm(props) {
|
|
7653
|
+
var _selectOptions$;
|
|
7654
|
+
var value = props.value,
|
|
7655
|
+
onChange = props.onChange,
|
|
7656
|
+
needFilterShopByPermission = props.needFilterShopByPermission,
|
|
7657
|
+
_props$subConfig = props.subConfig,
|
|
7658
|
+
config = _props$subConfig.config,
|
|
7659
|
+
flowStatus = _props$subConfig.flowStatus,
|
|
7660
|
+
flowTemplateKey = _props$subConfig.flowTemplateKey,
|
|
7661
|
+
nodeId = _props$subConfig.nodeId,
|
|
7662
|
+
workOrderTemplateId = _props$subConfig.workOrderTemplateId,
|
|
7663
|
+
disabled = props.disabled;
|
|
7664
|
+
var ref = useRef(null);
|
|
7665
|
+
var _useState = useState(false),
|
|
7666
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
7667
|
+
open = _useState2[0],
|
|
7668
|
+
setOpen = _useState2[1];
|
|
7669
|
+
var _useState3 = useState(''),
|
|
7670
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
7671
|
+
selectKey = _useState4[0],
|
|
7672
|
+
setSelectKey = _useState4[1];
|
|
7673
|
+
var _useState5 = useState(''),
|
|
7674
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
7675
|
+
inputValue = _useState6[0],
|
|
7676
|
+
setInputValue = _useState6[1];
|
|
7677
|
+
var _useState7 = useState([]),
|
|
7678
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
7679
|
+
list = _useState8[0],
|
|
7680
|
+
setList = _useState8[1];
|
|
7681
|
+
var _useState9 = useState(1),
|
|
7682
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
7683
|
+
pageNo = _useState10[0],
|
|
7684
|
+
setPageNo = _useState10[1];
|
|
7685
|
+
var _useState11 = useState(true),
|
|
7686
|
+
_useState12 = _slicedToArray(_useState11, 2),
|
|
7687
|
+
hasMore = _useState12[0],
|
|
7688
|
+
setHasMore = _useState12[1];
|
|
7689
|
+
var firstIn = useRef(true);
|
|
7690
|
+
var updateHandle = function updateHandle(val, index, type) {
|
|
7691
|
+
if (value === null || value === void 0 ? void 0 : value.length) {
|
|
7692
|
+
var valueItem = config.find(function (t) {
|
|
7693
|
+
return t.key === type && t.isNumber && t.precision !== 'nolimit';
|
|
7694
|
+
});
|
|
7695
|
+
var newValue = JSON.parse(JSON.stringify(value));
|
|
7696
|
+
newValue[index][type] = valueItem ? Number(val).toFixed(+valueItem.precision) : val;
|
|
7697
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(_toConsumableArray(newValue));
|
|
7698
|
+
}
|
|
7699
|
+
};
|
|
7700
|
+
var column = [{
|
|
7701
|
+
dataIndex: 'index',
|
|
7702
|
+
title: '序号',
|
|
7703
|
+
width: 70,
|
|
7704
|
+
render: function render(val, record, index) {
|
|
7705
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
7706
|
+
style: {
|
|
7707
|
+
width: 25
|
|
7708
|
+
}
|
|
7709
|
+
}, index + 1);
|
|
7710
|
+
}
|
|
7711
|
+
}].concat(_toConsumableArray(config.filter(function (t) {
|
|
7712
|
+
return t.isShow;
|
|
7713
|
+
}).map(function (t) {
|
|
7714
|
+
return {
|
|
7715
|
+
dataIndex: t.key,
|
|
7716
|
+
title: /*#__PURE__*/React.createElement("div", null, t.isRequired ? /*#__PURE__*/React.createElement("span", {
|
|
7717
|
+
style: {
|
|
7718
|
+
color: 'red'
|
|
7719
|
+
}
|
|
7720
|
+
}, "*") : null, t.name),
|
|
7721
|
+
ellipsis: true,
|
|
7722
|
+
width: 120,
|
|
7723
|
+
render: function render(val, record, index) {
|
|
7724
|
+
// @ts-ignore
|
|
7725
|
+
var precisionValue = t.precision === 'nolimit' ? undefined : t.precision;
|
|
7726
|
+
return !t.isEdit ? t.isNumber ? /*#__PURE__*/React.createElement(InputNumber, {
|
|
7727
|
+
style: {
|
|
7728
|
+
width: '100%'
|
|
7729
|
+
},
|
|
7730
|
+
value: val,
|
|
7731
|
+
precision: precisionValue,
|
|
7732
|
+
onChange: function onChange(e) {
|
|
7733
|
+
return updateHandle(e, index, t.key);
|
|
7734
|
+
},
|
|
7735
|
+
stringMode: true
|
|
7736
|
+
}) : /*#__PURE__*/React.createElement(Input, {
|
|
7737
|
+
style: {
|
|
7738
|
+
width: '100%'
|
|
7739
|
+
},
|
|
7740
|
+
value: val,
|
|
7741
|
+
onChange: function onChange(e) {
|
|
7742
|
+
var _e$target;
|
|
7743
|
+
return updateHandle(e === null || e === void 0 ? void 0 : (_e$target = e.target) === null || _e$target === void 0 ? void 0 : _e$target.value, index, t.key);
|
|
7744
|
+
}
|
|
7745
|
+
}) : /*#__PURE__*/React.createElement("div", null, val);
|
|
7746
|
+
}
|
|
7747
|
+
};
|
|
7748
|
+
})), [disabled ? {} : {
|
|
7749
|
+
dataIndex: 'operation',
|
|
7750
|
+
title: '操作',
|
|
7751
|
+
width: 70,
|
|
7752
|
+
render: function render(val, record, index) {
|
|
7753
|
+
return /*#__PURE__*/React.createElement(Button, {
|
|
7754
|
+
type: "link",
|
|
7755
|
+
onClick: function onClick() {
|
|
7756
|
+
return deleteHandle(record.uuid);
|
|
7757
|
+
}
|
|
7758
|
+
}, "\u5220\u9664");
|
|
7759
|
+
}
|
|
7760
|
+
}]);
|
|
7761
|
+
var columsSearch = useMemo(function () {
|
|
7762
|
+
return [{
|
|
7763
|
+
dataIndex: 'index',
|
|
7764
|
+
title: '序号',
|
|
7765
|
+
render: function render(val, record, index) {
|
|
7766
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
7767
|
+
style: {
|
|
7768
|
+
width: 25
|
|
7769
|
+
}
|
|
7770
|
+
}, index + 1);
|
|
7771
|
+
}
|
|
7772
|
+
}].concat(_toConsumableArray(config.map(function (t) {
|
|
7773
|
+
return {
|
|
7774
|
+
dataIndex: t.key,
|
|
7775
|
+
title: t.name
|
|
7776
|
+
};
|
|
7777
|
+
})));
|
|
7778
|
+
}, [config]);
|
|
7779
|
+
var valueMap = useMemo(function () {
|
|
7780
|
+
return config.reduce(function (prv, next) {
|
|
7781
|
+
prv["".concat(next.key, "_").concat(WidgetMap[next.workOrderComponentType])] = next.key;
|
|
7782
|
+
return prv;
|
|
7783
|
+
}, {});
|
|
7784
|
+
}, [config]);
|
|
7785
|
+
var selectOptions = useMemo(function () {
|
|
7786
|
+
var _options$;
|
|
7787
|
+
var options = config.filter(function (t) {
|
|
7788
|
+
return t.isShow;
|
|
7789
|
+
}).map(function (item) {
|
|
7790
|
+
return {
|
|
7791
|
+
label: item.name,
|
|
7792
|
+
value: "".concat(item.key, "_").concat(WidgetMap[item.workOrderComponentType])
|
|
7793
|
+
};
|
|
7794
|
+
});
|
|
7795
|
+
setSelectKey(options === null || options === void 0 ? void 0 : (_options$ = options[0]) === null || _options$ === void 0 ? void 0 : _options$.value);
|
|
7796
|
+
return options;
|
|
7797
|
+
}, [config]);
|
|
7798
|
+
var deleteHandle = function deleteHandle(uuid) {
|
|
7799
|
+
var newList = value.filter(function (item) {
|
|
7800
|
+
return item.uuid !== uuid;
|
|
7801
|
+
});
|
|
7802
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(newList);
|
|
7803
|
+
};
|
|
7804
|
+
var onScrollCapture = function onScrollCapture(e) {
|
|
7805
|
+
if (e.target.scrollTop + e.target.clientHeight >= e.target.scrollHeight) {
|
|
7806
|
+
if (hasMore) {
|
|
7807
|
+
getWorkOrderList({
|
|
7808
|
+
pageNo: pageNo + 1
|
|
7809
|
+
});
|
|
7810
|
+
setPageNo(pageNo + 1);
|
|
7811
|
+
}
|
|
7812
|
+
}
|
|
7813
|
+
};
|
|
7814
|
+
var getWorkOrderList = /*#__PURE__*/function () {
|
|
7815
|
+
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
7816
|
+
var _ref2,
|
|
7817
|
+
_ref2$pageNo,
|
|
7818
|
+
pageNo,
|
|
7819
|
+
params,
|
|
7820
|
+
res,
|
|
7821
|
+
data,
|
|
7822
|
+
success,
|
|
7823
|
+
newList,
|
|
7824
|
+
_args = arguments;
|
|
7825
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
7826
|
+
while (1) switch (_context.prev = _context.next) {
|
|
7827
|
+
case 0:
|
|
7828
|
+
_ref2 = _args.length > 0 && _args[0] !== undefined ? _args[0] : {}, _ref2$pageNo = _ref2.pageNo, pageNo = _ref2$pageNo === void 0 ? 1 : _ref2$pageNo;
|
|
7829
|
+
if (!disabled) {
|
|
7830
|
+
_context.next = 3;
|
|
7831
|
+
break;
|
|
7832
|
+
}
|
|
7833
|
+
return _context.abrupt("return");
|
|
7834
|
+
case 3:
|
|
7835
|
+
params = {
|
|
7836
|
+
flowNodeId: nodeId,
|
|
7837
|
+
flowTemplateKey: flowTemplateKey === null || flowTemplateKey === void 0 ? void 0 : flowTemplateKey[1],
|
|
7838
|
+
pageNo: pageNo,
|
|
7839
|
+
pageSize: pageSize,
|
|
7840
|
+
templateKey: workOrderTemplateId,
|
|
7841
|
+
needReturnRepeatValue: true,
|
|
7842
|
+
needFilterShopByPermission: needFilterShopByPermission,
|
|
7843
|
+
queryComponents: [{
|
|
7844
|
+
key: 'flowStatus',
|
|
7845
|
+
symbol: 'in',
|
|
7846
|
+
value: flowStatus
|
|
7847
|
+
}]
|
|
7848
|
+
};
|
|
7849
|
+
if (selectKey && inputValue) {
|
|
7850
|
+
params.queryComponents = [{
|
|
7851
|
+
key: 'flowStatus',
|
|
7852
|
+
symbol: 'in',
|
|
7853
|
+
value: flowStatus
|
|
7854
|
+
}, {
|
|
7855
|
+
key: selectKey,
|
|
7856
|
+
symbol: 'in',
|
|
7857
|
+
value: [inputValue]
|
|
7858
|
+
}];
|
|
7859
|
+
}
|
|
7860
|
+
_context.next = 7;
|
|
7861
|
+
return extendRequest('/qy/view/workOrderList', {
|
|
7862
|
+
method: 'post',
|
|
7863
|
+
data: params
|
|
7864
|
+
});
|
|
7865
|
+
case 7:
|
|
7866
|
+
res = _context.sent;
|
|
7867
|
+
data = res.data, success = res.success;
|
|
7868
|
+
if (success) {
|
|
7869
|
+
newList = ((data === null || data === void 0 ? void 0 : data.list) || []).map(function (item) {
|
|
7870
|
+
var params = {};
|
|
7871
|
+
Object.keys(item.jsonMap).forEach(function (key) {
|
|
7872
|
+
if (valueMap[key]) {
|
|
7873
|
+
params[valueMap[key]] = item.jsonMap[key];
|
|
7874
|
+
}
|
|
7875
|
+
});
|
|
7876
|
+
return params;
|
|
7877
|
+
});
|
|
7878
|
+
if (pageNo === 1) {
|
|
7879
|
+
setList(newList);
|
|
7880
|
+
} else {
|
|
7881
|
+
setList([].concat(_toConsumableArray(list), _toConsumableArray(newList)));
|
|
7882
|
+
setHasMore((data === null || data === void 0 ? void 0 : data.list.length) === pageSize);
|
|
7883
|
+
}
|
|
7884
|
+
}
|
|
7885
|
+
case 10:
|
|
7886
|
+
case "end":
|
|
7887
|
+
return _context.stop();
|
|
7888
|
+
}
|
|
7889
|
+
}, _callee);
|
|
7890
|
+
}));
|
|
7891
|
+
return function getWorkOrderList() {
|
|
7892
|
+
return _ref.apply(this, arguments);
|
|
7893
|
+
};
|
|
7894
|
+
}();
|
|
7895
|
+
useEffect(function () {
|
|
7896
|
+
getWorkOrderList({
|
|
7897
|
+
pageNo: 1
|
|
7898
|
+
});
|
|
7899
|
+
}, []);
|
|
7900
|
+
useUpdateEffect(function () {
|
|
7901
|
+
setPageNo(1);
|
|
7902
|
+
getWorkOrderList({
|
|
7903
|
+
pageNo: 1
|
|
7904
|
+
});
|
|
7905
|
+
}, [inputValue]);
|
|
7906
|
+
var handleOpenChange = function handleOpenChange(newOpen) {
|
|
7907
|
+
setOpen(newOpen);
|
|
7908
|
+
};
|
|
7909
|
+
var onChangeInput = useCallback(debounce(function (val) {
|
|
7910
|
+
setInputValue(val);
|
|
7911
|
+
setOpen(true);
|
|
7912
|
+
}, 1000), []);
|
|
7913
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, !disabled && /*#__PURE__*/React.createElement(Space, {
|
|
7914
|
+
style: {
|
|
7915
|
+
marginBottom: '10px'
|
|
7916
|
+
}
|
|
7917
|
+
}, /*#__PURE__*/React.createElement(Select, {
|
|
7918
|
+
style: {
|
|
7919
|
+
width: '120px'
|
|
7920
|
+
},
|
|
7921
|
+
options: selectOptions,
|
|
7922
|
+
defaultValue: selectOptions === null || selectOptions === void 0 ? void 0 : (_selectOptions$ = selectOptions[0]) === null || _selectOptions$ === void 0 ? void 0 : _selectOptions$.value,
|
|
7923
|
+
value: selectKey,
|
|
7924
|
+
onChange: setSelectKey
|
|
7925
|
+
}), /*#__PURE__*/React.createElement(Popover, {
|
|
7926
|
+
content: /*#__PURE__*/React.createElement("div", {
|
|
7927
|
+
ref: ref,
|
|
7928
|
+
onScrollCapture: onScrollCapture,
|
|
7929
|
+
style: {
|
|
7930
|
+
height: 320,
|
|
7931
|
+
overflowY: 'scroll',
|
|
7932
|
+
overflowX: 'auto'
|
|
7933
|
+
}
|
|
7934
|
+
}, /*#__PURE__*/React.createElement(Table, {
|
|
7935
|
+
columns: columsSearch,
|
|
7936
|
+
dataSource: list,
|
|
7937
|
+
rowKey: 'index',
|
|
7938
|
+
size: "small",
|
|
7939
|
+
pagination: false,
|
|
7940
|
+
scroll: {
|
|
7941
|
+
x: '100%'
|
|
7942
|
+
},
|
|
7943
|
+
locale: {
|
|
7944
|
+
emptyText: '暂无数据'
|
|
7945
|
+
},
|
|
7946
|
+
onRow: function onRow(record) {
|
|
7947
|
+
return {
|
|
7948
|
+
onClick: function onClick(e) {
|
|
7949
|
+
e.stopPropagation();
|
|
7950
|
+
onChange === null || onChange === void 0 ? void 0 : onChange([].concat(_toConsumableArray(value), [_objectSpread2(_objectSpread2({}, record), {}, {
|
|
7951
|
+
uuid: uuid()
|
|
7952
|
+
})]));
|
|
7953
|
+
setOpen(false);
|
|
7954
|
+
}
|
|
7955
|
+
};
|
|
7956
|
+
}
|
|
7957
|
+
})),
|
|
7958
|
+
trigger: "click",
|
|
7959
|
+
placement: "bottom",
|
|
7960
|
+
visible: open,
|
|
7961
|
+
onVisibleChange: handleOpenChange
|
|
7962
|
+
}, /*#__PURE__*/React.createElement(Input, {
|
|
7963
|
+
placeholder: "\u8F93\u5165\u5173\u952E\u8BCD\u67E5\u8BE2",
|
|
7964
|
+
allowClear: true,
|
|
7965
|
+
onChange: function onChange(e) {
|
|
7966
|
+
onChangeInput(e.target.value);
|
|
7967
|
+
}
|
|
7968
|
+
}))), /*#__PURE__*/React.createElement(Table, {
|
|
7969
|
+
columns: column,
|
|
7970
|
+
dataSource: value,
|
|
7971
|
+
rowKey: 'uuid',
|
|
7972
|
+
size: "small",
|
|
7973
|
+
pagination: false,
|
|
7974
|
+
scroll: {
|
|
7975
|
+
x: '100%'
|
|
7976
|
+
},
|
|
7977
|
+
locale: {
|
|
7978
|
+
emptyText: '暂无数据'
|
|
7979
|
+
}
|
|
7980
|
+
}));
|
|
7981
|
+
};
|
|
7982
|
+
|
|
7630
7983
|
var BuyerNick = function BuyerNick(props) {
|
|
7631
7984
|
var _props$value = props.value,
|
|
7632
7985
|
value = _props$value === void 0 ? {} : _props$value,
|
|
@@ -7913,18 +8266,6 @@ var AliPay = function AliPay(props) {
|
|
|
7913
8266
|
})));
|
|
7914
8267
|
};
|
|
7915
8268
|
|
|
7916
|
-
/*
|
|
7917
|
-
* @Author: wangzhenggui jianjia.wzg@raycloud.com
|
|
7918
|
-
* @Date: 2022-09-13 11:06:09
|
|
7919
|
-
* @LastEditors: wangzhenggui jianjia.wzg@raycloud.com
|
|
7920
|
-
* @LastEditTime: 2022-11-04 15:55:10
|
|
7921
|
-
* @FilePath: /raycloud-apaas-fe-setup/packages/apaas-react-basics-widgets/src/common/request.ts
|
|
7922
|
-
* @Description:
|
|
7923
|
-
*
|
|
7924
|
-
* Copyright (c) 2022 by wangzhenggui jianjia.wzg@raycloud.com, All Rights Reserved.
|
|
7925
|
-
*/
|
|
7926
|
-
var extendRequest = extend$1({});
|
|
7927
|
-
|
|
7928
8269
|
var css_248z$5 = ".goodsBox {\n display: flex;\n flex-wrap: wrap;\n}\n.goodsBox .goodBox-Img {\n width: 80px;\n margin: 0 10px 10px 0;\n}\n.goodsBox .right-context {\n font-size: 12px;\n}\n.goodsBox .right-context .ant-input {\n font-size: 12px;\n width: 80px;\n height: 20px;\n padding-left: 5px;\n padding-right: 5px;\n}\n.goodsBox .right-context .ant-input.id-textarea {\n width: 80px;\n resize: none;\n height: 45px;\n}\n.goodsBox.goodsBox-item-horizontal--box {\n flex-direction: row;\n width: auto;\n}\n.goods-imgBox {\n position: relative;\n width: 80px;\n height: 80px;\n border-radius: 4px;\n border: 1px solid #f2f3f5;\n margin: 0 10px 10px 0;\n text-align: center;\n background-color: #f2f3f5;\n}\n.goods-imgBox .add-btn {\n color: #86909c;\n}\n.goods-imgBox .text {\n color: #86909c;\n}\n.icon-close {\n position: absolute;\n top: -5px;\n right: -5px;\n width: 13px;\n height: 13px;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n z-index: 3;\n background-color: #fff;\n cursor: pointer;\n}\n.img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.goods-title {\n margin: 0 0 10px 5px;\n color: #4e5969;\n}\n.searchBox {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n margin-bottom: 10px;\n}\n.searchBox .search {\n width: 150px;\n margin-left: 6px;\n}\n.deg90 {\n transform: rotate(90deg);\n}\n.goodsMain {\n display: flex;\n flex-wrap: wrap;\n height: 400px;\n overflow-y: auto;\n margin-bottom: 10px;\n}\n.goodsMain .goodItem {\n width: 142px;\n height: 184px;\n padding: 7px;\n margin: 0 16px 16px 0;\n border-radius: 4px;\n background: #ffffff;\n box-sizing: border-box;\n /* 主题色/常规 */\n border: 1px solid #c9cdd4;\n}\n.goodsMain .goodItem .goodImg {\n width: 128px;\n height: 128px;\n border-radius: 4px;\n overflow: hidden;\n}\n.goodsMain .goodItem .goodImg img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.goodsMain .goodItem .goodText {\n text-align: center;\n font-size: 12px;\n color: #4e5969;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.goodsMain .goodItem .goodPrice {\n text-align: center;\n font-size: 14px;\n color: #1d2129;\n}\n.goodsMain .goodItem.active {\n border: 1px solid #1b5bf3;\n}\n@media screen and (max-width: 500px) {\n .goodsMain {\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n grid-gap: 8px;\n height: 300px;\n }\n .goodsMain .goodItem {\n height: 126px;\n width: 83px;\n padding: 4px;\n margin: 0;\n border-radius: 4px;\n background: #FFFFFF;\n box-sizing: border-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n }\n .goodsMain .goodItem .goodImg {\n width: 98%;\n height: 77px;\n }\n .goodsMain .goodItem .goodText {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .goodsMain .goodItem.active {\n border: 1px solid #3089dc;\n }\n .searchBox {\n display: flex;\n flex-wrap: wrap;\n justify-content: initial;\n }\n .searchBox .classify {\n width: 120px;\n }\n .goodModal .ant-modal-body {\n padding: 8px;\n }\n}\n.goods-uploaded-count {\n color: #ff3638;\n}\n.footer {\n display: flex;\n justify-content: flex-end;\n}\n.right-context {\n display: flex;\n flex-direction: column;\n}\n.right-context .info-row {\n width: 80px;\n display: flex;\n align-items: center;\n padding: 0px 8px;\n border-radius: 2px;\n cursor: pointer;\n background: #f2f3f5;\n margin-bottom: 4px;\n}\n.right-context .info-row > div {\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n overflow: hidden;\n word-break: break-all;\n}\n.sphPagination {\n display: flex;\n align-items: center;\n}\n.sphPagination .shpBtn {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 0 8px;\n height: 32px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n cursor: pointer;\n margin: 0 8px;\n}\n.sphPagination .shpBtn.unCursor {\n color: #eee;\n cursor: not-allowed;\n}\n";
|
|
7929
8270
|
styleInject(css_248z$5);
|
|
7930
8271
|
|
|
@@ -13750,9 +14091,7 @@ var wdtReissue = function wdtReissue(props) {
|
|
|
13750
14091
|
var _typeMap$type25;
|
|
13751
14092
|
return !!(value === null || value === void 0 ? void 0 : value[(_typeMap$type25 = typeMap$1[type]) === null || _typeMap$type25 === void 0 ? void 0 : _typeMap$type25.wdtSystemOrderNo]);
|
|
13752
14093
|
}, [value === null || value === void 0 ? void 0 : value[(_typeMap$type26 = typeMap$1[type]) === null || _typeMap$type26 === void 0 ? void 0 : _typeMap$type26.wdtSystemOrderNo]]);
|
|
13753
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Row, {
|
|
13754
|
-
gutter: 8
|
|
13755
|
-
}, /*#__PURE__*/React.createElement(Col, {
|
|
14094
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, {
|
|
13756
14095
|
className: "gutter-row",
|
|
13757
14096
|
xs: {
|
|
13758
14097
|
span: 11
|
|
@@ -13784,6 +14123,9 @@ var wdtReissue = function wdtReissue(props) {
|
|
|
13784
14123
|
},
|
|
13785
14124
|
md: {
|
|
13786
14125
|
span: 6
|
|
14126
|
+
},
|
|
14127
|
+
style: {
|
|
14128
|
+
marginLeft: '8px'
|
|
13787
14129
|
}
|
|
13788
14130
|
}, /*#__PURE__*/React.createElement(Cascader, {
|
|
13789
14131
|
style: {
|
|
@@ -14578,4 +14920,4 @@ var CalculationInput = function CalculationInput(props) {
|
|
|
14578
14920
|
}, config === null || config === void 0 ? void 0 : config.unit));
|
|
14579
14921
|
};
|
|
14580
14922
|
|
|
14581
|
-
export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$1 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby, CommonExchangeGoods, CommonGoods, CommonSystemOrder$1 as CommonMultiStatus, CommonReturnGoods, CommonStatus, CommonSystemOrder, ExpressLogistics, Goods, index$2 as GoodsTable, IdentifyAddress, Invoice, jstGoods as JstGoods, ItemList as JstItemList, LogisticsInterception, LogisticsMoreInterception, LogisticsMoreTrajectory, LogisticsTrajectory, MsgStatus, ParseLogistics, Payment, RemarkInput as Remark, ExpressLogistics as ReturnLogistics, ShopNameSelect as ShopName, Status, Supplier, TBGoodId, TBGoodSerial, TradeId, WdtGoodList, wdtReissue as WdtReissue, WlnGoods };
|
|
14923
|
+
export { ApaasAddress as Address, AliPay, Province as ApaasAddress, ApaasCascader, ApaasCheckbox, ApaasDate, withFormItem as ApaasHoc, ApaasInput, ApaasInputNumber, ApaasLogistics, ApaasMultipleSelect, ApaasPosting, ApaasRadio, ApaasRate, ApaasSelect, ApaasSlider, ApaasTextArea, ApaasUpload, index as ApaasUploadAsync, ApaasUploadFile, BsExchange, BsGoods, BsReissue, BsReturnGoods as BsReturn, index$1 as BsSystemOrder, BuyerNick, CalculationInput, ChooseBaby, CommonExchangeGoods, CommonGoods, CommonSystemOrder$1 as CommonMultiStatus, CommonReturnGoods, CommonStatus, CommonSystemOrder, ExpressLogistics, Goods, index$2 as GoodsTable, IdentifyAddress, Invoice, jstGoods as JstGoods, ItemList as JstItemList, LogisticsInterception, LogisticsMoreInterception, LogisticsMoreTrajectory, LogisticsTrajectory, MsgStatus, ParseLogistics, Payment, RemarkInput as Remark, ExpressLogistics as ReturnLogistics, ShopNameSelect as ShopName, Status, SubForm, Supplier, TBGoodId, TBGoodSerial, TradeId, WdtGoodList, wdtReissue as WdtReissue, WlnGoods };
|