refactor: 更改图片路径大小写

#Comment
comment 修复Linux操作系统下大小写敏感问题
This commit is contained in:
Argo Zhang 2019-08-18 15:04:55 +08:00
parent a72f4de76f
commit 254f628d03
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
Title = "服务器内部错误",
Content = "服务器内部错误",
Detail = "相关错误信息已经记录到日志中,请登录服务器或后台管理中查看",
Image = "~/Images/error_icon.png",
Image = "~/images/error_icon.png",
ReturnUrl = "~/Admin/Index"
};
@ -61,7 +61,7 @@
case 404:
model.Title = "资源未找到";
model.Content = "请求资源未找到";
model.Image = "~/Images/404_icon.png";
model.Image = "~/images/404_icon.png";
break;
case 403:
model.Title = "未授权请求";