This commit is contained in:
2026-01-16 16:40:54 +08:00
parent 8b866a590d
commit 260c454809
24 changed files with 12 additions and 84 deletions

View File

@@ -226,7 +226,6 @@ const confirmFun = async () => {
if (await tableFormRef.value.validateFun()) {
loadingInterface.value = true;
const fromData: any = tableFormRef.value.getFormDataFun();
console.log('fromData', fromData);
if (fromData.planTime) {
fromData.beginTime = fromData.planTime[0];
fromData.endTime = fromData.planTime[1];
@@ -384,7 +383,6 @@ const changeFun = async (val: any, type: string) => {
}
editFormInfo.value = { ...formData };
}
console.log('changeFun');
emits('changeForm', { val, type });
};