Merge branch 'main' of ssh://git.jizhiweb.cn:2222/clinic-v2/web
This commit is contained in:
commit
95f8501314
|
|
@ -170,8 +170,11 @@ const save = () => {
|
|||
)
|
||||
}
|
||||
const removeTableRow = (row: any) => {
|
||||
list.value = list.value.filter((item: any) => item.id !== row.id);
|
||||
const index = list.value.findIndex(item => item === row);
|
||||
if (index !== -1) {
|
||||
list.value.splice(index, 1);
|
||||
calculateTotalPrices();
|
||||
}
|
||||
}
|
||||
const pageNum = ref<any>(1)
|
||||
const pageSize = ref<any>(20)
|
||||
|
|
|
|||
Loading…
Reference in New Issue