hookehuyr

feat(recall): 添加召回老客户登录页面及相关资源

- 新增登录页面路由配置
- 添加背景图片和标题图片资源
- 实现手机号验证码登录功能
- 集成用户协议弹窗展示
This diff is collapsed. Click to expand it.
...@@ -103,6 +103,12 @@ export const routes = [ ...@@ -103,6 +103,12 @@ export const routes = [
103 meta: { title: '历史足迹' }, 103 meta: { title: '历史足迹' },
104 }, 104 },
105 { 105 {
106 + path: '/recall/login',
107 + name: 'RecallLogin',
108 + component: () => import('../views/recall/login.vue'),
109 + meta: { title: '召回老客户-登录页' },
110 + },
111 + {
106 path: '/checkout', 112 path: '/checkout',
107 name: 'CheckoutPage', 113 name: 'CheckoutPage',
108 component: () => import('../views/checkout/CheckoutPage.vue'), 114 component: () => import('../views/checkout/CheckoutPage.vue'),
......
This diff is collapsed. Click to expand it.