@kmkf-fe-packages/basic-components 0.1.3-alpha.4 → 0.2.2-alpha.0
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/apaas/ApaasAddress/index.d.ts +13 -0
- package/dist/apaas/ApaasCascader/index.d.ts +2 -0
- package/dist/apaas/ApaasCheckbox/index.d.ts +21 -0
- package/dist/apaas/ApaasDate/index.d.ts +8 -0
- package/dist/apaas/ApaasInput/index.d.ts +7 -0
- package/dist/apaas/ApaasInputNumber/index.d.ts +3 -0
- package/dist/apaas/ApaasMultipleSelect/index.d.ts +3 -0
- package/dist/apaas/ApaasRadio/index.d.ts +21 -0
- package/dist/apaas/ApaasRate/index.d.ts +17 -0
- package/dist/apaas/ApaasSelect/index.d.ts +12 -0
- package/dist/apaas/ApaasSlider/index.d.ts +9 -0
- package/dist/apaas/ApaasTextArea/index.d.ts +7 -0
- package/dist/apaas/ApaasUpload/index.d.ts +13 -0
- package/dist/apaas/ApaasUploadAsync/index.d.ts +16 -0
- package/dist/apaas/hoc/withFormItem.d.ts +12 -0
- package/dist/basics/FormItem/index.d.ts +2 -0
- package/dist/business/Address/index.d.ts +13 -0
- package/dist/business/AliPay/index.d.ts +13 -0
- package/dist/business/BuyerNick/index.d.ts +14 -0
- package/dist/business/ChooseBaby/index.d.ts +3 -0
- package/dist/business/ExpressLogistics/index.d.ts +3 -0
- package/dist/business/Invoice/index.d.ts +14 -0
- package/dist/business/LogisticsInterception/index.d.ts +21 -0
- package/dist/business/Payment/index.d.ts +14 -0
- package/dist/business/Remark/index.d.ts +12 -0
- package/dist/business/ShopName/index.d.ts +8 -0
- package/dist/business/Status/index.d.ts +16 -0
- package/dist/business/Supplier/index.d.ts +3 -0
- package/dist/business/TBGoodId/index.d.ts +3 -0
- package/dist/business/TBGoodSerial/index.d.ts +3 -0
- package/dist/business/TradeId/index.d.ts +10 -0
- package/dist/common/ExpressCompany/index.d.ts +7 -0
- package/dist/common/Goods/goodModel.d.ts +15 -0
- package/dist/common/Goods/index.d.ts +37 -0
- package/dist/common/GoodsTable/goodModel.d.ts +13 -0
- package/dist/common/GoodsTable/index.d.ts +14 -0
- package/dist/common/Logistics/index.d.ts +3 -0
- package/dist/common/Sku/index.d.ts +14 -0
- package/dist/common/request.d.ts +2 -0
- package/dist/config/utils.d.ts +3 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.esm.js +3948 -0
- package/dist/index.js +3992 -0
- package/dist/jst/Goods/index.d.ts +10 -0
- package/dist/jst/ItemList/index.d.ts +19 -0
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface Option {
|
|
2
|
+
value: string | number;
|
|
3
|
+
label: string;
|
|
4
|
+
children?: Option[];
|
|
5
|
+
}
|
|
6
|
+
interface ProvinceType {
|
|
7
|
+
value: string[];
|
|
8
|
+
options: Option[];
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
onChange: (value: any, selectedOptions: any) => void;
|
|
11
|
+
}
|
|
12
|
+
declare const Province: (props: Partial<ProvinceType>) => JSX.Element;
|
|
13
|
+
export default Province;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { CheckboxGroupProps, CheckboxValueType } from 'antd/es/checkbox/Group';
|
|
2
|
+
type OptionsType = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
[propName: string]: any;
|
|
6
|
+
};
|
|
7
|
+
interface CheckboxValue {
|
|
8
|
+
value?: Array<CheckboxValueType>;
|
|
9
|
+
other?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ApaasCheckboxProps extends Omit<CheckboxGroupProps, 'onChange' | 'value'> {
|
|
12
|
+
showOther?: boolean;
|
|
13
|
+
horizontal?: boolean;
|
|
14
|
+
options?: OptionsType[];
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
onChange?: (value: CheckboxValue) => void;
|
|
17
|
+
value?: CheckboxValue;
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
}
|
|
20
|
+
declare function ApaasCheckbox(props: ApaasCheckboxProps): JSX.Element;
|
|
21
|
+
export default ApaasCheckbox;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const DateType: ["DATE", "DATE_TIME", "DATE_RANGE", "DATE_TIME_RANGE"];
|
|
2
|
+
export declare type ButtonType = typeof DateType[number];
|
|
3
|
+
export interface ApaasDate {
|
|
4
|
+
dateType?: ButtonType;
|
|
5
|
+
[propName: string]: any;
|
|
6
|
+
}
|
|
7
|
+
declare const ApaasDate: (props: ApaasDate) => JSX.Element;
|
|
8
|
+
export default ApaasDate;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RadioGroupProps } from 'antd';
|
|
3
|
+
type OptionsType = {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
[propName: string]: any;
|
|
7
|
+
};
|
|
8
|
+
interface RadioValue {
|
|
9
|
+
value?: string;
|
|
10
|
+
other?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface ApaasRadioProps extends Omit<RadioGroupProps, "onChange" | "value"> {
|
|
13
|
+
showOther?: boolean;
|
|
14
|
+
horizontal?: boolean;
|
|
15
|
+
options?: OptionsType[];
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
onChange?: (value: RadioValue) => void;
|
|
18
|
+
value?: RadioValue;
|
|
19
|
+
}
|
|
20
|
+
declare function ApaasRadio(props: ApaasRadioProps): React.ReactElement;
|
|
21
|
+
export default ApaasRadio;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface optionsType {
|
|
3
|
+
name?: string;
|
|
4
|
+
id: string;
|
|
5
|
+
value?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface SliderType {
|
|
8
|
+
value: optionsType[];
|
|
9
|
+
options: optionsType[];
|
|
10
|
+
onChange: (value: optionsType[]) => void;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
allowHalf?: boolean;
|
|
13
|
+
style?: any;
|
|
14
|
+
textStyle?: any;
|
|
15
|
+
}
|
|
16
|
+
declare function ApaasRate(props: Partial<SliderType>): React.ReactElement;
|
|
17
|
+
export default ApaasRate;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SelectProps } from 'antd';
|
|
2
|
+
type OptionsType = {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
[propName: string]: any;
|
|
6
|
+
};
|
|
7
|
+
export interface ApaasSelectProps extends SelectProps<string[]> {
|
|
8
|
+
options?: OptionsType[];
|
|
9
|
+
[propName: string]: any;
|
|
10
|
+
}
|
|
11
|
+
declare function ApaasSelect(props: ApaasSelectProps): JSX.Element;
|
|
12
|
+
export default ApaasSelect;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface SliderType {
|
|
3
|
+
value: number;
|
|
4
|
+
onChange: (value: number | null) => void;
|
|
5
|
+
range: number;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function ApaasSlider(props: Partial<SliderType>): React.ReactElement;
|
|
9
|
+
export default ApaasSlider;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UploadProps } from 'antd';
|
|
2
|
+
declare type UploadValue = string[];
|
|
3
|
+
export interface ApaasUploadProps extends Omit<UploadProps, 'onChange' | 'value'> {
|
|
4
|
+
maxCount?: number;
|
|
5
|
+
maxSize?: number;
|
|
6
|
+
uploadText?: string;
|
|
7
|
+
canPreview?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
onChange?: (value: UploadValue) => void;
|
|
10
|
+
value?: UploadValue;
|
|
11
|
+
}
|
|
12
|
+
declare const ApaasUpload: ({ maxCount, maxSize, uploadText, onChange, value, accept, canPreview, disabled, ...resetProps }: ApaasUploadProps) => JSX.Element;
|
|
13
|
+
export default ApaasUpload;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { UploadProps } from 'antd';
|
|
2
|
+
declare type UploadValue = string[];
|
|
3
|
+
export interface ApaasUploadProps extends Omit<UploadProps, 'onChange' | 'value'> {
|
|
4
|
+
maxCount?: number;
|
|
5
|
+
maxSize?: number;
|
|
6
|
+
uploadText?: string;
|
|
7
|
+
canPreview?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
onChange?: (value: UploadValue) => void;
|
|
10
|
+
value?: UploadValue;
|
|
11
|
+
uniqueKey?: string;
|
|
12
|
+
hostUrl?: string;
|
|
13
|
+
actionUrl?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const ApaasUploadAsync: ({ maxCount, maxSize, uploadText, onChange, value, accept, canPreview, disabled, uniqueKey, hostUrl, actionUrl, ...resetProps }: ApaasUploadProps) => JSX.Element;
|
|
16
|
+
export default ApaasUploadAsync;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
|
+
import { Rule } from 'antd/es/form';
|
|
3
|
+
export interface WithFormItemProps {
|
|
4
|
+
label?: string;
|
|
5
|
+
name?: string;
|
|
6
|
+
extra?: ReactNode;
|
|
7
|
+
required?: boolean;
|
|
8
|
+
rules?: Rule[];
|
|
9
|
+
initialValue?: string;
|
|
10
|
+
[prop: string]: any;
|
|
11
|
+
}
|
|
12
|
+
export default function withFormItem(WrappedComponent: React.ComponentType<WithFormItemProps>): (props: WithFormItemProps) => JSX.Element;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface valueType {
|
|
3
|
+
address?: string[];
|
|
4
|
+
detail?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface AddressType {
|
|
7
|
+
value: valueType;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
onChange: (value: valueType) => void;
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}
|
|
12
|
+
declare function ApaasAddress(props: Partial<AddressType>): React.ReactElement;
|
|
13
|
+
export default ApaasAddress;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface AliPayValueType {
|
|
2
|
+
name?: string;
|
|
3
|
+
user?: string;
|
|
4
|
+
}
|
|
5
|
+
interface AliPayProps {
|
|
6
|
+
value: AliPayValueType;
|
|
7
|
+
isSingle: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
onChange: (value: AliPayValueType) => void;
|
|
10
|
+
onBlur?: (value: string, type: string) => void;
|
|
11
|
+
}
|
|
12
|
+
declare const AliPay: (props: Partial<AliPayProps>) => JSX.Element;
|
|
13
|
+
export default AliPay;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
interface BuyerNickValueType {
|
|
2
|
+
buyerNick?: string;
|
|
3
|
+
buyerOpenUid?: string;
|
|
4
|
+
}
|
|
5
|
+
interface BuyerNickProps {
|
|
6
|
+
value: BuyerNickValueType;
|
|
7
|
+
shopId: string;
|
|
8
|
+
shopList: any[];
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
onChange: (value: BuyerNickValueType) => void;
|
|
11
|
+
onBlur: (value: string, type: string) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const BuyerNick: (props: Partial<BuyerNickProps>) => JSX.Element;
|
|
14
|
+
export default BuyerNick;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import './index.less';
|
|
2
|
+
export interface InvoiceValueType {
|
|
3
|
+
ordinaryTaitou: string;
|
|
4
|
+
ordinarySerial: string;
|
|
5
|
+
ordinaryMoney: string;
|
|
6
|
+
}
|
|
7
|
+
export interface InvoiceProps {
|
|
8
|
+
value: InvoiceValueType;
|
|
9
|
+
required: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
onChange: (value: InvoiceValueType) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const Invoice: (props: Partial<InvoiceProps>) => JSX.Element;
|
|
14
|
+
export default Invoice;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface LogisticsInterceptionValueType {
|
|
2
|
+
interceptCompany: string;
|
|
3
|
+
interceptCode: string;
|
|
4
|
+
interceptType: string;
|
|
5
|
+
interceptAddress: any[];
|
|
6
|
+
interceptDetail: string;
|
|
7
|
+
interceptReceiverName: string;
|
|
8
|
+
interceptReceiverMobile: string;
|
|
9
|
+
interceptStatus: string | number;
|
|
10
|
+
interceptOther: string;
|
|
11
|
+
}
|
|
12
|
+
interface LogisticsInterceptionProps {
|
|
13
|
+
value: Partial<LogisticsInterceptionValueType>;
|
|
14
|
+
logisticsOptions: any[];
|
|
15
|
+
required: boolean;
|
|
16
|
+
disabled: boolean;
|
|
17
|
+
id: string;
|
|
18
|
+
onChange: (value: Partial<LogisticsInterceptionValueType>) => void;
|
|
19
|
+
}
|
|
20
|
+
declare const LogisticsInterception: (props: Partial<LogisticsInterceptionProps>) => JSX.Element;
|
|
21
|
+
export default LogisticsInterception;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface PaymentProps {
|
|
2
|
+
value: any;
|
|
3
|
+
zhiFubaoRequired: boolean;
|
|
4
|
+
required: boolean;
|
|
5
|
+
shopId: string;
|
|
6
|
+
shopList: any[];
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
id: string;
|
|
9
|
+
onChange: (value: any) => void;
|
|
10
|
+
onSearch: (value: any) => void;
|
|
11
|
+
onBlur: (value: any, type: string) => void;
|
|
12
|
+
}
|
|
13
|
+
declare const Payment: (props: Partial<PaymentProps>) => JSX.Element;
|
|
14
|
+
export default Payment;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface ValueType {
|
|
2
|
+
remark?: string;
|
|
3
|
+
flag?: number;
|
|
4
|
+
}
|
|
5
|
+
interface RemarkType {
|
|
6
|
+
isShowFlag: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
value: ValueType;
|
|
9
|
+
onChange: (value: ValueType) => void;
|
|
10
|
+
}
|
|
11
|
+
declare const RemarkInput: (props: Partial<RemarkType>) => JSX.Element;
|
|
12
|
+
export default RemarkInput;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface StatusProps {
|
|
2
|
+
shopId: string;
|
|
3
|
+
customStatusText: string;
|
|
4
|
+
customerService: any[];
|
|
5
|
+
isEditing: boolean;
|
|
6
|
+
isSelectStyle: boolean;
|
|
7
|
+
isUseCustomStatus: boolean;
|
|
8
|
+
status?: string;
|
|
9
|
+
originCustomer?: string[];
|
|
10
|
+
value: any;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
required: boolean;
|
|
13
|
+
onChange: (value: any) => void;
|
|
14
|
+
}
|
|
15
|
+
declare const Status: (props: StatusProps) => JSX.Element;
|
|
16
|
+
export default Status;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { InputProps } from 'antd';
|
|
2
|
+
interface TradeIdProps extends InputProps {
|
|
3
|
+
value: string;
|
|
4
|
+
shopId?: string;
|
|
5
|
+
shopList?: any[];
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
onSearch: (value: any) => void;
|
|
8
|
+
}
|
|
9
|
+
declare function TradeId(props: Partial<TradeIdProps>): JSX.Element;
|
|
10
|
+
export default TradeId;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import './index.less';
|
|
2
|
+
interface GoodModelProps {
|
|
3
|
+
visible: boolean;
|
|
4
|
+
type: number;
|
|
5
|
+
shopId: number | string;
|
|
6
|
+
imgList: any[];
|
|
7
|
+
maxLength: number;
|
|
8
|
+
shopList: any[];
|
|
9
|
+
changeSku?: boolean;
|
|
10
|
+
width?: string | number;
|
|
11
|
+
onSubmit: (...args: any[]) => any;
|
|
12
|
+
onCancel: (...args: any[]) => any;
|
|
13
|
+
}
|
|
14
|
+
declare const GoodsModal: (props: GoodModelProps) => JSX.Element;
|
|
15
|
+
export default GoodsModal;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import './index.less';
|
|
2
|
+
export interface GoodsProps {
|
|
3
|
+
value: GoodsValues;
|
|
4
|
+
type: number;
|
|
5
|
+
enableItemId?: boolean;
|
|
6
|
+
enableSupplierName?: boolean;
|
|
7
|
+
userNick?: string;
|
|
8
|
+
maxLength: number;
|
|
9
|
+
onChange: (value: any) => void;
|
|
10
|
+
shopList: any[];
|
|
11
|
+
shopId?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
changeSku?: boolean;
|
|
14
|
+
width?: string | number;
|
|
15
|
+
}
|
|
16
|
+
interface GoodsValues {
|
|
17
|
+
shopId: string;
|
|
18
|
+
imgList: any[];
|
|
19
|
+
}
|
|
20
|
+
export interface GoodsItem {
|
|
21
|
+
numIid: number;
|
|
22
|
+
picUrl: string;
|
|
23
|
+
platform: string;
|
|
24
|
+
title: string;
|
|
25
|
+
price: string;
|
|
26
|
+
outerId?: number;
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
}
|
|
29
|
+
export interface IEditState {
|
|
30
|
+
outerId: string | null;
|
|
31
|
+
numIid: number | null;
|
|
32
|
+
supplierItemOuterId?: string | null;
|
|
33
|
+
itemId?: string | null;
|
|
34
|
+
supplierName: string | null;
|
|
35
|
+
}
|
|
36
|
+
declare const Goods: (props: Partial<GoodsProps>) => JSX.Element;
|
|
37
|
+
export default Goods;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import './index.less';
|
|
2
|
+
interface GoodModelProps {
|
|
3
|
+
visible: boolean;
|
|
4
|
+
type: number;
|
|
5
|
+
shopId: number | string;
|
|
6
|
+
imgList: any[];
|
|
7
|
+
maxLength: number;
|
|
8
|
+
shopList: any[];
|
|
9
|
+
onSubmit: (...args: any[]) => any;
|
|
10
|
+
onCancel: (...args: any[]) => any;
|
|
11
|
+
}
|
|
12
|
+
declare const GoodsModal: (props: GoodModelProps) => JSX.Element;
|
|
13
|
+
export default GoodsModal;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './index.less';
|
|
3
|
+
export interface GoodsProps {
|
|
4
|
+
value: any;
|
|
5
|
+
type: number;
|
|
6
|
+
enableItemId?: boolean;
|
|
7
|
+
enableSupplierName?: boolean;
|
|
8
|
+
userNick?: string;
|
|
9
|
+
maxLength: number;
|
|
10
|
+
onChange: (value: any) => void;
|
|
11
|
+
shopList: any[];
|
|
12
|
+
}
|
|
13
|
+
declare const _default: React.ForwardRefExoticComponent<GoodsProps & React.RefAttributes<unknown>>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare type SkuProps = {
|
|
3
|
+
handleOk: (sku: {
|
|
4
|
+
enableItemId: string;
|
|
5
|
+
enableSupplierName: string;
|
|
6
|
+
propertiesName: string;
|
|
7
|
+
picUrl?: string;
|
|
8
|
+
outerSkuId?: string;
|
|
9
|
+
}) => void;
|
|
10
|
+
userNick: string | undefined;
|
|
11
|
+
type?: number;
|
|
12
|
+
};
|
|
13
|
+
declare const Sku: React.ForwardRefExoticComponent<SkuProps & React.RefAttributes<unknown>>;
|
|
14
|
+
export default Sku;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export { default as ApaasCascader } from './apaas/ApaasCascader';
|
|
2
|
+
export { default as ApaasDate } from './apaas/ApaasDate';
|
|
3
|
+
export { default as ApaasInput } from './apaas/ApaasInput';
|
|
4
|
+
export { default as ApaasInputNumber } from './apaas/ApaasInputNumber';
|
|
5
|
+
export { default as ApaasSelect } from './apaas/ApaasSelect';
|
|
6
|
+
export { default as ApaasMultipleSelect } from './apaas/ApaasMultipleSelect';
|
|
7
|
+
export { default as ApaasTextArea } from './apaas/ApaasTextArea';
|
|
8
|
+
export { default as ApaasUpload } from './apaas/ApaasUpload';
|
|
9
|
+
export { default as ApaasRadio } from './apaas/ApaasRadio';
|
|
10
|
+
export { default as ApaasUploadAsync } from './apaas/ApaasUploadAsync';
|
|
11
|
+
export { default as ApaasCheckbox } from './apaas/ApaasCheckbox';
|
|
12
|
+
export { default as ApaasSlider } from './apaas/ApaasSlider';
|
|
13
|
+
export { default as ApaasRate } from './apaas/ApaasRate';
|
|
14
|
+
export { default as ApaasAddress } from './apaas/ApaasAddress';
|
|
15
|
+
export { default as ApaasHoc } from './apaas/hoc/withFormItem';
|
|
16
|
+
export { default as BuyerNick } from './business/BuyerNick';
|
|
17
|
+
export { default as TradeId } from './business/TradeId';
|
|
18
|
+
export { default as ShopName } from './business/ShopName';
|
|
19
|
+
export { default as Address } from './business/Address';
|
|
20
|
+
export { default as Remark } from './business/Remark';
|
|
21
|
+
export { default as ExpressLogistics } from './business/ExpressLogistics';
|
|
22
|
+
export { default as ReturnLogistics } from './business/ExpressLogistics';
|
|
23
|
+
export { default as AliPay } from './business/AliPay';
|
|
24
|
+
export { default as TBGoodId } from './business/TBGoodId';
|
|
25
|
+
export { default as ChooseBaby } from './business/ChooseBaby';
|
|
26
|
+
export { default as TBGoodSerial } from './business/TBGoodSerial';
|
|
27
|
+
export { default as Supplier } from './business/Supplier';
|
|
28
|
+
export { default as Invoice } from './business/Invoice';
|
|
29
|
+
export { default as Status } from './business/Status';
|
|
30
|
+
export { default as Payment } from './business/Payment';
|
|
31
|
+
export { default as LogisticsInterception } from './business/LogisticsInterception';
|
|
32
|
+
export { default as Goods } from './common/Goods';
|
|
33
|
+
export { default as JstGoods } from './jst/Goods';
|
|
34
|
+
export { default as JstItemList } from './jst/ItemList';
|
|
35
|
+
export { default as GoodsTable } from './common/GoodsTable';
|