Browse Source

2025-04-11 客户信息管理功能移植

master
jiayang yue 9 months ago
parent
commit
d958d88a51
  1. 26
      src/api/customer/customer.js
  2. 1446
      src/views/modules/customer/info.vue

26
src/api/customer/customer.js

@ -0,0 +1,26 @@
import { createAPI } from "@/utils/httpRequest.js";
export const customerData = data => createAPI(`/cust/CustomerData`,'post',data)
export const customerSave = data => createAPI(`/cust/customerSave`,'post',data)
export const customerDelete = id => createAPI(`/cust/customerDel`,'post',id)
// 客户开票信息
export const fetchBillingData = data => createAPI(`/cust/fetchBillingData`,'post',data)
// 删除开票信息
export const removeBillingData = id => createAPI(`/cust/removeBillingData`,'post',id)
// 保存开票信息
export const billingSave = data => createAPI(`/cust/billingSave`,'post',data)
// 获取联系人信息
export const fetchPersonData = data => createAPI(`/cust/fetchPersonData`,'post',data)
// 保存联系人信息
export const personSave = data => createAPI(`/cust/personSave`,'post',data)
// 停用联系人
export const personInactive = id => createAPI(`/cust/personInactive`,'post',id)

1446
src/views/modules/customer/info.vue
File diff suppressed because it is too large
View File

Loading…
Cancel
Save