|
|
|
|
@ -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 || []));
|
|
|
|
|
|