From 706b4e20d56b2e7a2812b2dfee8b0557e8977747 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Sat, 16 Mar 2024 14:40:46 +0800 Subject: [PATCH] add --- src/api/zjzx_invoice.ts | 8 +++++++- src/api/zjzx_refund.ts | 8 +++++++- src/views/zjzx_refund/index.vue | 13 ++++++++----- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/api/zjzx_invoice.ts b/src/api/zjzx_invoice.ts index dde92dd..3d31bc2 100644 --- a/src/api/zjzx_invoice.ts +++ b/src/api/zjzx_invoice.ts @@ -23,4 +23,10 @@ export function apiZjzxInvoiceDelete(params: any) { // 造价咨询--开票台账详情 export function apiZjzxInvoiceDetail(params: any) { return request.get({ url: '/zjzx_finance.zjzx_invoice/detail', params }) -} \ No newline at end of file +} + +// 造价咨询--开票台账列表 +export function apiZjzxInvoiceDatas(params: any) { + return request.get({ url: '/zjzx_finance.zjzx_invoice/datas', params }) +} + diff --git a/src/api/zjzx_refund.ts b/src/api/zjzx_refund.ts index 913aef8..c39257d 100644 --- a/src/api/zjzx_refund.ts +++ b/src/api/zjzx_refund.ts @@ -23,4 +23,10 @@ export function apiZjzxRefundDelete(params: any) { // 造价咨询--到账台账详情 export function apiZjzxRefundDetail(params: any) { return request.get({ url: '/zjzx_finance.zjzx_refund/detail', params }) -} \ No newline at end of file +} + +// 造价咨询--到账台账详情 +export function apiZjzxRefundDatas(params: any) { + return request.get({ url: '/zjzx_finance.zjzx_refund/datas', params }) +} + diff --git a/src/views/zjzx_refund/index.vue b/src/views/zjzx_refund/index.vue index e95f289..acb41f3 100644 --- a/src/views/zjzx_refund/index.vue +++ b/src/views/zjzx_refund/index.vue @@ -3,11 +3,13 @@ - + + + + - @@ -65,6 +67,7 @@ import { usePaging } from '@/hooks/usePaging' import { useDictData } from '@/hooks/useDictOptions' import { apiZjzxRefundLists, apiZjzxRefundDelete, apiZjzxRefundDetail } from '@/api/zjzx_refund' +import { apiZjzxInvoiceDatas } from '@/api/zjzx_invoice' import { apiCostProjectDatas } from "@/api/cost_project"; import feedback from '@/utils/feedback' import EditPopup from './edit.vue' @@ -77,7 +80,7 @@ const showEdit = ref(false) // 查询条件 const queryParams = reactive({ project_id: '', - invoce_id: '', + invoice_id: '', create_user: '' })