From 7cb722455bde4fec0dad19a687b0e5b24f27383a Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 31 Jul 2023 16:31:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BB=84=E4=BB=B6=E6=95=88?= =?UTF-8?q?=E6=9E=9C,=E6=96=B0=E5=A2=9E=E4=BB=BB=E5=8A=A1=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/company/company.vue | 1 - components/taskCard/taskCard.vue | 4 +- pages.json | 9 + pages/oaTask/oaTask.vue | 30 +-- static/server/server.js | 11 +- subpkg/fixedAssets/fixedAssets.vue | 309 +++++++++++++++++++++++++++-- subpkg/orderDetail/orderDetail.vue | 2 + subpkg/taskAdmin/taskAdmin.vue | 207 +++++++++++++++++++ 8 files changed, 528 insertions(+), 45 deletions(-) create mode 100644 subpkg/taskAdmin/taskAdmin.vue diff --git a/components/company/company.vue b/components/company/company.vue index e100962..5c5407a 100644 --- a/components/company/company.vue +++ b/components/company/company.vue @@ -171,7 +171,6 @@ url: `/subpkg/pdfView/pdfView?url=${res.data.url}` }) }) - }, naviBack() { uni.navigateBack() diff --git a/components/taskCard/taskCard.vue b/components/taskCard/taskCard.vue index e042534..11e7878 100644 --- a/components/taskCard/taskCard.vue +++ b/components/taskCard/taskCard.vue @@ -46,9 +46,9 @@ display: flex; justify-content: space-between; align-items: center; + margin-bottom: 8rpx; .title { - height: 39rpx; font-size: 28rpx; font-weight: 500; line-height: 35rpx; @@ -95,11 +95,11 @@ } .center { - height: 35rpx; font-size: 25rpx; font-weight: 400; color: #333333; line-height: 35rpx; + margin-bottom: 8rpx; } .bottom { diff --git a/pages.json b/pages.json index b7e5b93..68bcdd7 100644 --- a/pages.json +++ b/pages.json @@ -337,6 +337,15 @@ "navigationBarTextStyle": "white" } + }, { + "path": "taskAdmin/taskAdmin", + "style": { + "navigationBarTitleText": "任务管理", + "enablePullDownRefresh": false, + "navigationBarBackgroundColor": "#3175f9", + "navigationBarTextStyle": "white" + } + }] }], "globalStyle": { diff --git a/pages/oaTask/oaTask.vue b/pages/oaTask/oaTask.vue index df27082..46f9fa8 100644 --- a/pages/oaTask/oaTask.vue +++ b/pages/oaTask/oaTask.vue @@ -1,9 +1,8 @@