From 788f7e17800b92695b5a6e3e40e11f8bad65d6c0 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Tue, 4 Jul 2023 21:11:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 +- src/api/modules/huizhou.ts | 14 + .../components/LeftcentView.vue | 4 +- .../components/RigthBottLeftView.vue | 6 +- .../globalPlanManagement/index.vue | 264 ++++++++++++++---- 5 files changed, 225 insertions(+), 67 deletions(-) diff --git a/.env.development b/.env.development index ebb6d1b..e1394ff 100644 --- a/.env.development +++ b/.env.development @@ -2,10 +2,10 @@ NODE_ENV = 'development' # 本地环境接口地址(/api/index.ts文件中使用) -# VITE_API_URL = 'http://192.168.34.155:6688' +VITE_API_URL = 'http://192.168.34.155:6688' # VITE_API_URL = 'http://2xliv7gs.shenzhuo.vip:55296' VITE_WPAPI_URL = "http://182.90.224.147:8081" -VITE_API_URL = "http://182.90.224.147:9013" +# VITE_API_URL = "http://182.90.224.147:9013" # 上传 # VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url=' diff --git a/src/api/modules/huizhou.ts b/src/api/modules/huizhou.ts index 4ffba2c..f2270fe 100644 --- a/src/api/modules/huizhou.ts +++ b/src/api/modules/huizhou.ts @@ -80,3 +80,17 @@ export const payGovermentSubItemList = (params: any) => { export const subGovermentItemDetailList = (params: any) => { return http.post(BASEURL + `/gov/investmentPaymentDetail/list`, params); }; + +// 全景计划------------ +// 全景计划分页列表 +export const globalPlanList = (params: any) => { + return http.post(BASEURL + `/project/projectNodePlan/page`, params); +}; +// 全景计划新增 +export const globalPlanAdd = (params: any) => { + return http.post(BASEURL + `/project/projectNodePlan/add`, params); +}; +// 全景计划编辑 +export const globalPlanEdit = (params: any) => { + return http.post(BASEURL + `/project/projectNodePlan/edit`, params); +}; diff --git a/src/views/goverment/huizhou/largeScreen/largeScreenTwo/components/LeftcentView.vue b/src/views/goverment/huizhou/largeScreen/largeScreenTwo/components/LeftcentView.vue index 8d98316..261fdf7 100644 --- a/src/views/goverment/huizhou/largeScreen/largeScreenTwo/components/LeftcentView.vue +++ b/src/views/goverment/huizhou/largeScreen/largeScreenTwo/components/LeftcentView.vue @@ -13,7 +13,7 @@