@bit-sun/business-component 4.0.13-alpha.2 → 4.0.13-alpha.20
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/.umirc.ts +9 -9
- package/dist/components/Business/ItemPropertySelector/index.d.ts +3 -0
- package/dist/components/Functional/SearchSelect/utils.d.ts +4 -1
- package/dist/index.esm.js +518 -142
- package/dist/index.js +517 -141
- package/package.json +2 -1
- package/src/components/Business/BsSulaQueryTable/index.tsx +6 -6
- package/src/components/Business/BsSulaQueryTable/setting.tsx +3 -3
- package/src/components/Business/BsSulaQueryTable/utils.tsx +2 -1
- package/src/components/Business/CommodityEntry/index.tsx +11 -9
- package/src/components/Business/HomePageWrapper/index.less +1 -1
- package/src/components/Business/ItemPropertySelector/index.tsx +88 -0
- package/src/components/Business/SearchSelect/BusinessUtils.tsx +200 -2
- package/src/components/Business/SearchSelect/index.md +3 -3
- package/src/components/Business/SearchSelect/utils.ts +1 -1
- package/src/components/Functional/QueryMutipleSelect/index.md +2 -3
- package/src/components/Functional/QueryMutipleSelect/index.tsx +2 -1
- package/src/components/Functional/SearchSelect/index.less +16 -6
- package/src/components/Functional/SearchSelect/index.tsx +61 -46
- package/src/components/Functional/SearchSelect/utils.tsx +46 -6
package/.umirc.ts
CHANGED
|
@@ -35,7 +35,7 @@ export default defineConfig({
|
|
|
35
35
|
proxy: {
|
|
36
36
|
'/bop/api/': {
|
|
37
37
|
// target: 'http://bitsun.product.app.business-operation-platform.v1-dev:8050', // 开发环境
|
|
38
|
-
target: 'https://
|
|
38
|
+
target: 'https://bc-uat.anzhengportal.com/', // 测试环境
|
|
39
39
|
// target: 'http://yxzttest.yangzijiang.com/', // 扬子江测试环境
|
|
40
40
|
// target: 'http://yxzt.yangzijiang.com/', // 扬子江测试环境
|
|
41
41
|
changeOrigin: true,
|
|
@@ -48,37 +48,37 @@ export default defineConfig({
|
|
|
48
48
|
// target: 'http://bitsun.product.app.business-operation-platform.v1-dev:8050', // 开发环境
|
|
49
49
|
// 英伦
|
|
50
50
|
// target: 'http://47.100.87.54:9102/', // 开发环境
|
|
51
|
-
target: '
|
|
51
|
+
target: 'https://bc-uat.anzhengportal.com/', // 测试环境
|
|
52
52
|
// target: 'http://www.i-baby.net/', // 生产
|
|
53
53
|
changeOrigin: true,
|
|
54
54
|
// pathRewrite: { '^/wms-ops/': '/wms-ops/' }, // 开发环境
|
|
55
55
|
},
|
|
56
56
|
'/user/': {
|
|
57
|
-
target: '
|
|
57
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
58
58
|
changeOrigin: true,
|
|
59
59
|
},
|
|
60
60
|
'/drp-ops/': {
|
|
61
|
-
target: '
|
|
61
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
62
62
|
changeOrigin: true,
|
|
63
63
|
},
|
|
64
64
|
'/channel-manage/': {
|
|
65
|
-
target: '
|
|
65
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
66
66
|
changeOrigin: true,
|
|
67
67
|
},
|
|
68
68
|
'/items/': {
|
|
69
|
-
target: '
|
|
69
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
70
70
|
changeOrigin: true,
|
|
71
71
|
},
|
|
72
72
|
'/stock/': {
|
|
73
|
-
target: '
|
|
73
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
74
74
|
changeOrigin: true,
|
|
75
75
|
},
|
|
76
76
|
'/basic/': {
|
|
77
|
-
target: '
|
|
77
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
78
78
|
changeOrigin: true,
|
|
79
79
|
},
|
|
80
80
|
'/srm-ops/': {
|
|
81
|
-
target: '
|
|
81
|
+
target: 'https://bc-uat.anzhengportal.com/', // 开发环境
|
|
82
82
|
changeOrigin: true,
|
|
83
83
|
},
|
|
84
84
|
},
|
|
@@ -4,9 +4,10 @@ export declare const columnsPerRow = 4;
|
|
|
4
4
|
export declare const ColSpan = 6;
|
|
5
5
|
export declare const handleSourceName: (sName: any) => any;
|
|
6
6
|
export declare const makeUniqueValue: () => string;
|
|
7
|
-
export declare const getFormRowInfo: (list: any) => {
|
|
7
|
+
export declare const getFormRowInfo: (list: any, tableSearchColSpan: number) => {
|
|
8
8
|
totalRows: number;
|
|
9
9
|
emptyArray: any[];
|
|
10
|
+
ColSpan: number;
|
|
10
11
|
};
|
|
11
12
|
export declare const defaultVisibleFieldsCount = 7;
|
|
12
13
|
export declare const getVisibleFieldsCount: (modalTableProps: any) => any;
|
|
@@ -25,3 +26,5 @@ export declare const convertResData: (requestConfig: any, res: any, selectProps:
|
|
|
25
26
|
export declare const handleSelectOptionsShowValue: (specialBracket: boolean, noNeedSplit: boolean, item: any) => any;
|
|
26
27
|
export declare const LightHeightOption: (props: any) => React.JSX.Element;
|
|
27
28
|
export declare const maxTagPlaceholder: (selectedValues: any, { selectProps, onChange, value, setIsMaxTagsOpen }: any) => React.JSX.Element;
|
|
29
|
+
export declare const handleTableColumns: (tableColumns: any) => any;
|
|
30
|
+
export declare const getShowStr: ({ viewShowValueStr, labelInValue, selectMode, value, items }: any) => any;
|