const itemLabel = numberIndexMap[label] ? numberIndexMap[label] : milkNumberIndexMap[label]
这里的意思如果找不到 numberIndexMap[label],就使用 milkNumberIndexMap[label]
export const numberIndexMap = { upper_18: 0, upper_17: 1, upper_16: 2,
,但当 label 为 upper_18 时, numberIndexMap[label] 正好为 0,就会返回为 false,这时判断就有问题了,应该为
const itemLabel = !isNullish(numberIndexMap[label]) ? numberIndexMap[label] : milkNumberIndexMap[label]
isNullish 是判断不为 undefined 和 null