From 66931c09b0bcd5b339d9b4c5b27ef9ac2cec983a Mon Sep 17 00:00:00 2001 From: yxq Date: Tue, 27 Aug 2024 17:07:34 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=20=E8=80=83?= =?UTF-8?q?=E5=8B=A4=E7=82=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- monitorMobile/common/mixins.vue | 2 +- monitorMobile/components/selectRadio.vue | 13 +- monitorMobile/components/selectSearch.vue | 2 + monitorMobile/components/selectTree.vue | 1 - .../attendanceCall/passengerFlow/add.vue | 12 +- .../attendanceCall/passengerFlow/index.vue | 4 - .../pages/attendanceCall/returnBed/index.vue | 18 +- .../pages/attendanceCall/rollCall/index.vue | 224 +++++++++++++++++- 8 files changed, 250 insertions(+), 26 deletions(-) diff --git a/monitorMobile/common/mixins.vue b/monitorMobile/common/mixins.vue index 7b11b00..e43a634 100644 --- a/monitorMobile/common/mixins.vue +++ b/monitorMobile/common/mixins.vue @@ -87,7 +87,7 @@ CONFIRM(content='是否确认执行此操作?'){ return new Promise((resolve)=>{ uni.showModal({ - title: '提示信息', + title: '提示', content: content, cancelText: "取消", confirmText: "确认", diff --git a/monitorMobile/components/selectRadio.vue b/monitorMobile/components/selectRadio.vue index e5e1bcf..0f75c58 100644 --- a/monitorMobile/components/selectRadio.vue +++ b/monitorMobile/components/selectRadio.vue @@ -53,12 +53,14 @@ if (obj) this.title_ = obj.label this.title_ = obj ? obj.label : this.title this.value_ = this.value + this.show = true }, change(e) { this.$emit("update:value",e) let obj = this.options.find(e1=>e1.value == e) if(obj) this.title_ = obj.label this.$emit("change") + this.close() }, } } @@ -66,10 +68,10 @@ \ No newline at end of file diff --git a/monitorMobile/components/selectSearch.vue b/monitorMobile/components/selectSearch.vue index 10f06a8..accb487 100644 --- a/monitorMobile/components/selectSearch.vue +++ b/monitorMobile/components/selectSearch.vue @@ -112,6 +112,7 @@ } this.value_ = this.value this.searchText = '' + this.show = true }, change(e) { this.gruopValue = e @@ -143,6 +144,7 @@ .u-radio-group { width: 92%; max-height: 680rpx; + min-height: 360rpx; overflow-y: auto; padding: 0 30rpx; diff --git a/monitorMobile/components/selectTree.vue b/monitorMobile/components/selectTree.vue index 347565f..cf4b65d 100644 --- a/monitorMobile/components/selectTree.vue +++ b/monitorMobile/components/selectTree.vue @@ -158,7 +158,6 @@ }, // 切换tab tabsChange(item) { - console.log(1) if (this.tabIndex == item.value) return this.tabIndex = item.value setTimeout(() => { diff --git a/monitorMobile/pages/attendanceCall/passengerFlow/add.vue b/monitorMobile/pages/attendanceCall/passengerFlow/add.vue index cd0238c..9a19e57 100644 --- a/monitorMobile/pages/attendanceCall/passengerFlow/add.vue +++ b/monitorMobile/pages/attendanceCall/passengerFlow/add.vue @@ -36,6 +36,10 @@ + + + @@ -56,7 +60,13 @@ rules: [] } }, - methods: {} + methods: { + confirm(){ + this.CONFIRM(`是否删除点名任务?`).then(()=>{ + + }) + } + } } diff --git a/monitorMobile/pages/attendanceCall/passengerFlow/index.vue b/monitorMobile/pages/attendanceCall/passengerFlow/index.vue index 5fd3bee..a6457f9 100644 --- a/monitorMobile/pages/attendanceCall/passengerFlow/index.vue +++ b/monitorMobile/pages/attendanceCall/passengerFlow/index.vue @@ -46,10 +46,6 @@ list: [{}, {}, {}, {}, {}, {}, {}, {}, {}, ], isLoading: false, status: 'loadmore', //loading正在加载 loadmore加载更多 nomore没有更多了 - search: { - loudong: 1, - qinshi: '' - }, page: { size: 8, page: 8, diff --git a/monitorMobile/pages/attendanceCall/returnBed/index.vue b/monitorMobile/pages/attendanceCall/returnBed/index.vue index 4826d2e..59e6c90 100644 --- a/monitorMobile/pages/attendanceCall/returnBed/index.vue +++ b/monitorMobile/pages/attendanceCall/returnBed/index.vue @@ -1,9 +1,9 @@