提交 9c3ab72d 编写于 作者: 青阳龙野's avatar 青阳龙野

update to v1.0.28-release

上级 5a55a293
...@@ -82,6 +82,8 @@ _本次更新为维护性的更新,修复一些已经发现的问题并优化 ...@@ -82,6 +82,8 @@ _本次更新为维护性的更新,修复一些已经发现的问题并优化
+ 修正了部分启动命令提示信息描述不正确的问题。 + 修正了部分启动命令提示信息描述不正确的问题。
+ 优化了系统运行时的终端输出内容,避免输出信息过于杂乱影响命令操作。 + 优化了系统运行时的终端输出内容,避免输出信息过于杂乱影响命令操作。
+ 完善了命令模式下“文件管理”功能,进一步优化其命令检验和提示机制,方便使用者进行日常操作。 + 完善了命令模式下“文件管理”功能,进一步优化其命令检验和提示机制,方便使用者进行日常操作。
+ 进一步完善了文件系统数据效验机制,更好地保证其“整洁”、稳定和健壮。
+ 其他一些细节优化。
> 需要查看更多版本历史信息?请访问: https://kohgylw.gitee.io/News.html > 需要查看更多版本历史信息?请访问: https://kohgylw.gitee.io/News.html
......
...@@ -81,8 +81,10 @@ $(function() { ...@@ -81,8 +81,10 @@ $(function() {
}); });
// 关闭登陆模态框自动清空输入数据 // 关闭登陆模态框自动清空输入数据
$('#loginModal').on('hidden.bs.modal', function(e) { $('#loginModal').on('hidden.bs.modal', function(e) {
$("#accountid").val(''); if($("#dologinButton").attr('disabled') !== 'disabled'){
$("#accountpwd").val(''); $("#accountid").val('');
$("#accountpwd").val('');
}
$("#accountidbox").removeClass("has-error"); $("#accountidbox").removeClass("has-error");
$("#accountpwdbox").removeClass("has-error"); $("#accountpwdbox").removeClass("has-error");
$("#alertbox").removeClass("alert"); $("#alertbox").removeClass("alert");
...@@ -596,7 +598,6 @@ function dologin() { ...@@ -596,7 +598,6 @@ function dologin() {
// 发送加密文本 // 发送加密文本
function sendLoginInfo(encrypted) { function sendLoginInfo(encrypted) {
$.ajax({ $.ajax({
type : "POST", type : "POST",
dataType : "text", dataType : "text",
...@@ -1139,8 +1140,7 @@ function createfolder() { ...@@ -1139,8 +1140,7 @@ function createfolder() {
showFolderView(locationpath); showFolderView(locationpath);
break; break;
default: default:
$('#newFolderModal').modal('hide'); showFolderAlert("提示:出现意外错误,可能未能创建文件夹。");
showFolderView(locationpath);
break; break;
} }
} }
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册