pull/5/head
qsh 1 month ago
parent fc22c16cb1
commit df3a4b9f46
  1. 7
      src/api/clue/payment.js
  2. 23
      src/views/Clue/Order/Comp/Reback.vue

@ -5,7 +5,7 @@ export const getPaymentList = async (params) => {
return await request.get({ url: '/admin-api/crm/sign-pay-record/list', params })
}
// 查询(精简)列表
// 查询列表
export const getPaymentPage = async (params) => {
return await request.get({ url: '/admin-api/crm/sign-pay-record/page', params })
}
@ -45,3 +45,8 @@ export const updateApplyPayment = async (data) => {
data
})
}
// 导出
export const exportPayment = async (params) => {
return await request.download({ url: '/admin-api/crm/sign-pay-record/export-excel', params })
}

@ -192,6 +192,7 @@
<el-form-item>
<el-button @click="handleSearch" v-hasPermi="['clue:order:return-search']">查询</el-button>
<el-button @click="handleReset" v-hasPermi="['clue:order:return-reset']">重置</el-button>
<el-button @click="handleExport" v-hasPermi="['clue:order:return-export']">导出</el-button>
<el-button @click="batchAudit" v-hasPermi="['clue:order:return-batch-audit']">
批量审核
</el-button>
@ -423,8 +424,10 @@ import DialogFeebackDetail from './DialogFeebackDetail.vue'
import DialogBatchAudit from './DialogBatchAudit.vue'
import { removeNullField } from '@/utils'
import download from '@/utils/download'
import { useAppStore } from '@/store/modules/app'
import { dateFormatter, formatDate } from '@/utils/formatTime'
import { ElLoading } from 'element-plus'
const userStore = useUserStore()
const message = useMessage() //
@ -518,6 +521,26 @@ async function getList() {
}
}
async function handleExport() {
try {
ElLoading.service({
lock: true,
text: '正在导出数据,请稍后...',
background: 'rgba(0, 0, 0, 0.7)'
})
const params = removeNullField(searchForm.value)
delete params.pageNo
delete params.pageSize
const data = await FeebackApi.exportPayment(params)
download.excel(data, `汇款记录表${new Date().getTime()}.xls`)
} finally {
setTimeout(() => {
const loadingInstance = ElLoading.service()
loadingInstance.close()
}, 400)
}
}
const batchIds = ref([])
function handleSelectionChange(val) {
batchIds.value = val.map((it) => it.id)

Loading…
Cancel
Save