- 实现未登录/已登录两种状态样式 - 添加常用功能入口:我的订单、往期测评、联系我们、邀请新用户 - 添加其他功能入口:关于、用户协议、隐私政策、退出登录 - 实现退出登录二次确认弹窗 - 修复 uni.scss 中 SCSS 导入路径问题 - 整理 .gitignore 文件,移除 unpackage 构建目录
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
/**
|
|
* Store 模块导出
|
|
*/
|
|
|
|
export { useUserStore, USER_LEVEL } from './user.js'
|
|
export { useAppStore } from './app.js'
|
|
export { useChatStore, MessageType, MessageStatus } from './chat.js'
|