完成会议管理功能

This commit is contained in:
2025-10-29 23:48:00 +08:00
parent 139ccf2996
commit 25df322e32

View File

@@ -473,6 +473,7 @@ const initQuillEditor = () => {
}
quillInstance.on('text-change', (delta, _, source) => {
form.value.intro = quillInstance.root.innerHTML;
if (source === 'user') {
const pastedBase64 = getPastedBase64Image(delta);
if (pastedBase64) {
@@ -579,6 +580,7 @@ const submitMeeting = async () => {
start_time: subtractEightHours(form.value.start_time),
end_time: subtractEightHours(form.value.end_time),
};
console.log("更新数据:",submitData)
try {
let url = `${API_BASE_URL}/meetings`;