完善功能

This commit is contained in:
2025-09-22 15:50:45 +08:00
parent 365cd2397a
commit 3c7fe1e9e0
5 changed files with 14 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
<!DOCTYPE html>
<html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>展板数据配置</title>
<link rel="favicon" href="/favicon.ico" type="image/x-icon">
<link href="layui/css/layui.css" rel="stylesheet">
<style>
.container {
@@ -289,7 +290,7 @@
},
done: function (res) {
// 若上传失败
if (res.state != 1) {
if (res.state != 1) {
layer.msg('上传失败', { icon: 2 });
return;
}
@@ -330,7 +331,7 @@
if (res.state != 1) {
layer.msg('上传失败', { icon: 2 });
return;
}
}
// 上传成功的一些操作
$('#image2').attr('src', res.data); // 置空上传失败的状态
$('#upload-text2').html(''); // 置空上传失败的状态

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -159,6 +159,7 @@ namespace 电子展板.Controller
}
ActionResult response = new ActionResult(HttpStatusCode.OK);
response.Content = new ByteArrayContent(bytes);
response.Content.Headers.ContentEncoding.Add("utf-8");
response.Content.Headers.ContentType = new MediaTypeHeaderValue(contentType);
response.Content.Headers.ContentLength = bytes.Length;
return response;

View File

@@ -28,6 +28,15 @@ namespace 电子展板.Controller
return Resouce("/Views/Index.html", "text/html");
}
#region css
[HttpGet, Route("favicon.ico")]
public ActionResult Favicon_ICO()
{
return Resouce("/favicon.ico", "image/x-icon");
}
#endregion
[HttpGet, Route("getConfig")]
public ActionResult GetConfig()
{