背景音乐和 故障上报 宝易系统

This commit is contained in:
2025-12-23 10:08:11 +08:00
parent 322685fbb8
commit 82ecc76d00
19 changed files with 200 additions and 50 deletions

View File

@@ -712,6 +712,28 @@ function dockingInfo() {
.dialog({ title: lang.DockingInformation, width: 600, height: 380 })
.dialog("open");
}
function uploadmusic()
{
var filename = $("#welcomebgm").val();
if (filename == "") {
return;
}
$.ajaxFileUpload({
url: "/SysHotel/UploadWebcomeBGM/",
type: "POST",
secureuri: false,
fileElementId: "welcomebgm",
dataType: "json",
success: function (data) {
},
error: function (data, status, e) {
$("#msg").html(e);
}
});
}
//保存酒店第三方对接信息
function saveDockingInfo() {
var form = $("#dialog").find("form");