@aliretail/react-materials-components
Version:
49 lines (48 loc) • 1.18 kB
TypeScript
export interface IDataSource {
header: {
title: Array<{
label: string;
value: string;
}>;
warningMessage: string;
isRemark: boolean;
};
children: Array<{
parent: number;
index: number;
quantity: string[];
afterSaleAction: {
isStartAfterSale: boolean;
checkAfterSale: false;
};
orderStatus: {
statusText: string;
hasOrderDetailLink: boolean;
};
orderOperation: {
hasCloseOrder: boolean;
};
item: {
imageUrl: string;
title: string;
description: string;
subTitle: string;
iconType: string;
subTitleLength: 25;
showBalloon: boolean;
balloonContent: string;
};
deliveryInfo: Array<{
title: string;
subTitle: string;
description?: string;
}>;
itemPrice: {
lineationPrice: string;
currentPrice: string;
};
amountPrice: {
currentPrice: string;
};
}>;
}