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

@@ -141,6 +141,7 @@ import DialogFeebackAudit from './DialogFeebackAudit.vue'
import DialogFeebackDetail from './DialogFeebackDetail.vue'
import DialogBatchAudit from './DialogBatchAudit.vue'
import { removeNullField } from '@/utils'
import { dateFormatter } from '@/utils/formatTime'
const userStore = useUserStore()
@@ -190,7 +191,7 @@ const loading = ref(false)
async function getList() {
loading.value = true
try {
const data = await FeebackApi.getPaymentPage(searchForm.value)
const data = await FeebackApi.getPaymentPage(removeNullField(searchForm.value))
tableList.value = data.list
total.value = data.total
} finally {