From fee16789790951239b0c867fd7ad4fec70969357 Mon Sep 17 00:00:00 2001 From: yxq Date: Wed, 28 Aug 2024 17:08:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- monitorMobile/App.vue | 2 + monitorMobile/common/mixins.vue | 2 +- monitorMobile/components/cell.vue | 1 + monitorMobile/components/selectRadio.vue | 4 +- monitorMobile/components/selectSearch.vue | 6 +- monitorMobile/components/selectTree.vue | 6 +- monitorMobile/pages.json | 85 ++++---- monitorMobile/pages/attendanceCall/index.vue | 53 ----- monitorMobile/pages/home.vue | 21 -- monitorMobile/pages/work/index.vue | 149 ++++++++++++++ .../passengerFlow/add.vue | 4 +- .../passengerFlow/detail.vue | 0 .../passengerFlow/index.vue | 8 +- .../returnBed/comfirm.vue | 71 ++++--- .../returnBed/detail.vue | 15 +- .../returnBed/index.vue | 9 +- monitorMobile/pages/work/rollCall/detail.vue | 183 ++++++++++++++++++ .../rollCall/index.vue | 31 ++- .../static/image/tabbar/attendanceCall.png | Bin 1199 -> 1177 bytes .../image/tabbar/attendanceCall_active.png | Bin 0 -> 1199 bytes .../static/image/tabbar/earlyWarning.png | Bin 0 -> 1269 bytes .../image/tabbar/earlyWarning_active.png | Bin 1269 -> 1256 bytes .../static/image/tabbar/home_active.png | Bin 0 -> 1039 bytes .../static/image/tabbar/my_active.png | Bin 0 -> 1011 bytes monitorMobile/static/image/tabbar/work.png | Bin 0 -> 894 bytes .../static/image/tabbar/work_active.png | Bin 0 -> 904 bytes monitorMobile/static/image/test/image.png | Bin 0 -> 1450167 bytes monitorMobile/static/image/test/image1.png | Bin 0 -> 16813 bytes monitorMobile/static/image/test/image2.png | Bin 0 -> 20533 bytes monitorMobile/static/image/work/bg.png | Bin 0 -> 877597 bytes .../static/image/work/monitorManage.png | Bin 0 -> 51849 bytes monitorMobile/static/image/work/more.png | Bin 0 -> 36405 bytes .../static/image/work/passengerFlow.png | Bin 0 -> 51758 bytes monitorMobile/static/image/work/returnBed.png | Bin 0 -> 50638 bytes monitorMobile/static/image/work/rollCall.png | Bin 0 -> 76037 bytes monitorMobile/static/image/work/toRight.png | Bin 0 -> 1946 bytes monitorMobile/static/image/work/toRight1.png | Bin 0 -> 6106 bytes 37 files changed, 473 insertions(+), 177 deletions(-) delete mode 100644 monitorMobile/pages/attendanceCall/index.vue delete mode 100644 monitorMobile/pages/home.vue create mode 100644 monitorMobile/pages/work/index.vue rename monitorMobile/pages/{attendanceCall => work}/passengerFlow/add.vue (94%) rename monitorMobile/pages/{attendanceCall => work}/passengerFlow/detail.vue (100%) rename monitorMobile/pages/{attendanceCall => work}/passengerFlow/index.vue (93%) rename monitorMobile/pages/{attendanceCall => work}/returnBed/comfirm.vue (51%) rename monitorMobile/pages/{attendanceCall => work}/returnBed/detail.vue (84%) rename monitorMobile/pages/{attendanceCall => work}/returnBed/index.vue (89%) create mode 100644 monitorMobile/pages/work/rollCall/detail.vue rename monitorMobile/pages/{attendanceCall => work}/rollCall/index.vue (85%) create mode 100644 monitorMobile/static/image/tabbar/attendanceCall_active.png create mode 100644 monitorMobile/static/image/tabbar/earlyWarning.png create mode 100644 monitorMobile/static/image/tabbar/home_active.png create mode 100644 monitorMobile/static/image/tabbar/my_active.png create mode 100644 monitorMobile/static/image/tabbar/work.png create mode 100644 monitorMobile/static/image/tabbar/work_active.png create mode 100644 monitorMobile/static/image/test/image.png create mode 100644 monitorMobile/static/image/test/image1.png create mode 100644 monitorMobile/static/image/test/image2.png create mode 100644 monitorMobile/static/image/work/bg.png create mode 100644 monitorMobile/static/image/work/monitorManage.png create mode 100644 monitorMobile/static/image/work/more.png create mode 100644 monitorMobile/static/image/work/passengerFlow.png create mode 100644 monitorMobile/static/image/work/returnBed.png create mode 100644 monitorMobile/static/image/work/rollCall.png create mode 100644 monitorMobile/static/image/work/toRight.png create mode 100644 monitorMobile/static/image/work/toRight1.png diff --git a/monitorMobile/App.vue b/monitorMobile/App.vue index 3217bbf..690b121 100644 --- a/monitorMobile/App.vue +++ b/monitorMobile/App.vue @@ -19,6 +19,8 @@ } uni-page-body{ height: 100%; + } + body{ background-color: #F6F8FA; } diff --git a/monitorMobile/common/mixins.vue b/monitorMobile/common/mixins.vue index e43a634..3fa06d2 100644 --- a/monitorMobile/common/mixins.vue +++ b/monitorMobile/common/mixins.vue @@ -91,7 +91,7 @@ content: content, cancelText: "取消", confirmText: "确认", - confirmColor: '#F2C827', + confirmColor: '#165DFF', cancelColor: '#9E9E9E', success: function (res) { if (res.confirm) { diff --git a/monitorMobile/components/cell.vue b/monitorMobile/components/cell.vue index bb22926..7605f95 100644 --- a/monitorMobile/components/cell.vue +++ b/monitorMobile/components/cell.vue @@ -34,6 +34,7 @@ .u-cell { background: #fff; border-radius: 20rpx; + height: 90rpx; } .selectedBox{ display: flex; diff --git a/monitorMobile/components/selectRadio.vue b/monitorMobile/components/selectRadio.vue index 0f75c58..52d7894 100644 --- a/monitorMobile/components/selectRadio.vue +++ b/monitorMobile/components/selectRadio.vue @@ -1,5 +1,5 @@ @@ -161,7 +161,7 @@ } uni-text { - font-size: 30rpx; + font-size: 28rpx; } } } diff --git a/monitorMobile/pages/attendanceCall/returnBed/comfirm.vue b/monitorMobile/pages/work/returnBed/comfirm.vue similarity index 51% rename from monitorMobile/pages/attendanceCall/returnBed/comfirm.vue rename to monitorMobile/pages/work/returnBed/comfirm.vue index 23ff433..b12835c 100644 --- a/monitorMobile/pages/attendanceCall/returnBed/comfirm.vue +++ b/monitorMobile/pages/work/returnBed/comfirm.vue @@ -1,36 +1,42 @@