From b8b48e3a04e6cf140a8beebfeb59007b220f127d Mon Sep 17 00:00:00 2001 From: yinq Date: Wed, 11 Mar 2026 17:50:29 +0800 Subject: [PATCH] =?UTF-8?q?1.0.85=20=E5=90=88=E5=90=8C=E5=9B=9E=E6=AC=BE?= =?UTF-8?q?=E9=98=B6=E6=AE=B5=E6=8E=A5=E5=8F=A3=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/oa/erp/contractChange/edit.vue | 6 +++--- src/views/oa/erp/contractInfo/edit.vue | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/views/oa/erp/contractChange/edit.vue b/src/views/oa/erp/contractChange/edit.vue index e3fc48f..bb710e5 100644 --- a/src/views/oa/erp/contractChange/edit.vue +++ b/src/views/oa/erp/contractChange/edit.vue @@ -447,7 +447,7 @@ import type { ContractChangeSaveForm } from '@/api/oa/erp/contractChange/types'; import type { ContractMaterialForm } from '@/api/oa/erp/contractMaterial/types'; import type { ContractPaymentMethodForm } from '@/api/oa/erp/contractPaymentMethod/types'; import { getBaseUnitInfoList } from '@/api/oa/base/unitInfo'; -import { listPaymentStage } from '@/api/oa/base/paymentStage'; +import { getBasePaymentStageList } from '@/api/oa/base/paymentStage'; import type { PaymentStageVO } from '@/api/oa/base/paymentStage/types'; import { getCrmCustomerInfoList } from '@/api/oa/crm/customerInfo'; import { getCrmPaymentAccountList } from '@/api/oa/crm/paymentAccount'; @@ -812,9 +812,9 @@ async function loadDetail() { function loadSelectOptions() { getBaseUnitInfoList(null).then((res) => (unitInfoList.value = res.data || [])); - listPaymentStage({ pageNum: 1, pageSize: 500 }).then((res) => (paymentStageList.value = res.rows || [])); + getBasePaymentStageList({} as any).then((res) => (paymentStageList.value = res.data || [])); getCrmCustomerInfoList(null).then((res) => (customerInfoList.value = res.data || [])); - getUserList({ pageNum: 1, pageSize: 1000 }).then((res) => (userInfoList.value = res.data || [])); + getUserList({} as any).then((res) => (userInfoList.value = res.data || [])); getCrmPaymentAccountList({}).then((res) => (paymentAccountList.value = res.data || [])); getBasePrintTemplateList({ templateType: '1' }).then((res) => (printTemplateList.value = res.data || [])); allListDept({} as any).then((res) => (deptInfoList.value = res.data || [])); diff --git a/src/views/oa/erp/contractInfo/edit.vue b/src/views/oa/erp/contractInfo/edit.vue index 6506eca..be15ebc 100644 --- a/src/views/oa/erp/contractInfo/edit.vue +++ b/src/views/oa/erp/contractInfo/edit.vue @@ -664,7 +664,7 @@ import { getInfo } from '@/api/login'; import FileUpload from '@/components/FileUpload/index.vue'; import { contractAddMaterialInfo } from '@/api/oa/base/materialInfo'; import { MaterialInfoForm } from '@/api/oa/base/materialInfo/types'; -import { listPaymentStage } from '@/api/oa/base/paymentStage'; +import { getBasePaymentStageList } from '@/api/oa/base/paymentStage'; import type { PaymentStageVO } from '@/api/oa/base/paymentStage/types'; import { getCrmPaymentAccountList } from '@/api/oa/crm/paymentAccount'; @@ -787,8 +787,9 @@ const getUserInfoListSelect = async () => { /** 付款节点下拉列表(回款阶段) */ const paymentStageList = ref([]); const getPaymentStageListSelect = async () => { - const res = await listPaymentStage({ pageNum: 1, pageSize: 500 }); - paymentStageList.value = res.rows || []; + const params = { } as any; + const res = await getBasePaymentStageList(params); + paymentStageList.value = res.data || []; }; /** 付款账户下拉列表 */