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.

9 lines
422 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/** 查价货物硬限制(PRD §4.2.8;托盘数上限已取消,仅要求正整数) */
export const CARGO_LIMITS = {
palletCount: { min: 1, max: 9_999 },
dimIn: { lengthMax: 999, widthMax: 99, heightMax: 99, min: 1 },
weightLbPerPallet: { min: 0.01, max: 9_999 },
/** 匿名路径整票总重软上限(与历史公式兼容;登录态用 45000 lb 规则) */
totalWeightLbMax: 9_999 * 25,
} as const;