From b2df487d7ce4e45ef810e97ff58a6710009adc72 Mon Sep 17 00:00:00 2001 From: makaba <985019473@qq.com> Date: Fri, 22 Dec 2023 11:18:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=90=8C=E4=BF=A1=E6=81=AF=20?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF=20=E5=80=9F=E6=AC=BE=E8=AE=A1?= =?UTF-8?q?=E5=88=92=20=E5=A2=9E=E5=88=A0=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/sunVillage_info/fixedAssets.js | 40 ++ src/router/index.js | 27 ++ src/views/sunVillage_info/information.vue | 1 + .../sunVillage_info/informationFunPlan.vue | 388 ++++++++++++++++++ .../sunVillage_info/informationFunPlanAdd.vue | 251 +++++++++++ .../informationFunPlanEdit.vue | 244 +++++++++++ 6 files changed, 951 insertions(+) create mode 100644 src/views/sunVillage_info/informationFunPlan.vue create mode 100644 src/views/sunVillage_info/informationFunPlanAdd.vue create mode 100644 src/views/sunVillage_info/informationFunPlanEdit.vue diff --git a/src/api/sunVillage_info/fixedAssets.js b/src/api/sunVillage_info/fixedAssets.js index c4b75313..acb99fbf 100644 --- a/src/api/sunVillage_info/fixedAssets.js +++ b/src/api/sunVillage_info/fixedAssets.js @@ -111,6 +111,46 @@ export function contractionList(query) { params: query }) } +// 查询合同结款计划列表 +export function listPlan(query) { + return request({ + url: '/contraction/plan/list', + method: 'get', + params: query + }) +} +// 新增合同结款计划 +export function addPlan(data) { + return request({ + url: '/contraction/plan/add', + method: 'post', + data: data + }) +} +// 修改合同结款计划 +export function updatePlan(data) { + return request({ + url: '/contraction/plan/edit', + method: 'post', + data: data + }) +} + +// 删除合同结款计划 +export function delPlan(id) { + return request({ + url: '/contraction/plan/remove/' + id, + method: 'get' + }) +} +// 查询合同结款计划详细 +export function getPlan(id) { + return request({ + url: '/contraction/plan/get/' + id, + method: 'get' + }) +} + // 新增固定资产 export function addPermanent(data) { return request({ diff --git a/src/router/index.js b/src/router/index.js index 0785f299..9c410d01 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -3407,6 +3407,33 @@ export const constantRoutes = [ }, component: (resolve) => require(['@/views/sunVillage_info/informationEdit'], resolve) }, + { ////阳光村务(新)-- 新增结款计划 + path: '/sunVillage_info/informationFunPlanAdd', + name: 'sunVillageInfoinformationFunPlanAdd', + meta: { + title: '新增结款计划', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/informationFunPlanAdd'], resolve) + }, + { ////阳光村务(新)-- 结款计划列表 + path: '/sunVillage_info/informationFunPlan', + name: 'sunVillageInfoInformationFunPlan', + meta: { + title: '结款计划', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/informationFunPlan'], resolve) + }, + { ////阳光村务(新)-- 结款计划修改 + path: '/sunVillage_info/informationFunPlanEdit', + name: 'sunVillageInfoInformationFunPlanEdit', + meta: { + title: '修改结款计划', + hidden: true, + }, + component: (resolve) => require(['@/views/sunVillage_info/informationFunPlanEdit'], resolve) + }, { ////阳光村务(新)-- 合同信息 path: '/sunVillage_info/details', name: 'sunVillageInfoDetails', diff --git a/src/views/sunVillage_info/information.vue b/src/views/sunVillage_info/information.vue index 6382ff3c..e8d065bd 100644 --- a/src/views/sunVillage_info/information.vue +++ b/src/views/sunVillage_info/information.vue @@ -42,6 +42,7 @@
结款计划
+结款计划
+