From 73634e78ec8864c6313f9144303e9ae68520a867 Mon Sep 17 00:00:00 2001 From: lagos <627844378@qq.com> Date: Thu, 24 Jul 2025 17:23:59 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=96=B0=E5=A2=9E=E8=AE=A1=E5=88=92=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- env/.env.development | 2 +- env/.env.production | 4 -- src/api/plan/index.ts | 10 +++++ src/components/Mupload/Mupload.vue | 13 +++--- src/pages-bpm/planReview/index.vue | 65 ++++++++++++++++++++++++++++++ src/pages.json | 4 ++ src/pages/login/login.vue | 4 +- src/types/uni-pages.d.ts | 1 + 8 files changed, 91 insertions(+), 12 deletions(-) create mode 100644 src/api/plan/index.ts create mode 100644 src/pages-bpm/planReview/index.vue diff --git a/env/.env.development b/env/.env.development index 8293b47..ddf4bdc 100644 --- a/env/.env.development +++ b/env/.env.development @@ -7,7 +7,7 @@ VITE_SHOW_SOURCEMAP = true # 是否启用读取配置文件 min #VITE_WEBAPP = 'D://opt//AppUpdateTest' VITE_WEBAPP = '' -VITE_SERVER_BASEURL = 'http://10.75.15.246:8080/jeecg-boot' +VITE_SERVER_BASEURL = 'http://10.75.15.247:8080/jeecg-boot' #websocket连接url-测试用 VITE_WEBSOCKET_URL = 'ws://10.75.15.246:8899/mqttprod/ws/simple' #VITE_SERVER_BASEURL = 'https://36.112.48.190/jeecg-boot' diff --git a/env/.env.production b/env/.env.production index 2984c4d..812226c 100644 --- a/env/.env.production +++ b/env/.env.production @@ -8,9 +8,5 @@ VITE_SHOW_SOURCEMAP = false #VITE_WEBAPP = 'D://opt//AppUpdateTest' VITE_WEBAPP = '' VITE_SERVER_BASEURL = 'https://szcx.zyyt.sinopec.com/jeecg-boot' - - - - #VITE_SERVER_BASEURL = 'https://szcx.zyyt.sinopec.com/wwapi' #VITE_SERVER_BASEURL = 'https://szcx.zyyt.sinopec.com/yjapi' diff --git a/src/api/plan/index.ts b/src/api/plan/index.ts new file mode 100644 index 0000000..ad7523c --- /dev/null +++ b/src/api/plan/index.ts @@ -0,0 +1,10 @@ +import { http } from '@/utils/http'; + +/*通过id查询公文数据*/ +export function queryByIdBpm(id : string) { + return http({ + url: '/cxcjhcwjswxjh/cxcJhcwJswxjh/queryByIdBpm', + method: 'GET', + data: { id } + }) +} diff --git a/src/components/Mupload/Mupload.vue b/src/components/Mupload/Mupload.vue index 147b209..e5e29b5 100644 --- a/src/components/Mupload/Mupload.vue +++ b/src/components/Mupload/Mupload.vue @@ -1,10 +1,10 @@