@fonixtree/magic-design 0.0.76 → 0.0.78
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/es/common/LinkModal/FilteredProductModal/index.js +2 -2
- package/es/common/ProductModal/index.js +2 -2
- package/es/utils/coreUtil.js +1 -1
- package/lib/common/LinkModal/FilteredProductModal/index.js +2 -2
- package/lib/common/ProductModal/index.js +2 -2
- package/lib/utils/coreUtil.js +1 -1
- package/package.json +1 -1
|
@@ -458,7 +458,7 @@ var FilteredProductModal = function FilteredProductModal(props) {
|
|
|
458
458
|
minPrice: minimum * precision || '',
|
|
459
459
|
maxPrice: maximum * precision || '',
|
|
460
460
|
// storeName:storeName,
|
|
461
|
-
|
|
461
|
+
cmpTypeId: promotions.key || '',
|
|
462
462
|
pageSize: paginationParams.pageSize,
|
|
463
463
|
pageIndex: paginationParams.current,
|
|
464
464
|
state: 'A'
|
|
@@ -485,7 +485,7 @@ var FilteredProductModal = function FilteredProductModal(props) {
|
|
|
485
485
|
minPrice: minimum * precision || '',
|
|
486
486
|
maxPrice: maximum * precision || '',
|
|
487
487
|
storeName: storeName || '',
|
|
488
|
-
|
|
488
|
+
cmpTypeId: promotions.key || '',
|
|
489
489
|
state: 'A'
|
|
490
490
|
}),
|
|
491
491
|
total: res.total
|
|
@@ -700,7 +700,7 @@ var ProductModal = function ProductModal(props) {
|
|
|
700
700
|
productName: productName,
|
|
701
701
|
productCode: productCode,
|
|
702
702
|
storeId: storeId,
|
|
703
|
-
|
|
703
|
+
cmpTypeId: promotions || '',
|
|
704
704
|
minPrice: minPrice === '' ? '' : minPrice * Math.pow(10, precision),
|
|
705
705
|
maxPrice: maxPrice === '' ? '' : maxPrice * Math.pow(10, precision),
|
|
706
706
|
catgIds: selCatgsList.join(','),
|
|
@@ -730,7 +730,7 @@ var ProductModal = function ProductModal(props) {
|
|
|
730
730
|
queryGoods({
|
|
731
731
|
productName: productName,
|
|
732
732
|
productCode: productCode,
|
|
733
|
-
|
|
733
|
+
cmpTypeId: promotions || '',
|
|
734
734
|
minPrice: minPrice === '' ? '' : minPrice * Math.pow(10, precision),
|
|
735
735
|
maxPrice: maxPrice === '' ? '' : maxPrice * Math.pow(10, precision),
|
|
736
736
|
catgIds: selCatgsList.join(','),
|
package/es/utils/coreUtil.js
CHANGED
|
@@ -458,7 +458,7 @@ var FilteredProductModal = function FilteredProductModal(props) {
|
|
|
458
458
|
minPrice: minimum * precision || '',
|
|
459
459
|
maxPrice: maximum * precision || '',
|
|
460
460
|
// storeName:storeName,
|
|
461
|
-
|
|
461
|
+
cmpTypeId: promotions.key || '',
|
|
462
462
|
pageSize: paginationParams.pageSize,
|
|
463
463
|
pageIndex: paginationParams.current,
|
|
464
464
|
state: 'A'
|
|
@@ -485,7 +485,7 @@ var FilteredProductModal = function FilteredProductModal(props) {
|
|
|
485
485
|
minPrice: minimum * precision || '',
|
|
486
486
|
maxPrice: maximum * precision || '',
|
|
487
487
|
storeName: storeName || '',
|
|
488
|
-
|
|
488
|
+
cmpTypeId: promotions.key || '',
|
|
489
489
|
state: 'A'
|
|
490
490
|
}),
|
|
491
491
|
total: res.total
|
|
@@ -700,7 +700,7 @@ var ProductModal = function ProductModal(props) {
|
|
|
700
700
|
productName: productName,
|
|
701
701
|
productCode: productCode,
|
|
702
702
|
storeId: storeId,
|
|
703
|
-
|
|
703
|
+
cmpTypeId: promotions || '',
|
|
704
704
|
minPrice: minPrice === '' ? '' : minPrice * Math.pow(10, precision),
|
|
705
705
|
maxPrice: maxPrice === '' ? '' : maxPrice * Math.pow(10, precision),
|
|
706
706
|
catgIds: selCatgsList.join(','),
|
|
@@ -730,7 +730,7 @@ var ProductModal = function ProductModal(props) {
|
|
|
730
730
|
queryGoods({
|
|
731
731
|
productName: productName,
|
|
732
732
|
productCode: productCode,
|
|
733
|
-
|
|
733
|
+
cmpTypeId: promotions || '',
|
|
734
734
|
minPrice: minPrice === '' ? '' : minPrice * Math.pow(10, precision),
|
|
735
735
|
maxPrice: maxPrice === '' ? '' : maxPrice * Math.pow(10, precision),
|
|
736
736
|
catgIds: selCatgsList.join(','),
|
package/lib/utils/coreUtil.js
CHANGED