空状态需要处理,需要添加分享页面

This commit is contained in:
cbb
2025-12-26 17:42:07 +08:00
parent bb02cb22c0
commit dfc5888fa9
64 changed files with 11036 additions and 109 deletions

9
constants/mall-data.js Normal file
View File

@@ -0,0 +1,9 @@
/** 商城常量 */
/** 拼单状态 */
export const GROUP_STATUS = {
0: { name: '拼团中', bg: '#02A9F1', class: 'grouping' },
1: { name: '拼团成功', bg: '#00D993', class: 'success' },
2: { name: '拼团失败', bg: '#EB1C26', class: 'fail' },
3: { name: '拼团取消', bg: '#999999', class: 'cancel' }
}