v1.6 版本发布 ,详情查看版本说明
This commit is contained in:
@@ -15,7 +15,7 @@ export function parseTime(time) {
|
||||
var minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
|
||||
var seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
|
||||
// 拼接
|
||||
return year + '年' + month + '月' + day + '日 ' + hours + ':' + minutes + ':' + seconds
|
||||
return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds
|
||||
} else {
|
||||
return ''
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ service.interceptors.response.use(
|
||||
}
|
||||
if (code === 401) {
|
||||
MessageBox.confirm(
|
||||
'登录状态过期了哦,您可以继续留在该页面,或者重新登录',
|
||||
'登录状态已过期,您可以继续留在该页面,或者重新登录',
|
||||
'系统提示',
|
||||
{
|
||||
confirmButtonText: '重新登录',
|
||||
|
||||
Reference in New Issue
Block a user