@bit-sun/business-component 4.2.1-alpha.2-aiwei → 4.2.1-alpha.4-aiwei
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
CHANGED
|
@@ -10583,7 +10583,6 @@ function commonFun(type, prefixUrl, parentProps) {
|
|
|
10583
10583
|
tableSearchForm: tableSearchForm,
|
|
10584
10584
|
isHorizontally: true,
|
|
10585
10585
|
tableSearchColSpan: 6,
|
|
10586
|
-
visibleFieldsCount: 13,
|
|
10587
10586
|
tableColumns: [{
|
|
10588
10587
|
title: '序号',
|
|
10589
10588
|
dataIndex: 'keyIndex',
|
|
@@ -11349,8 +11348,8 @@ function commonFun(type, prefixUrl, parentProps) {
|
|
|
11349
11348
|
var areaDisabledJude = function areaDisabledJude(data) {
|
|
11350
11349
|
return data['parent'] === '0';
|
|
11351
11350
|
}; // 所属营销区域 树节点不能点判断
|
|
11352
|
-
formatTreeDataSource(x, 0,
|
|
11353
|
-
formatTreeDataSource(x, 1,
|
|
11351
|
+
formatTreeDataSource(x, 0, 3, tableSearchForm, ['code', 'name'], 'channelInfoSon', channelDisabledJude);
|
|
11352
|
+
formatTreeDataSource(x, 1, 4, tableSearchForm, ['code', 'name'], 'children', areaDisabledJude);
|
|
11354
11353
|
});
|
|
11355
11354
|
tableSearchForm = [{
|
|
11356
11355
|
name: 'realWarehouseName*multiInput',
|
package/dist/index.js
CHANGED
|
@@ -10606,7 +10606,6 @@ function commonFun(type, prefixUrl, parentProps) {
|
|
|
10606
10606
|
tableSearchForm: tableSearchForm,
|
|
10607
10607
|
isHorizontally: true,
|
|
10608
10608
|
tableSearchColSpan: 6,
|
|
10609
|
-
visibleFieldsCount: 13,
|
|
10610
10609
|
tableColumns: [{
|
|
10611
10610
|
title: '序号',
|
|
10612
10611
|
dataIndex: 'keyIndex',
|
|
@@ -11372,8 +11371,8 @@ function commonFun(type, prefixUrl, parentProps) {
|
|
|
11372
11371
|
var areaDisabledJude = function areaDisabledJude(data) {
|
|
11373
11372
|
return data['parent'] === '0';
|
|
11374
11373
|
}; // 所属营销区域 树节点不能点判断
|
|
11375
|
-
formatTreeDataSource(x, 0,
|
|
11376
|
-
formatTreeDataSource(x, 1,
|
|
11374
|
+
formatTreeDataSource(x, 0, 3, tableSearchForm, ['code', 'name'], 'channelInfoSon', channelDisabledJude);
|
|
11375
|
+
formatTreeDataSource(x, 1, 4, tableSearchForm, ['code', 'name'], 'children', areaDisabledJude);
|
|
11377
11376
|
});
|
|
11378
11377
|
tableSearchForm = [{
|
|
11379
11378
|
name: 'realWarehouseName*multiInput',
|
package/package.json
CHANGED
|
@@ -595,7 +595,6 @@ export function commonFun (type?: string, prefixUrl: any, parentProps?:any) {
|
|
|
595
595
|
tableSearchForm,
|
|
596
596
|
isHorizontally: true,
|
|
597
597
|
tableSearchColSpan: 6,
|
|
598
|
-
visibleFieldsCount: 13,
|
|
599
598
|
tableColumns: [
|
|
600
599
|
{
|
|
601
600
|
title: '序号',
|
|
@@ -1354,8 +1353,8 @@ export function commonFun (type?: string, prefixUrl: any, parentProps?:any) {
|
|
|
1354
1353
|
]).then((x: any)=>{
|
|
1355
1354
|
const channelDisabledJude = (data: any) => data['parentCode'] === '0'; // 所属销售渠道 树节点不能点判断
|
|
1356
1355
|
const areaDisabledJude = (data: any) => data['parent'] === '0'; // 所属营销区域 树节点不能点判断
|
|
1357
|
-
formatTreeDataSource(x, 0,
|
|
1358
|
-
formatTreeDataSource(x, 1,
|
|
1356
|
+
formatTreeDataSource(x, 0, 3, tableSearchForm, ['code','name'], 'channelInfoSon', channelDisabledJude)
|
|
1357
|
+
formatTreeDataSource(x, 1, 4, tableSearchForm, ['code', 'name'], 'children', areaDisabledJude)
|
|
1359
1358
|
})
|
|
1360
1359
|
tableSearchForm = [
|
|
1361
1360
|
{ name: 'realWarehouseName*multiInput', label: '逻辑仓名称', type: 'multipleQueryInput' },
|
|
@@ -317,7 +317,7 @@ export default () => {
|
|
|
317
317
|
},
|
|
318
318
|
// prefixUrl: { selectPrefix: '/bop/api', formSelectFix: '/bop/api' },
|
|
319
319
|
selectProps,
|
|
320
|
-
selectBusinessType: '
|
|
320
|
+
selectBusinessType: 'skuCommodity',
|
|
321
321
|
};
|
|
322
322
|
|
|
323
323
|
const onTabChange = (key) => {
|