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