From 766cccae3436986e7267ef96d90dedd772ca4bea Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Sun, 14 Apr 2024 23:38:10 +0800 Subject: [PATCH] add --- src/api/financial_bid_margin.ts | 26 ++ src/api/financial_bid_margin_recovery.ts | 26 ++ src/api/financial_performance_money_apply.ts | 26 ++ src/api/marketing_bid_statistics.ts | 36 ++ src/views/bid_project_status/index.vue | 244 ++++++++++ src/views/financial_bid_margin/detail.js | 92 ++++ src/views/financial_bid_margin/edit.vue | 393 ++++++++++++++++ src/views/financial_bid_margin/index.vue | 158 +++++++ .../financial_bid_margin_recovery/detail.js | 119 +++++ .../financial_bid_margin_recovery/edit.vue | 437 ++++++++++++++++++ .../financial_bid_margin_recovery/index.vue | 150 ++++++ src/views/financial_budget_doc/edit.vue | 3 +- src/views/financial_collection_plan/detail.js | 35 ++ src/views/financial_collection_plan/edit.vue | 69 +-- src/views/financial_collection_plan/index.vue | 68 +-- src/views/financial_invoice/edit.vue | 3 +- src/views/financial_invoice/index.vue | 4 +- .../detail.js | 81 ++++ .../edit.vue | 348 ++++++++++++++ .../index.vue | 140 ++++++ src/views/marketing_bid_evaluation/edit.vue | 18 +- src/views/marketing_bid_result/edit.vue | 10 +- src/views/marketing_custom/edit.vue | 11 +- .../marketing_framework_agreement/edit.vue | 6 +- .../edit.vue | 13 +- src/views/winning_project/index.vue | 78 ++++ src/views/zjzx_settlement/edit.vue | 9 +- 27 files changed, 2510 insertions(+), 93 deletions(-) create mode 100644 src/api/financial_bid_margin.ts create mode 100644 src/api/financial_bid_margin_recovery.ts create mode 100644 src/api/financial_performance_money_apply.ts create mode 100644 src/api/marketing_bid_statistics.ts create mode 100644 src/views/bid_project_status/index.vue create mode 100644 src/views/financial_bid_margin/detail.js create mode 100644 src/views/financial_bid_margin/edit.vue create mode 100644 src/views/financial_bid_margin/index.vue create mode 100644 src/views/financial_bid_margin_recovery/detail.js create mode 100644 src/views/financial_bid_margin_recovery/edit.vue create mode 100644 src/views/financial_bid_margin_recovery/index.vue create mode 100644 src/views/financial_collection_plan/detail.js create mode 100644 src/views/financial_performance_money_apply/detail.js create mode 100644 src/views/financial_performance_money_apply/edit.vue create mode 100644 src/views/financial_performance_money_apply/index.vue create mode 100644 src/views/winning_project/index.vue diff --git a/src/api/financial_bid_margin.ts b/src/api/financial_bid_margin.ts new file mode 100644 index 0000000..7c991f4 --- /dev/null +++ b/src/api/financial_bid_margin.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 财务管理--投标保证金申请列表 +export function apiFinancialBidMarginLists(params: any) { + return request.get({ url: '/financial.financial_bid_margin/lists', params }) +} + +// 添加财务管理--投标保证金申请 +export function apiFinancialBidMarginAdd(params: any) { + return request.post({ url: '/financial.financial_bid_margin/add', params }) +} + +// 编辑财务管理--投标保证金申请 +export function apiFinancialBidMarginEdit(params: any) { + return request.post({ url: '/financial.financial_bid_margin/edit', params }) +} + +// 删除财务管理--投标保证金申请 +export function apiFinancialBidMarginDelete(params: any) { + return request.post({ url: '/financial.financial_bid_margin/delete', params }) +} + +// 财务管理--投标保证金申请详情 +export function apiFinancialBidMarginDetail(params: any) { + return request.get({ url: '/financial.financial_bid_margin/detail', params }) +} \ No newline at end of file diff --git a/src/api/financial_bid_margin_recovery.ts b/src/api/financial_bid_margin_recovery.ts new file mode 100644 index 0000000..9498887 --- /dev/null +++ b/src/api/financial_bid_margin_recovery.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 财务管理--投标保证金回收列表 +export function apiFinancialBidMarginRecoveryLists(params: any) { + return request.get({ url: '/financial.financial_bid_margin_recovery/lists', params }) +} + +// 添加财务管理--投标保证金回收 +export function apiFinancialBidMarginRecoveryAdd(params: any) { + return request.post({ url: '/financial.financial_bid_margin_recovery/add', params }) +} + +// 编辑财务管理--投标保证金回收 +export function apiFinancialBidMarginRecoveryEdit(params: any) { + return request.post({ url: '/financial.financial_bid_margin_recovery/edit', params }) +} + +// 删除财务管理--投标保证金回收 +export function apiFinancialBidMarginRecoveryDelete(params: any) { + return request.post({ url: '/financial.financial_bid_margin_recovery/delete', params }) +} + +// 财务管理--投标保证金回收详情 +export function apiFinancialBidMarginRecoveryDetail(params: any) { + return request.get({ url: '/financial.financial_bid_margin_recovery/detail', params }) +} \ No newline at end of file diff --git a/src/api/financial_performance_money_apply.ts b/src/api/financial_performance_money_apply.ts new file mode 100644 index 0000000..7ccfe47 --- /dev/null +++ b/src/api/financial_performance_money_apply.ts @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +// 财务管理--履约金申请列表 +export function apiFinancialPerformanceMoneyApplyLists(params: any) { + return request.get({ url: '/financial.financial_performance_money_apply/lists', params }) +} + +// 添加财务管理--履约金申请 +export function apiFinancialPerformanceMoneyApplyAdd(params: any) { + return request.post({ url: '/financial.financial_performance_money_apply/add', params }) +} + +// 编辑财务管理--履约金申请 +export function apiFinancialPerformanceMoneyApplyEdit(params: any) { + return request.post({ url: '/financial.financial_performance_money_apply/edit', params }) +} + +// 删除财务管理--履约金申请 +export function apiFinancialPerformanceMoneyApplyDelete(params: any) { + return request.post({ url: '/financial.financial_performance_money_apply/delete', params }) +} + +// 财务管理--履约金申请详情 +export function apiFinancialPerformanceMoneyApplyDetail(params: any) { + return request.get({ url: '/financial.financial_performance_money_apply/detail', params }) +} \ No newline at end of file diff --git a/src/api/marketing_bid_statistics.ts b/src/api/marketing_bid_statistics.ts new file mode 100644 index 0000000..68efbac --- /dev/null +++ b/src/api/marketing_bid_statistics.ts @@ -0,0 +1,36 @@ +import request from "@/utils/request"; + +export function apiwinning_project(params: any) { + return request.get({ + url: "/marketing.marketing_bid_statistics/winning_project", + params, + }); +} + +export function apibid_project_status(params: any) { + return request.get({ + url: "/marketing.marketing_bid_statistics/bid_project_status", + params, + }); +} + +export function apibid_project_number(params: any) { + return request.get({ + url: "/marketing.marketing_bid_statistics/bid_project_number", + params, + }); +} + +export function apibid_project_analysis(params: any) { + return request.get({ + url: "/marketing.marketing_bid_statistics/bid_project_analysis", + params, + }); +} + +export function apibid_industry_analysis(params: any) { + return request.get({ + url: "/marketing.marketing_bid_statistics/bid_industry_analysis", + params, + }); +} diff --git a/src/views/bid_project_status/index.vue b/src/views/bid_project_status/index.vue new file mode 100644 index 0000000..e66dfd8 --- /dev/null +++ b/src/views/bid_project_status/index.vue @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + 投标项目状态明细表 + + + + + + + + diff --git a/src/views/financial_bid_margin/detail.js b/src/views/financial_bid_margin/detail.js new file mode 100644 index 0000000..3286f9b --- /dev/null +++ b/src/views/financial_bid_margin/detail.js @@ -0,0 +1,92 @@ +const detailConfig = { + title: "财务管理--投标保证金申请", + config: [ + { + label: "投标信息id", + value: "" + }, + { + label: "业务机会id", + value: "" + }, + { + label: "甲方单位", + value: "part_a_name" + }, + { + label: "收款单位", + value: "collection_company" + }, + { + label: "收款账号", + value: "collection_account" + }, + { + label: "开户省份", + value: "province_name", + }, + { + label: "开户城市", + value: "city_name", + }, + { + label: "收款银行", + value: "collection_bank", + }, + { + label: "收款开户行", + value: "collection_open_bank", + }, + { + label: "经办人", + value: "agent_name", + }, + { + label: "负责部门", + value: "head_dept_name", + }, + { + label: "投标保证金", + value: "bid_margin", + }, + + { + label: "支付方式", + value: "pay_type_text", + }, + { + label: "缴纳截止日期", + value: "end_date", + }, + { + label: "预计归还日期", + value: "expected_return_date", + }, + { + label: "缴纳截止日期", + value: "end_date", + }, + + { + label: "备注", + value: "remark", + column: 1 + }, + { + label: "附件", + value: "annex", + column: 1 + }, + { + label: "申请人", + value: "create_user" + }, + { + label: "申请时间", + value: "create_time" + }, + ], + + +} +export default detailConfig; \ No newline at end of file diff --git a/src/views/financial_bid_margin/edit.vue b/src/views/financial_bid_margin/edit.vue new file mode 100644 index 0000000..4c2af2e --- /dev/null +++ b/src/views/financial_bid_margin/edit.vue @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/financial_bid_margin/index.vue b/src/views/financial_bid_margin/index.vue new file mode 100644 index 0000000..212cde9 --- /dev/null +++ b/src/views/financial_bid_margin/index.vue @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + + + + 新增 + + + 删除 + + + + + + + + + + + + + + + + 编辑 + + + 删除 + + + 详情 + + + + + + + + + + + + + + + + diff --git a/src/views/financial_bid_margin_recovery/detail.js b/src/views/financial_bid_margin_recovery/detail.js new file mode 100644 index 0000000..f547405 --- /dev/null +++ b/src/views/financial_bid_margin_recovery/detail.js @@ -0,0 +1,119 @@ +const detailConfig = { + title: "财务管理--投标保证金回收", + config: [ + { + label: "投标信息id", + value: "" + }, + { + label: "业务机会id", + value: "" + }, + { + label: "甲方单位", + value: "part_a_name" + }, + { + label: "收款单位", + value: "collection_company" + }, + { + label: "收款账号", + value: "collection_account" + }, + { + label: "开户省份", + value: "province_name", + }, + { + label: "开户城市", + value: "city_name", + }, + { + label: "收款银行", + value: "collection_bank", + }, + { + label: "收款开户行", + value: "collection_open_bank", + }, + { + label: "经办人", + value: "agent_name", + }, + { + label: "负责部门", + value: "head_dept_name", + }, + { + label: "投标保证金", + value: "bid_margin", + }, + + { + label: "支付方式", + value: "pay_type_text", + }, + { + label: "缴纳截止日期", + value: "end_date", + }, + { + label: "预计归还日期", + value: "expected_return_date", + }, + { + label: "缴纳截止日期", + value: "end_date", + }, + { + label: "支付金额", + value: "pay_amount", + }, + { + label: "操作人", + value: "operator", + }, + { + label: "操作日期", + value: "operation_date", + }, + { + label: "回收金额", + value: "recovery_amount", + }, + { + label: "回收日期", + value: "recovery_date", + }, + { + label: "说明", + value: "recovery_desc", + column: 1 + + }, + + + { + label: "备注", + value: "remark", + column: 1 + }, + { + label: "附件", + value: "annex", + column: 1 + }, + { + label: "申请人", + value: "create_user" + }, + { + label: "申请时间", + value: "create_time" + }, + ], + + +} +export default detailConfig; \ No newline at end of file diff --git a/src/views/financial_bid_margin_recovery/edit.vue b/src/views/financial_bid_margin_recovery/edit.vue new file mode 100644 index 0000000..c4f4068 --- /dev/null +++ b/src/views/financial_bid_margin_recovery/edit.vue @@ -0,0 +1,437 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/financial_bid_margin_recovery/index.vue b/src/views/financial_bid_margin_recovery/index.vue new file mode 100644 index 0000000..97a632d --- /dev/null +++ b/src/views/financial_bid_margin_recovery/index.vue @@ -0,0 +1,150 @@ + + + + + + + + + + + + + 查询 + 重置 + + + + + + + + + 新增 + + + 删除 + + + + + + + + + + + + + + + + + 编辑 + + + 删除 + + + 详情 + + + + + + + + + + + + + + + + diff --git a/src/views/financial_budget_doc/edit.vue b/src/views/financial_budget_doc/edit.vue index 2d84504..a49707c 100644 --- a/src/views/financial_budget_doc/edit.vue +++ b/src/views/financial_budget_doc/edit.vue @@ -1,6 +1,7 @@ - + diff --git a/src/views/financial_collection_plan/detail.js b/src/views/financial_collection_plan/detail.js new file mode 100644 index 0000000..5dc95d2 --- /dev/null +++ b/src/views/financial_collection_plan/detail.js @@ -0,0 +1,35 @@ +const detailConfig = { + title: "财务管理--合同收款计划", + config: [ + { + label: "合同名称", + value: "contract_name" + }, + { + label: "计划收款金额", + value: "collection_amount" + }, + { + label: "计划日期", + value: "collection_date" + }, + { + label: "计划人", + value: "collection_user" + }, + { + label: "备注", + value: "remark", + column: 1 + }, + { + label: "附件", + value: "annex", + column: 1 + }, + + + ] + +} +export default detailConfig; \ No newline at end of file diff --git a/src/views/financial_collection_plan/edit.vue b/src/views/financial_collection_plan/edit.vue index f57bd06..d9d31a5 100644 --- a/src/views/financial_collection_plan/edit.vue +++ b/src/views/financial_collection_plan/edit.vue @@ -1,33 +1,34 @@ - - - - + + + + - + - + + - + - + + + + + @@ -36,8 +37,8 @@ import type { FormInstance } from 'element-plus' import Popup from '@/components/popup/index.vue' import { apiFinancialCollectionPlanAdd, apiFinancialCollectionPlanEdit, apiFinancialCollectionPlanDetail } from '@/api/financial_collection_plan' -import { timeFormat } from '@/utils/util' import type { PropType } from 'vue' +import { cost_approved_projects } from "@/components/dialogTable/dialogTableConfig"; defineProps({ dictData: { type: Object as PropType>, @@ -48,6 +49,7 @@ const emit = defineEmits(['success', 'close']) const formRef = shallowRef() const popupRef = shallowRef>() const mode = ref('add') +const showDialog = ref(false) // 弹窗标题 @@ -59,19 +61,32 @@ const popupTitle = computed(() => { const formData = reactive({ id: '', contract_id: '', + contract_name: '', collection_amount: '', collection_date: '', collection_user: '', remark: '', - annex: '', + annex: [], }) +const customEvent = (e) => { + formData.contract_id = e.id + formData.contract_name = e.contract_name + // formData.contract_type = e.contract_type_text + // formData.part_a = e.part_a + // formData.part_b = e.part_b + // formData.sign_money = e.money + // formData.sign_time = e.sign_date + // formData.total_invoice_amount = e.total_invoice_amount + // formData.total_refund_amount = e.total_refund_amount + showDialog.value = false +} // 表单验证 const formRules = reactive({ - contract_id: [{ + contract_name: [{ required: true, - message: '请输入合同id', + message: '请选择合同', trigger: ['blur'] }], collection_amount: [{ @@ -89,11 +104,7 @@ const formRules = reactive({ message: '请输入计划人', trigger: ['blur'] }], - remark: [{ - required: true, - message: '请输入备注', - trigger: ['blur'] - }] + }) @@ -105,8 +116,8 @@ const setFormData = async (data: Record) => { formData[key] = data[key] } } - - + + } const getDetail = async (row: Record) => { @@ -120,9 +131,9 @@ const getDetail = async (row: Record) => { // 提交按钮 const handleSubmit = async () => { await formRef.value?.validate() - const data = { ...formData, } - mode.value == 'edit' - ? await apiFinancialCollectionPlanEdit(data) + const data = { ...formData, } + mode.value == 'edit' + ? await apiFinancialCollectionPlanEdit(data) : await apiFinancialCollectionPlanAdd(data) popupRef.value?.close() emit('success') diff --git a/src/views/financial_collection_plan/index.vue b/src/views/financial_collection_plan/index.vue index 64239b0..820a0e1 100644 --- a/src/views/financial_collection_plan/index.vue +++ b/src/views/financial_collection_plan/index.vue @@ -1,13 +1,11 @@ - - - + + + + @@ -25,40 +23,31 @@ 新增 - + 删除 - + - - - + - + 编辑 - + 删除 + + 详情 + @@ -68,26 +57,33 @@ + + - diff --git a/src/views/financial_invoice/edit.vue b/src/views/financial_invoice/edit.vue index ac79756..16f3e46 100644 --- a/src/views/financial_invoice/edit.vue +++ b/src/views/financial_invoice/edit.vue @@ -1,6 +1,7 @@ - + diff --git a/src/views/financial_invoice/index.vue b/src/views/financial_invoice/index.vue index b79116e..2a776e1 100644 --- a/src/views/financial_invoice/index.vue +++ b/src/views/financial_invoice/index.vue @@ -60,7 +60,8 @@ @click="handleDelete(row.id)"> 删除 - + 详情 @@ -152,4 +153,3 @@ const handleDetail = async (id: any) => { getLists() - diff --git a/src/views/financial_performance_money_apply/detail.js b/src/views/financial_performance_money_apply/detail.js new file mode 100644 index 0000000..93fe341 --- /dev/null +++ b/src/views/financial_performance_money_apply/detail.js @@ -0,0 +1,81 @@ +const detailConfig = { + title: "财务管理--履约金申请", + config: [ + { + label: "合同名称", + value: "contract_name" + }, + { + label: "支付方式", + value: "pay_type_text" + }, + { + label: "要求交款日期", + value: "payment_date" + }, + { + label: "申请金额", + value: "apply_amount" + }, + { + label: "收款单位", + value: "collection_account" + }, + { + label: "收款银行", + value: "collection_bank" + }, + { + label: "收款开户行", + value: "collection_open_bank" + }, + { + label: "开户省份", + value: "province_name" + }, + { + label: "开户市区", + value: "city_name", + }, + { + label: "支付人", + value: "pay_user_name", + }, + { + label: "付款账号", + value: "pay_account", + }, + { + label: "支付金额", + value: "pay_amount", + }, + { + label: "支付日期", + value: "pay_date", + }, + { + label: "备注", + value: "remark", + column: 1 + + }, + { + label: "附件", + value: "annex", + column: 1 + + }, + + { + label: "创建人", + value: "create_user", + }, + { + label: "创建时间", + value: "create_time", + }, + + ] + +} +export default detailConfig; \ No newline at end of file diff --git a/src/views/financial_performance_money_apply/edit.vue b/src/views/financial_performance_money_apply/edit.vue new file mode 100644 index 0000000..42a4fdd --- /dev/null +++ b/src/views/financial_performance_money_apply/edit.vue @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/financial_performance_money_apply/index.vue b/src/views/financial_performance_money_apply/index.vue new file mode 100644 index 0000000..5966612 --- /dev/null +++ b/src/views/financial_performance_money_apply/index.vue @@ -0,0 +1,140 @@ + + + + + + + + + + 查询 + 重置 + + + + + + + + + 新增 + + + 删除 + + + + + + + + + + + + + + + + + + + + 编辑 + + + 删除 + + + 详情 + + + + + + + + + + + + + + + diff --git a/src/views/marketing_bid_evaluation/edit.vue b/src/views/marketing_bid_evaluation/edit.vue index ba22842..2de8f40 100644 --- a/src/views/marketing_bid_evaluation/edit.vue +++ b/src/views/marketing_bid_evaluation/edit.vue @@ -1,6 +1,7 @@ - + @@ -92,8 +93,8 @@ - + @@ -141,17 +142,20 @@ - + - + - + @@ -223,7 +227,7 @@ - + diff --git a/src/views/marketing_bid_result/edit.vue b/src/views/marketing_bid_result/edit.vue index e1d4fc8..c012d3e 100644 --- a/src/views/marketing_bid_result/edit.vue +++ b/src/views/marketing_bid_result/edit.vue @@ -1,6 +1,7 @@ - + @@ -34,8 +35,8 @@ - + @@ -46,7 +47,8 @@ - + diff --git a/src/views/marketing_custom/edit.vue b/src/views/marketing_custom/edit.vue index d39d544..f009661 100644 --- a/src/views/marketing_custom/edit.vue +++ b/src/views/marketing_custom/edit.vue @@ -1,6 +1,7 @@ - + @@ -95,8 +96,8 @@ - + @@ -105,8 +106,8 @@ - + diff --git a/src/views/marketing_framework_agreement/edit.vue b/src/views/marketing_framework_agreement/edit.vue index ee5e40d..c8e0a0a 100644 --- a/src/views/marketing_framework_agreement/edit.vue +++ b/src/views/marketing_framework_agreement/edit.vue @@ -1,6 +1,7 @@ - + @@ -53,7 +54,8 @@ - + diff --git a/src/views/marketing_supplementary_agreement/edit.vue b/src/views/marketing_supplementary_agreement/edit.vue index bca5299..394341d 100644 --- a/src/views/marketing_supplementary_agreement/edit.vue +++ b/src/views/marketing_supplementary_agreement/edit.vue @@ -1,6 +1,7 @@ - + @@ -107,8 +108,8 @@ - + @@ -126,8 +127,8 @@ - + @@ -151,7 +152,7 @@ - + diff --git a/src/views/winning_project/index.vue b/src/views/winning_project/index.vue new file mode 100644 index 0000000..5cac04b --- /dev/null +++ b/src/views/winning_project/index.vue @@ -0,0 +1,78 @@ + + + + + + + + + + 查询 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/zjzx_settlement/edit.vue b/src/views/zjzx_settlement/edit.vue index 9a13dd3..a7f5db9 100644 --- a/src/views/zjzx_settlement/edit.vue +++ b/src/views/zjzx_settlement/edit.vue @@ -1,6 +1,7 @@ - + @@ -65,8 +66,8 @@ - + @@ -144,7 +145,7 @@ const formData = reactive({ const customEvent = (e) => { let list = ['project_num', , 'project_name', 'contract_name', 'part_a', 'part_b', 'total_invoice_amount', 'total_refund_amount'] list.forEach(item => { - formData[item] = e[item] ?? (e.contract)[item] + formData[item] = e[item] }) // formData.contract_type = e.contract.contract_type_text formData.project_id = e.id