-
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
-
@@ -88,10 +84,9 @@
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiinvoiceapplyLists, apiinvoiceapplyDelete, apiinvoiceapplyDetail } from '@/api/InvoicingRequests'
-import { timeFormat } from '@/utils/util'
-import { apiContractLists } from '@/api/contract'
-import { apiCustomLists } from '@/api/custom'
-import { getAllProjectTypes } from '@/api/projecttype'
+import { apiContractSearch } from '@/api/contract'
+import { apiProjectSearch } from '@/api/project'
+import { apiCustomSearch } from '@/api/custom'
const protype = reactive([])
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
@@ -111,11 +106,11 @@ const list1 = ref([])
// 查询条件
const queryParams = reactive({
+ invoicing_code: '',
invoicing_company_name: '',
contract_id: '',
customer_id: '',
-
-
+ project_id: ''
})
// 选中数据
@@ -166,24 +161,6 @@ const handledetail = async (data: any) => {
detailRef.value?.setFormData(res)
}
-//获取客户
-const getlist1 = () => {
- apiContractLists().then((res) => {
- list.value = res.lists
- })
-}
-
-//获取合同
-const getlist2 = () => {
- apiCustomLists().then((res) => {
- list1.value = res.lists
- })
-}
-
-
-getlist1()
-getlist2()
-
if (route.query?.listId) {
handledetail({ id: route.query.listId })
diff --git a/src/views/bank_account/detail.vue b/src/views/bank_account/detail.vue
index 0c0c809..99ab533 100644
--- a/src/views/bank_account/detail.vue
+++ b/src/views/bank_account/detail.vue
@@ -2,10 +2,6 @@