You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import DocumentApprovedIcon from "../components/DocumentApprovedIcon";
|
|
|
|
import PdfDocumentIcon from "../components/PdfDocumentIcon";
|
|
|
|
import DocumentClockIcon from "../components/DocumentClockIcon";
|
|
|
|
interface ProductStatus {
|
|
|
|
icon: React.ElementType;
|
|
|
|
text: string;
|
|
|
|
status: number | null;
|
|
|
|
}
|
|
|
|
export const productStatus: ProductStatus[] = [
|
|
|
|
{ icon: DocumentApprovedIcon, text: '待报价', status: 8 },
|
|
|
|
{ icon: PdfDocumentIcon, text: '待付款', status: 0 },
|
|
|
|
{ icon: DocumentClockIcon, text: '付运费', status: 6 },
|
|
|
|
{ icon: DocumentClockIcon, text: '待发货', status: 1 },
|
|
|
|
{ icon: DocumentApprovedIcon, text: '运输中', status: 7 },
|
|
|
|
{ icon: DocumentApprovedIcon, text: '代收货', status: 2 },
|
|
|
|
{ icon: PdfDocumentIcon, text: '已完成', status: 3 },
|
|
|
|
{ icon: DocumentClockIcon, text: '已取消', status: 4 },
|
|
|
|
{ icon: DocumentClockIcon, text: '已退款', status: 5 }
|
|
|
|
]
|