From c0d4d1a219ff22d852acb5a762b9764e9a01411f Mon Sep 17 00:00:00 2001 From: cheng <545895878@qq.com> Date: Thu, 20 Aug 2026 22:30:07 +0800 Subject: [PATCH] =?UTF-8?q?feat(data):=20=E6=B7=BB=E5=8A=A0=E8=83=96?= =?UTF-8?q?=E4=B8=9C=E6=9D=A5=E7=B2=BE=E9=85=BF=E5=95=A4=E9=85=92=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在常量文件中新增胖东来产品信息 - 设置产品名称为胖东来,品类为精酿啤酒 - 酒精度数设定为4.5度,分组为craft类型 --- common/constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/constants.js b/common/constants.js index 4583fc8..33592af 100644 --- a/common/constants.js +++ b/common/constants.js @@ -70,6 +70,7 @@ export const BRANDS = { { name: '柏龙', product: '小麦啤', degree: 5.5, group: 'wheat' }, { name: '艾丁格', product: '小麦啤', degree: 5.3, group: 'wheat' }, // 精酿 + { name: '胖东来', product: '精酿啤酒', degree: 4.5, group: 'craft' }, { name: '鹅岛', product: 'IPA', degree: 5.9, group: 'craft' }, { name: '熊猫精酿', product: '蜂蜜生姜艾尔', degree: 5.0, group: 'craft' }, { name: '京A', product: '工人淡色艾尔', degree: 5.0, group: 'craft' },