pull/2/head
qsh 2 months ago
parent 98fc520e27
commit b2a7fa8dc4
  1. 4
      .env.base
  2. 3
      src/views/Clue/Order/Comp/AfterSales.vue
  3. 3
      src/views/Clue/Order/Comp/Delivery.vue
  4. 3
      src/views/Clue/Order/Comp/Reback.vue

@ -4,8 +4,8 @@ VITE_NODE_ENV=development
VITE_DEV=true
# 请求路径
# VITE_BASE_URL='http://118.31.23.45:48080'
VITE_BASE_URL='http://114.55.169.15:48080'
VITE_BASE_URL='http://118.31.23.45:48080'
# VITE_BASE_URL='http://114.55.169.15:48080'
# 上传路径
VITE_UPLOAD_URL='http://118.31.23.45:48080/admin-api/system/file/upload'

@ -142,6 +142,7 @@ import DialogAfterSaleAudit from './DialogAfterSaleAudit.vue'
import DialogAfterSaleDetail from './DialogAfterSaleDetail.vue'
import DialogBatchAudit from './DialogBatchAudit.vue'
import { removeNullField } from '@/utils'
import { dateFormatter } from '@/utils/formatTime'
const afterSaleAuditDialog = ref()
@ -191,7 +192,7 @@ const loading = ref(false)
async function getList() {
loading.value = true
try {
const data = await AfterSaleApi.getAfterSalePage(searchForm.value)
const data = await AfterSaleApi.getAfterSalePage(removeNullField(searchForm.value))
tableList.value = data.list
total.value = data.total
} finally {

@ -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 {

@ -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 {

Loading…
Cancel
Save