1.代码优化

v1.0.0
sws 2024-09-18 17:16:01 +08:00
parent ff660f81ce
commit a0328c2cc1
1 changed files with 2 additions and 2 deletions

View File

@ -218,8 +218,8 @@ const get_coupon = () => {
});
};
const data_list_computer = computed(() => {
const { data_type, type, number, data_list, data_auto_list } = form.value;
return { data_type, type, number, data_list, data_auto_list };
const { data_type, type, number, data_list } = form.value;
return { data_type, type, number, data_list };
});
watch(
() => data_list_computer.value,