fix: cherry-markdown 上传附件和样式调整

This commit is contained in:
zhanzhenping 2024-07-10 17:52:44 +08:00
parent 13cc0b1e3b
commit 46cd063e71
2 changed files with 6 additions and 4 deletions

View File

@ -3203,7 +3203,8 @@ div[data-type=codeBlock] .token.inserted {
}
.cherry-editor .cm-s-default .cm-url {
background: #4b4b4b;
background: #f8fafb;
color: #3582fb;
font-family: "Menlo", "Liberation Mono", "Consolas", "DejaVu Sans Mono", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace;
font-size: 0.9em;
}

View File

@ -630,10 +630,11 @@ function myFileUpload(file, callback) {
},
success: function (data) {
layer.close(layerIndex);
if (data[0].errcode !== 0) {
layer.msg(data[0].message);
// 验证data是否为数组
if (data.errcode !== 0) {
layer.msg(data.message);
} else {
callback(data[0].url); // 假设返回的 JSON 中包含上传文件的 URL调用回调函数并传入 URL
callback(data.url); // 假设返回的 JSON 中包含上传文件的 URL调用回调函数并传入 URL
}
}
});