diff --git a/src/pages/_login/index.vue b/src/pages/_login/index.vue index 8a189b9..d97c3d7 100644 --- a/src/pages/_login/index.vue +++ b/src/pages/_login/index.vue @@ -42,7 +42,7 @@ 忘记密码? - {{ loading ? '登陆中' : '立即登录' }} + {{ loading ? "登陆中" : "立即登录" }}

暂不支持其他方式登录

@@ -58,7 +58,7 @@ import { api } from "@/api"; import { dayjs } from "@/libs"; import { useAppStore, useUserStore } from "@/store"; -import { FieldRule, Form, Message, Modal } from "@arco-design/web-vue"; +import { FieldRule, Form, Message, Modal, Notification } from "@arco-design/web-vue"; import { reactive } from "vue"; const meridiem = dayjs.localeData().meridiem(dayjs().hour(), dayjs().minute()); @@ -102,7 +102,10 @@ const onSubmitForm = async () => { loading.value = true; const res = await api.auth.login(model); userStore.setUser(res.data.data); - Message.success(`欢迎回来,${res.data.data.nickname}!`); + Notification.success({ + title: "提示", + content: `欢迎回来,${res.data.data.nickname}!`, + }); router.push({ path: (route.query.redirect as string) || "/" }); } catch (error: any) { const message = error?.response?.data?.message; diff --git a/src/pages/my/index.vue b/src/pages/my/index.vue index 0775031..09a8b1a 100644 --- a/src/pages/my/index.vue +++ b/src/pages/my/index.vue @@ -153,7 +153,7 @@
-
支付功能
+
支付功能
通知管理员由企业互联的管理员来设置,拥有通知业务的最大权限。
diff --git a/src/pages/system/user/index.vue b/src/pages/system/user/index.vue index cf880f3..8f336c0 100644 --- a/src/pages/system/user/index.vue +++ b/src/pages/system/user/index.vue @@ -109,7 +109,7 @@ const table = useTable({ { field: "password", label: "密码", - type: "password", + type: "input", }, { field: "roleIds",