feat: 🚀 生产环境更新

This commit is contained in:
2025-09-18 11:58:42 +08:00
parent 9110df9711
commit f7979b4e9b
3 changed files with 7 additions and 2 deletions

View File

@@ -438,10 +438,10 @@ const confirmInsertImages = () => {
// 按排序索引升序插入
const sortedByOrder = [...sortedImageList.value].sort((a, b) => a.sortOrder - b.sortOrder);
//
sortedByOrder.forEach(item => {
quill.insertEmbed(currentInsertIndex, "customImage", {
url: "https://dev.ow.f2b211.com" + item.path,
url: item.path,
id: item.serverImgId || generateUUID()
});
currentInsertIndex++;