diff --git a/README.md b/README.md index 53f54a9..6f74a96 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@
-

Ench Admin

+ +

Ench Admin

@@ -11,7 +12,7 @@
## 🌈 介绍 -[Ench-admin](https://github.com/chen-see/ench-admin)一个基于Vue3、Vite3、Typescript、pinia、Naive UI、Vue-Router的后台管理免费开源模板,助力提高开发效率,让大家早点下班做自己的事情 +[Ench-admin](https://github.com/chen-see/ench-admin)一个基于Vue3、Vite4、Typescript、pinia、Naive UI、Vue-Router的后台管理免费开源模板,助力提高后台管理项目开发效率 ## 😎 线上预览地址 diff --git a/mock/module/user.ts b/mock/module/user.ts index d433829..63b0762 100644 --- a/mock/module/user.ts +++ b/mock/module/user.ts @@ -7,7 +7,7 @@ const token = () => Random.string('upper', 32, 32) const userData = [ { - userId: 1, + userId: '1', userName: 'super', password: '123456', nickName: '超级管理员大人', @@ -15,7 +15,7 @@ const userData = [ role: 'super', }, { - userId: 2, + userId: '2', userName: 'admin', password: '123456', nickName: '管理员大人', @@ -23,7 +23,7 @@ const userData = [ role: 'admin', }, { - userId: 3, + userId: '3', userName: 'user', password: '123456', nickName: '用户大人', @@ -472,11 +472,13 @@ export default [ url: '/mock/getUserInfo', method: 'get', response: (options: any) => { - const { userId = undefined } = options.query + const { userId } = options.query if (!userId) return resultFailed(null, '未传入用户id!') const userInfo = userData.find(item => item.userId === userId) + console.warn("🚀 ~ file: user.ts:480 ~ userData:", userData) + console.warn("🚀 ~ file: user.ts:486 ~ userId:", userId) if (userInfo) return resultSuccess(userInfo)