From c32ff7f7773841d8a9477c1714a36982c1eb6283 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Wed, 27 Mar 2024 16:06:10 +0800 Subject: [PATCH] add --- src/api/financial_budget_doc.ts | 22 +- .../financial_department_income_settlement.ts | 58 +++++ src/components/createUserLable/index.vue | 11 +- .../dialogTable/dialogTableConfig.ts | 23 ++ src/components/formTable/index.vue | 3 + src/components/popup/index.vue | 2 +- src/install/directives/type.ts | 20 ++ src/utils/validate.ts | 33 ++- src/views/cost_approved_projects/edit.vue | 6 +- .../detail.js | 56 +++++ .../edit.vue | 204 ++++++++++++++++++ .../index.vue | 142 ++++++++++++ src/views/manage_accept_doc/edit.vue | 8 +- src/views/manage_company/edit.vue | 22 +- src/views/manage_company/index.vue | 9 +- src/views/manage_engineering_changes/edit.vue | 5 +- src/views/manage_metered_payment/edit.vue | 7 +- .../manage_monthly_progress_report/edit.vue | 5 +- src/views/manage_project/edit.vue | 37 ++-- src/views/manage_project/index.vue | 22 +- src/views/manage_send_doc/edit.vue | 7 +- src/views/project_cost_budget/edit.vue | 2 +- src/views/project_equipment_budget/edit.vue | 2 +- .../project_insurance_management/edit.vue | 6 +- src/views/project_labor_budget/edit.vue | 2 +- src/views/project_subpackage_budget/edit.vue | 2 +- src/views/supervision_check_item/edit.vue | 3 +- .../edit.vue | 8 +- src/views/supervision_device_entry/edit.vue | 2 +- .../supervision_large_equipment/edit.vue | 4 +- .../edit.vue | 2 +- .../edit.vue | 3 +- .../edit.vue | 3 +- .../supervision_project_case_review/edit.vue | 5 +- .../edit.vue | 22 +- .../index.vue | 32 +-- 36 files changed, 663 insertions(+), 137 deletions(-) create mode 100644 src/api/financial_department_income_settlement.ts create mode 100644 src/install/directives/type.ts create mode 100644 src/views/financial_department_income_settlement/detail.js create mode 100644 src/views/financial_department_income_settlement/edit.vue create mode 100644 src/views/financial_department_income_settlement/index.vue diff --git a/src/api/financial_budget_doc.ts b/src/api/financial_budget_doc.ts index 303bbee..3436f70 100644 --- a/src/api/financial_budget_doc.ts +++ b/src/api/financial_budget_doc.ts @@ -1,26 +1,34 @@ -import request from '@/utils/request' +import request from "@/utils/request"; // 财务管理--项目预算书列表 export function apiFinancialBudgetDocLists(params: any) { - return request.get({ url: '/financial.financial_budget_doc/lists', params }) + return request.get({ url: "/financial.financial_budget_doc/lists", params }); } // 添加财务管理--项目预算书 export function apiFinancialBudgetDocAdd(params: any) { - return request.post({ url: '/financial.financial_budget_doc/add', params }) + return request.post({ url: "/financial.financial_budget_doc/add", params }); } // 编辑财务管理--项目预算书 export function apiFinancialBudgetDocEdit(params: any) { - return request.post({ url: '/financial.financial_budget_doc/edit', params }) + return request.post({ url: "/financial.financial_budget_doc/edit", params }); } // 删除财务管理--项目预算书 export function apiFinancialBudgetDocDelete(params: any) { - return request.post({ url: '/financial.financial_budget_doc/delete', params }) + return request.post({ + url: "/financial.financial_budget_doc/delete", + params, + }); } // 财务管理--项目预算书详情 export function apiFinancialBudgetDocDetail(params: any) { - return request.get({ url: '/financial.financial_budget_doc/detail', params }) -} \ No newline at end of file + return request.get({ url: "/financial.financial_budget_doc/detail", params }); +} + +// 财务管理--项目预算书 +export function apiFinancialBudgetDocSearch(params: any) { + return request.get({ url: "/financial.financial_budget_doc/datas", params }); +} diff --git a/src/api/financial_department_income_settlement.ts b/src/api/financial_department_income_settlement.ts new file mode 100644 index 0000000..d615653 --- /dev/null +++ b/src/api/financial_department_income_settlement.ts @@ -0,0 +1,58 @@ +import request from "@/utils/request"; + +// 财务管理--部门收入结算列表 +export function apiFinancialDepartmentIncomeSettlementLists(params: any) { + return request.get({ + url: "/financial.financial_department_income_settlement/lists", + params, + }); +} + +// 添加财务管理--部门收入结算 +export function apiFinancialDepartmentIncomeSettlementAdd(params: any) { + return request.post({ + url: "/financial.financial_department_income_settlement/add", + params, + }); +} + +// 编辑财务管理--部门收入结算 +export function apiFinancialDepartmentIncomeSettlementEdit(params: any) { + return request.post({ + url: "/financial.financial_department_income_settlement/edit", + params, + }); +} + +// 删除财务管理--部门收入结算 +export function apiFinancialDepartmentIncomeSettlementDelete(params: any) { + return request.post({ + url: "/financial.financial_department_income_settlement/delete", + params, + }); +} + +// 财务管理--部门收入结算详情 +export function apiFinancialDepartmentIncomeSettlementDetail(params: any) { + return request.get({ + url: "/financial.financial_department_income_settlement/detail", + params, + }); +} +// 财务管理--部门收入结算列表 +export function apiFinancialDepartmentIncomeSettlementDetailLists(params: any) { + return request.get({ + url: "/financial.financial_department_income_settlement_detail/lists", + params, + }); +} + +// 删除财务管理--部门收入结算 +export function apiFinancialDepartmentIncomeSettlementDetailDelete( + params: any +) { + return request.post({ + url: "/financial.financial_department_income_settlement_detail/delete", + params, + }); +} diff --git a/src/components/createUserLable/index.vue b/src/components/createUserLable/index.vue index 0067d9e..59b9895 100644 --- a/src/components/createUserLable/index.vue +++ b/src/components/createUserLable/index.vue @@ -1,5 +1,4 @@ + + +