This commit is contained in:
qsh
2024-07-24 11:24:07 +08:00
parent 98fc520e27
commit b2a7fa8dc4
4 changed files with 8 additions and 5 deletions

View File

@@ -113,6 +113,7 @@
import { getSimpleUserList as getUserOption } from '@/api/system/user'
import { getSimpleProductList } from '@/api/mall/product'
import * as DeliveryApi from '@/api/clue/delivery'
import { removeNullField } from '@/utils'
import { dateFormatter } from '@/utils/formatTime'
// const message = useMessage() // 消息弹窗
@@ -155,7 +156,7 @@ const loading = ref(false)
async function getList() {
loading.value = true
try {
const data = await DeliveryApi.getDeliveryPage(searchForm.value)
const data = await DeliveryApi.getDeliveryPage(removeNullField(searchForm.value))
tableList.value = data.list
total.value = data.total
} finally {