会议管理

This commit is contained in:
FLL
2025-07-03 17:49:23 +08:00
parent 4bf741f63d
commit 3827a13cbd
17 changed files with 357 additions and 62 deletions

View File

@@ -67,8 +67,7 @@ async function handleConfirm() {
}
const data = cloneDeep(await formApi.getValues());
if (userInfo) {
console.log(userInfo);
data.userId = userInfo.value
data.userId = userInfo.userId
data.userName = userInfo.userName
}
await (isUpdate.value ? orderChargeUpdate(data) : orderChargeAdd(data));
@@ -82,7 +81,6 @@ async function handleConfirm() {
}
}
let userInfo = reactive({
value:'',
userId: '',
userName: '',
});