kts-component-invoice-operate 2.0.4 → 2.0.7
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/Invoice/InvoiceController/fns/getGoodsSearch.d.ts +8 -1
- package/dist/index.esm.js +28 -23
- package/dist/index.js +28 -23
- package/docs-dist/umi.js +1 -1
- package/package.json +1 -1
- package/src/Invoice/InvoiceController/fns/getGoodsSearch.ts +9 -2
- package/src/Invoice/_test/importGoods/index.tsx +25 -7
- package/src/Invoice/ui/AddComparisonDrawer/index.tsx +2 -2
- package/src/Invoice/ui/GoodsList/hook/useColumns/index.tsx +1 -1
- package/src/Invoice/ui/GoodsList/hook/useRowSelection/index.tsx +4 -8
- package/src/Invoice/ui/GoodsList/index.tsx +3 -1
- package/src/Invoice/ui/GoodsList/ui/Search/index.less +1 -1
- package/src/Invoice/ui/GoodsList/ui/Search/index.tsx +5 -2
|
@@ -1,2 +1,9 @@
|
|
|
1
1
|
import IGood from "../InvoiceControllerState/GoodsListState/IGood";
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* 计算搜索商品
|
|
4
|
+
* @param goodsList 被搜索列表
|
|
5
|
+
* @param search 搜索条件
|
|
6
|
+
* @param isTaxIncluded 是否含税
|
|
7
|
+
* @returns
|
|
8
|
+
*/
|
|
9
|
+
export default function getGoodsSearch(goodsList: IGood[], search: string, isTaxIncluded: boolean): IGood[];
|
package/dist/index.esm.js
CHANGED
|
@@ -1520,16 +1520,23 @@ var validateFields = function validateFields(form) {
|
|
|
1520
1520
|
});
|
|
1521
1521
|
};
|
|
1522
1522
|
|
|
1523
|
-
|
|
1523
|
+
/**
|
|
1524
|
+
* 计算搜索商品
|
|
1525
|
+
* @param goodsList 被搜索列表
|
|
1526
|
+
* @param search 搜索条件
|
|
1527
|
+
* @param isTaxIncluded 是否含税
|
|
1528
|
+
* @returns
|
|
1529
|
+
*/
|
|
1530
|
+
function getGoodsSearch(goodsList, search, isTaxIncluded) {
|
|
1524
1531
|
if (!search) return goodsList;
|
|
1525
1532
|
return goodsList.filter(function (e) {
|
|
1526
|
-
var _e$itemName$indexOf, _e$itemName, _e$itemModelName$inde, _e$itemModelName;
|
|
1533
|
+
var _e$itemName$indexOf, _e$itemName, _e$itemModelName$inde, _e$itemModelName, _e$lineAmountIncludeT, _e$lineAmountExcludeT;
|
|
1527
1534
|
|
|
1528
1535
|
if (((_e$itemName$indexOf = (_e$itemName = e.itemName) === null || _e$itemName === void 0 ? void 0 : _e$itemName.indexOf(search)) !== null && _e$itemName$indexOf !== void 0 ? _e$itemName$indexOf : -1) >= 0) {
|
|
1529
1536
|
return true;
|
|
1530
1537
|
} else if (((_e$itemModelName$inde = (_e$itemModelName = e.itemModelName) === null || _e$itemModelName === void 0 ? void 0 : _e$itemModelName.indexOf(search)) !== null && _e$itemModelName$inde !== void 0 ? _e$itemModelName$inde : -1) >= 0) {
|
|
1531
1538
|
return true;
|
|
1532
|
-
} else if ("".concat(e.lineAmountIncludeTax).indexOf(search) >= 0) {
|
|
1539
|
+
} else if ("".concat(isTaxIncluded ? (_e$lineAmountIncludeT = e.lineAmountIncludeTax) === null || _e$lineAmountIncludeT === void 0 ? void 0 : _e$lineAmountIncludeT.toFixed(2) : (_e$lineAmountExcludeT = e.lineAmountExcludeTax) === null || _e$lineAmountExcludeT === void 0 ? void 0 : _e$lineAmountExcludeT.toFixed(2)).indexOf(search) >= 0) {
|
|
1533
1540
|
return true;
|
|
1534
1541
|
} else {
|
|
1535
1542
|
return false;
|
|
@@ -2240,7 +2247,7 @@ function SvgMagnifier(props) {
|
|
|
2240
2247
|
})));
|
|
2241
2248
|
}
|
|
2242
2249
|
|
|
2243
|
-
var css_248z$4 = ".kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search {\n width:
|
|
2250
|
+
var css_248z$4 = ".kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search {\n width: 350px;\n}\n.kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search input {\n border-radius: 999px;\n border-color: #b8b8b8;\n}\n";
|
|
2244
2251
|
styleInject(css_248z$4);
|
|
2245
2252
|
|
|
2246
2253
|
function Search() {
|
|
@@ -2254,6 +2261,11 @@ function Search() {
|
|
|
2254
2261
|
var readOnly = controller.useMemo(function (s) {
|
|
2255
2262
|
return !!s.goodsListState.editGood;
|
|
2256
2263
|
}, []);
|
|
2264
|
+
/** 是否含税 */
|
|
2265
|
+
|
|
2266
|
+
var isTaxIncluded = controller.useMemo(function (s) {
|
|
2267
|
+
return s.goodsListState.isTaxIncluded;
|
|
2268
|
+
}, []);
|
|
2257
2269
|
var onClick = React.useCallback( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
2258
2270
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
2259
2271
|
while (1) {
|
|
@@ -2292,7 +2304,7 @@ function Search() {
|
|
|
2292
2304
|
while (1) {
|
|
2293
2305
|
switch (_context2.prev = _context2.next) {
|
|
2294
2306
|
case 0:
|
|
2295
|
-
s.goodsListState.searchValue = value;
|
|
2307
|
+
s.goodsListState.searchValue = value.replace(/^ */, '').replace(/ *$/, '');
|
|
2296
2308
|
|
|
2297
2309
|
case 1:
|
|
2298
2310
|
case "end":
|
|
@@ -2312,7 +2324,7 @@ function Search() {
|
|
|
2312
2324
|
readOnly: readOnly,
|
|
2313
2325
|
value: value,
|
|
2314
2326
|
className: "kts-invoice-operate-goods-list-search",
|
|
2315
|
-
placeholder: "\u8BF7\u60A8\u8F93\u5165\u8D27\u7269\u540D\u79F0\u3001\u89C4\u683C\u578B\u53F7\u3001\u91D1\u989D(
|
|
2327
|
+
placeholder: "\u8BF7\u60A8\u8F93\u5165\u8D27\u7269\u540D\u79F0\u3001\u89C4\u683C\u578B\u53F7\u3001\u91D1\u989D(".concat(isTaxIncluded ? '含税' : '不含税', ")\u641C\u7D22"),
|
|
2316
2328
|
prefix: React.createElement(Icon, {
|
|
2317
2329
|
component: SvgMagnifier,
|
|
2318
2330
|
style: {
|
|
@@ -10720,7 +10732,7 @@ var useColumns = (function (form) {
|
|
|
10720
10732
|
style: {
|
|
10721
10733
|
padding: '0 10px'
|
|
10722
10734
|
}
|
|
10723
|
-
}, parseFloat(value).toFixed(2));
|
|
10735
|
+
}, formatSearch(parseFloat(value).toFixed(2), searchValue));
|
|
10724
10736
|
}
|
|
10725
10737
|
}
|
|
10726
10738
|
}, {
|
|
@@ -11192,7 +11204,7 @@ var useRowSelection = (function () {
|
|
|
11192
11204
|
|
|
11193
11205
|
var isAll = controller.useMemo(function (s) {
|
|
11194
11206
|
if (s.goodsListState.selectedGoodIndex.length <= 0) return false;
|
|
11195
|
-
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11207
|
+
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11196
11208
|
return e.$index;
|
|
11197
11209
|
});
|
|
11198
11210
|
var selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11203,7 +11215,7 @@ var useRowSelection = (function () {
|
|
|
11203
11215
|
return selectedGoodIndex.length === seeGoodsIndex.length;
|
|
11204
11216
|
}, []);
|
|
11205
11217
|
var indeterminate = controller.useMemo(function (s) {
|
|
11206
|
-
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11218
|
+
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11207
11219
|
return e.$index;
|
|
11208
11220
|
});
|
|
11209
11221
|
var selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11234,7 +11246,7 @@ var useRowSelection = (function () {
|
|
|
11234
11246
|
while (1) {
|
|
11235
11247
|
switch (_context.prev = _context.next) {
|
|
11236
11248
|
case 0:
|
|
11237
|
-
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11249
|
+
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11238
11250
|
return e.$index;
|
|
11239
11251
|
});
|
|
11240
11252
|
s.goodsListState.selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11269,7 +11281,7 @@ var useRowSelection = (function () {
|
|
|
11269
11281
|
while (1) {
|
|
11270
11282
|
switch (_context2.prev = _context2.next) {
|
|
11271
11283
|
case 0:
|
|
11272
|
-
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11284
|
+
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11273
11285
|
return e.$index;
|
|
11274
11286
|
});
|
|
11275
11287
|
s.goodsListState.selectedGoodIndex = [].concat(_toConsumableArray(s.goodsListState.selectedGoodIndex), _toConsumableArray(seeGoodsIndex));
|
|
@@ -11496,9 +11508,12 @@ var Main = decorator(Form.create())(function (props) {
|
|
|
11496
11508
|
var searchValue = controller.useMemo(function (s) {
|
|
11497
11509
|
return s.goodsListState.searchValue;
|
|
11498
11510
|
}, []);
|
|
11511
|
+
var isTaxIncluded = controller.useMemo(function (s) {
|
|
11512
|
+
return s.goodsListState.isTaxIncluded;
|
|
11513
|
+
}, []);
|
|
11499
11514
|
var dataSourceSearch = React.useMemo(function () {
|
|
11500
|
-
return controller.getGoodsSearch(dataSource, searchValue);
|
|
11501
|
-
}, [dataSource, searchValue, controller]);
|
|
11515
|
+
return controller.getGoodsSearch(dataSource, searchValue, isTaxIncluded);
|
|
11516
|
+
}, [dataSource, searchValue, controller, isTaxIncluded]);
|
|
11502
11517
|
/** 表格行事件 */
|
|
11503
11518
|
|
|
11504
11519
|
var _onRow = useOnRow();
|
|
@@ -13614,16 +13629,6 @@ function AddComparisonDrawer() {
|
|
|
13614
13629
|
gutter: [8, 8]
|
|
13615
13630
|
}, React.createElement(Col, {
|
|
13616
13631
|
span: 12
|
|
13617
|
-
}, React.createElement(Form$1.Item, {
|
|
13618
|
-
name: "itemCodeSelf",
|
|
13619
|
-
label: "\u6211\u65B9\u5546\u54C1\u7F16\u7801"
|
|
13620
|
-
}, React.createElement(Input, null))), React.createElement(Col, {
|
|
13621
|
-
span: 12
|
|
13622
|
-
}, React.createElement(Form$1.Item, {
|
|
13623
|
-
name: "itemCode",
|
|
13624
|
-
label: "\u5BF9\u65B9\u5546\u54C1\u7F16\u7801"
|
|
13625
|
-
}, React.createElement(Input, null))), React.createElement(Col, {
|
|
13626
|
-
span: 12
|
|
13627
13632
|
}, React.createElement(Form$1.Item, {
|
|
13628
13633
|
name: "itemNameSelf",
|
|
13629
13634
|
label: "\u6211\u65B9\u5546\u54C1\u540D\u79F0"
|
package/dist/index.js
CHANGED
|
@@ -1530,16 +1530,23 @@ var validateFields = function validateFields(form) {
|
|
|
1530
1530
|
});
|
|
1531
1531
|
};
|
|
1532
1532
|
|
|
1533
|
-
|
|
1533
|
+
/**
|
|
1534
|
+
* 计算搜索商品
|
|
1535
|
+
* @param goodsList 被搜索列表
|
|
1536
|
+
* @param search 搜索条件
|
|
1537
|
+
* @param isTaxIncluded 是否含税
|
|
1538
|
+
* @returns
|
|
1539
|
+
*/
|
|
1540
|
+
function getGoodsSearch(goodsList, search, isTaxIncluded) {
|
|
1534
1541
|
if (!search) return goodsList;
|
|
1535
1542
|
return goodsList.filter(function (e) {
|
|
1536
|
-
var _e$itemName$indexOf, _e$itemName, _e$itemModelName$inde, _e$itemModelName;
|
|
1543
|
+
var _e$itemName$indexOf, _e$itemName, _e$itemModelName$inde, _e$itemModelName, _e$lineAmountIncludeT, _e$lineAmountExcludeT;
|
|
1537
1544
|
|
|
1538
1545
|
if (((_e$itemName$indexOf = (_e$itemName = e.itemName) === null || _e$itemName === void 0 ? void 0 : _e$itemName.indexOf(search)) !== null && _e$itemName$indexOf !== void 0 ? _e$itemName$indexOf : -1) >= 0) {
|
|
1539
1546
|
return true;
|
|
1540
1547
|
} else if (((_e$itemModelName$inde = (_e$itemModelName = e.itemModelName) === null || _e$itemModelName === void 0 ? void 0 : _e$itemModelName.indexOf(search)) !== null && _e$itemModelName$inde !== void 0 ? _e$itemModelName$inde : -1) >= 0) {
|
|
1541
1548
|
return true;
|
|
1542
|
-
} else if ("".concat(e.lineAmountIncludeTax).indexOf(search) >= 0) {
|
|
1549
|
+
} else if ("".concat(isTaxIncluded ? (_e$lineAmountIncludeT = e.lineAmountIncludeTax) === null || _e$lineAmountIncludeT === void 0 ? void 0 : _e$lineAmountIncludeT.toFixed(2) : (_e$lineAmountExcludeT = e.lineAmountExcludeTax) === null || _e$lineAmountExcludeT === void 0 ? void 0 : _e$lineAmountExcludeT.toFixed(2)).indexOf(search) >= 0) {
|
|
1543
1550
|
return true;
|
|
1544
1551
|
} else {
|
|
1545
1552
|
return false;
|
|
@@ -2250,7 +2257,7 @@ function SvgMagnifier(props) {
|
|
|
2250
2257
|
})));
|
|
2251
2258
|
}
|
|
2252
2259
|
|
|
2253
|
-
var css_248z$4 = ".kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search {\n width:
|
|
2260
|
+
var css_248z$4 = ".kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search {\n width: 350px;\n}\n.kts-invoice-operate-goods-list-able-list .kts-invoice-operate-goods-list-search input {\n border-radius: 999px;\n border-color: #b8b8b8;\n}\n";
|
|
2254
2261
|
styleInject(css_248z$4);
|
|
2255
2262
|
|
|
2256
2263
|
function Search() {
|
|
@@ -2264,6 +2271,11 @@ function Search() {
|
|
|
2264
2271
|
var readOnly = controller.useMemo(function (s) {
|
|
2265
2272
|
return !!s.goodsListState.editGood;
|
|
2266
2273
|
}, []);
|
|
2274
|
+
/** 是否含税 */
|
|
2275
|
+
|
|
2276
|
+
var isTaxIncluded = controller.useMemo(function (s) {
|
|
2277
|
+
return s.goodsListState.isTaxIncluded;
|
|
2278
|
+
}, []);
|
|
2267
2279
|
var onClick = React__default['default'].useCallback( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
2268
2280
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
2269
2281
|
while (1) {
|
|
@@ -2302,7 +2314,7 @@ function Search() {
|
|
|
2302
2314
|
while (1) {
|
|
2303
2315
|
switch (_context2.prev = _context2.next) {
|
|
2304
2316
|
case 0:
|
|
2305
|
-
s.goodsListState.searchValue = value;
|
|
2317
|
+
s.goodsListState.searchValue = value.replace(/^ */, '').replace(/ *$/, '');
|
|
2306
2318
|
|
|
2307
2319
|
case 1:
|
|
2308
2320
|
case "end":
|
|
@@ -2322,7 +2334,7 @@ function Search() {
|
|
|
2322
2334
|
readOnly: readOnly,
|
|
2323
2335
|
value: value,
|
|
2324
2336
|
className: "kts-invoice-operate-goods-list-search",
|
|
2325
|
-
placeholder: "\u8BF7\u60A8\u8F93\u5165\u8D27\u7269\u540D\u79F0\u3001\u89C4\u683C\u578B\u53F7\u3001\u91D1\u989D(
|
|
2337
|
+
placeholder: "\u8BF7\u60A8\u8F93\u5165\u8D27\u7269\u540D\u79F0\u3001\u89C4\u683C\u578B\u53F7\u3001\u91D1\u989D(".concat(isTaxIncluded ? '含税' : '不含税', ")\u641C\u7D22"),
|
|
2326
2338
|
prefix: React__default['default'].createElement(ktsComponentsAntdX3.Icon, {
|
|
2327
2339
|
component: SvgMagnifier,
|
|
2328
2340
|
style: {
|
|
@@ -10730,7 +10742,7 @@ var useColumns = (function (form) {
|
|
|
10730
10742
|
style: {
|
|
10731
10743
|
padding: '0 10px'
|
|
10732
10744
|
}
|
|
10733
|
-
}, parseFloat(value).toFixed(2));
|
|
10745
|
+
}, formatSearch(parseFloat(value).toFixed(2), searchValue));
|
|
10734
10746
|
}
|
|
10735
10747
|
}
|
|
10736
10748
|
}, {
|
|
@@ -11202,7 +11214,7 @@ var useRowSelection = (function () {
|
|
|
11202
11214
|
|
|
11203
11215
|
var isAll = controller.useMemo(function (s) {
|
|
11204
11216
|
if (s.goodsListState.selectedGoodIndex.length <= 0) return false;
|
|
11205
|
-
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11217
|
+
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11206
11218
|
return e.$index;
|
|
11207
11219
|
});
|
|
11208
11220
|
var selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11213,7 +11225,7 @@ var useRowSelection = (function () {
|
|
|
11213
11225
|
return selectedGoodIndex.length === seeGoodsIndex.length;
|
|
11214
11226
|
}, []);
|
|
11215
11227
|
var indeterminate = controller.useMemo(function (s) {
|
|
11216
|
-
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11228
|
+
var seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11217
11229
|
return e.$index;
|
|
11218
11230
|
});
|
|
11219
11231
|
var selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11244,7 +11256,7 @@ var useRowSelection = (function () {
|
|
|
11244
11256
|
while (1) {
|
|
11245
11257
|
switch (_context.prev = _context.next) {
|
|
11246
11258
|
case 0:
|
|
11247
|
-
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11259
|
+
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11248
11260
|
return e.$index;
|
|
11249
11261
|
});
|
|
11250
11262
|
s.goodsListState.selectedGoodIndex = s.goodsListState.selectedGoodIndex.filter(function (e) {
|
|
@@ -11279,7 +11291,7 @@ var useRowSelection = (function () {
|
|
|
11279
11291
|
while (1) {
|
|
11280
11292
|
switch (_context2.prev = _context2.next) {
|
|
11281
11293
|
case 0:
|
|
11282
|
-
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue).map(function (e) {
|
|
11294
|
+
seeGoodsIndex = controller.getGoodsSearch(s.goodsListState.goodsList, s.goodsListState.searchValue, s.goodsListState.isTaxIncluded).map(function (e) {
|
|
11283
11295
|
return e.$index;
|
|
11284
11296
|
});
|
|
11285
11297
|
s.goodsListState.selectedGoodIndex = [].concat(_toConsumableArray(s.goodsListState.selectedGoodIndex), _toConsumableArray(seeGoodsIndex));
|
|
@@ -11506,9 +11518,12 @@ var Main = GreyReactBox.decorator(ktsComponentsAntdX3.Form.create())(function (p
|
|
|
11506
11518
|
var searchValue = controller.useMemo(function (s) {
|
|
11507
11519
|
return s.goodsListState.searchValue;
|
|
11508
11520
|
}, []);
|
|
11521
|
+
var isTaxIncluded = controller.useMemo(function (s) {
|
|
11522
|
+
return s.goodsListState.isTaxIncluded;
|
|
11523
|
+
}, []);
|
|
11509
11524
|
var dataSourceSearch = React__default['default'].useMemo(function () {
|
|
11510
|
-
return controller.getGoodsSearch(dataSource, searchValue);
|
|
11511
|
-
}, [dataSource, searchValue, controller]);
|
|
11525
|
+
return controller.getGoodsSearch(dataSource, searchValue, isTaxIncluded);
|
|
11526
|
+
}, [dataSource, searchValue, controller, isTaxIncluded]);
|
|
11512
11527
|
/** 表格行事件 */
|
|
11513
11528
|
|
|
11514
11529
|
var _onRow = useOnRow();
|
|
@@ -13624,16 +13639,6 @@ function AddComparisonDrawer() {
|
|
|
13624
13639
|
gutter: [8, 8]
|
|
13625
13640
|
}, React__default['default'].createElement(ktsComponentsAntdX3.Col, {
|
|
13626
13641
|
span: 12
|
|
13627
|
-
}, React__default['default'].createElement(ktsXui.Form.Item, {
|
|
13628
|
-
name: "itemCodeSelf",
|
|
13629
|
-
label: "\u6211\u65B9\u5546\u54C1\u7F16\u7801"
|
|
13630
|
-
}, React__default['default'].createElement(ktsComponentsAntdX3.Input, null))), React__default['default'].createElement(ktsComponentsAntdX3.Col, {
|
|
13631
|
-
span: 12
|
|
13632
|
-
}, React__default['default'].createElement(ktsXui.Form.Item, {
|
|
13633
|
-
name: "itemCode",
|
|
13634
|
-
label: "\u5BF9\u65B9\u5546\u54C1\u7F16\u7801"
|
|
13635
|
-
}, React__default['default'].createElement(ktsComponentsAntdX3.Input, null))), React__default['default'].createElement(ktsComponentsAntdX3.Col, {
|
|
13636
|
-
span: 12
|
|
13637
13642
|
}, React__default['default'].createElement(ktsXui.Form.Item, {
|
|
13638
13643
|
name: "itemNameSelf",
|
|
13639
13644
|
label: "\u6211\u65B9\u5546\u54C1\u540D\u79F0"
|