From 5e08db55fb32b94d6fe06f2e3e8a98d02a174ea0 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Sat, 11 May 2024 23:22:55 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/home/index.js | 8 + src/views/home/index.vue | 2 +- .../projectdemand/demandcollection/add.vue | 213 ++++++------------ .../projectdemand/demandcollection/detail.vue | 2 - .../projectdemand/demandcollection/index.vue | 2 +- 5 files changed, 79 insertions(+), 148 deletions(-) create mode 100644 src/api/home/index.js diff --git a/src/api/home/index.js b/src/api/home/index.js new file mode 100644 index 0000000..f62d17b --- /dev/null +++ b/src/api/home/index.js @@ -0,0 +1,8 @@ +import request from '@/utils/request.js' + +export const getHomeInfo = () => { + return request({ + url: '/workflow/mosr/process/task', + method: "get" + }); +}; diff --git a/src/views/home/index.vue b/src/views/home/index.vue index da1aefb..1f9f023 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -148,7 +148,7 @@ const tableConfig = reactive({ } } ], - api: '/workflow/process/task', + api: '/workflow/mosr/process/task', params: {}, }) diff --git a/src/views/projectdemand/demandcollection/add.vue b/src/views/projectdemand/demandcollection/add.vue index 869c5dd..b5119c3 100644 --- a/src/views/projectdemand/demandcollection/add.vue +++ b/src/views/projectdemand/demandcollection/add.vue @@ -1,13 +1,13 @@ @@ -265,5 +187,8 @@ init() //justify-content: space-between; overflow-x: hidden; overflow-y: auto; + .approval-record{ + position: relative; + } } diff --git a/src/views/projectdemand/demandcollection/detail.vue b/src/views/projectdemand/demandcollection/detail.vue index 685272f..e6153d3 100644 --- a/src/views/projectdemand/demandcollection/detail.vue +++ b/src/views/projectdemand/demandcollection/detail.vue @@ -44,7 +44,6 @@
-
-
diff --git a/src/views/projectdemand/demandcollection/index.vue b/src/views/projectdemand/demandcollection/index.vue index 0fa62b4..a4bfb44 100644 --- a/src/views/projectdemand/demandcollection/index.vue +++ b/src/views/projectdemand/demandcollection/index.vue @@ -116,7 +116,7 @@ const handleEdit = (row) => { router.push({ path: '/projectdemand/demandedit', query: { - id: row.roleId + id: row.requirementId } }) }