@bit-sun/business-component 1.0.5 → 1.0.6
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/DataValidation/index.tsx +2 -1
package/dist/index.esm.js
CHANGED
|
@@ -1620,7 +1620,7 @@ var itemsTemp = []; // const mapping = [
|
|
|
1620
1620
|
// { "key": "price", "name": "单价", "rule": "price" }
|
|
1621
1621
|
// ]
|
|
1622
1622
|
|
|
1623
|
-
var mapping = new Map([['skuCode', 'SKU编码'], ['quantity', '数量'], ['price', '单价'], ['regionCode', '库区'], ['checkQuantity', '实盘数量']]); // for dnd
|
|
1623
|
+
var mapping = new Map([['skuCode', 'SKU编码'], ['quantity', '数量'], ['price', '单价'], ['regionCode', '库区'], ['checkQuantity', '实盘数量'], ['shareRatio', '共享比例']]); // for dnd
|
|
1624
1624
|
|
|
1625
1625
|
|
|
1626
1626
|
var reorder = function reorder(list, startIndex, endIndex) {
|
package/dist/index.js
CHANGED
|
@@ -1630,7 +1630,7 @@ var itemsTemp = []; // const mapping = [
|
|
|
1630
1630
|
// { "key": "price", "name": "单价", "rule": "price" }
|
|
1631
1631
|
// ]
|
|
1632
1632
|
|
|
1633
|
-
var mapping = new Map([['skuCode', 'SKU编码'], ['quantity', '数量'], ['price', '单价'], ['regionCode', '库区'], ['checkQuantity', '实盘数量']]); // for dnd
|
|
1633
|
+
var mapping = new Map([['skuCode', 'SKU编码'], ['quantity', '数量'], ['price', '单价'], ['regionCode', '库区'], ['checkQuantity', '实盘数量'], ['shareRatio', '共享比例']]); // for dnd
|
|
1634
1634
|
|
|
1635
1635
|
|
|
1636
1636
|
var reorder = function reorder(list, startIndex, endIndex) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Description:
|
|
3
3
|
* @Author: rodchen
|
|
4
4
|
* @Date: 2021-12-01 10:52:08
|
|
5
|
-
* @LastEditTime: 2021-12-
|
|
5
|
+
* @LastEditTime: 2021-12-22 14:24:35
|
|
6
6
|
* @LastEditors: rodchen
|
|
7
7
|
*/
|
|
8
8
|
// @ts-nocheck
|
|
@@ -45,6 +45,7 @@ const mapping = new Map([
|
|
|
45
45
|
['price', '单价'],
|
|
46
46
|
['regionCode', '库区'],
|
|
47
47
|
['checkQuantity', '实盘数量'],
|
|
48
|
+
['shareRatio', '共享比例'],
|
|
48
49
|
]);
|
|
49
50
|
|
|
50
51
|
// for dnd
|