解释下面代码loginSuccess () { this.$router.push({ path: "/dashboard/analysis" }).catch(()=>{ console.log('登录跳转首页出错,这个错误从哪里来的') }) this.$notification.success({ message: '欢迎', description: `${timeFix()},欢迎回来`, }); },
时间: 2024-04-26 20:27:08 浏览: 98
struts.xml配置详解
这段代码是一个登录成功后的回调函数。在函数中,首先通过路由跳转到了仪表盘分析页面。如果路由跳转出现了错误,会在控制台打印“登录跳转首页出错,这个错误从哪里来的”的提示信息。接着,使用Ant Design Vue组件库中的通知组件,展示一条欢迎信息,包括当前时间和欢迎回来的提示语。通知组件中的message属性用于显示消息标题,description属性用于显示消息的详细内容。其中,`${timeFix()}`是一个自定义函数,用于获取当前时间并格式化,作为欢迎信息中的时间部分。
阅读全文
相关推荐
<%-- Created by IntelliJ IDEA. User: syp Date: 2023/5/22 Time: 13:59 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Denglu</title> </head> <body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <fieldset style="width: auto; margin: 0px auto"> <legend> 欢迎使用常州工业职业技术学院人员管理系统 </legend>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset> </body> </html>
<form action="loginSuccess.action"> 用户:<input type="text" name="username"/>
密码:<input type="password" name="password"/>
<input type="submit" value="登录"/> 注册 </form> </fieldset>