From 22c4be57bd51aac52f872e52c4a9a1b4c24ca625 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期一, 10 三月 2025 18:14:21 +0800
Subject: [PATCH] ll
---
admin/src/views/business/platformBroadcastLog.vue | 20 ++++++++++++++------
1 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/admin/src/views/business/platformBroadcastLog.vue b/admin/src/views/business/platformBroadcastLog.vue
index 2fe2dcc..e0312ff 100644
--- a/admin/src/views/business/platformBroadcastLog.vue
+++ b/admin/src/views/business/platformBroadcastLog.vue
@@ -91,8 +91,8 @@
info: '',
deviceType: '',
hkStatus: '',
- startTime: '',
- endTime: '',
+ startDate: '',
+ endDate: '',
radio: 0
},
time: []
@@ -115,15 +115,15 @@
methods: {
changeRadio(e) {
if (e === '0') {
- this.searchForm.startTime = timeForMat(0)[0]
- this.searchForm.endTime = timeForMat(0)[1]
+ this.searchForm.startDate = timeForMat(0)[0]
+ this.searchForm.endDate = timeForMat(0)[1]
this.time = timeForMat(0)
} else if (e === '1') {
- this.searchForm.startTime = timeForMat(6)[0]
+ this.searchForm.startDate = timeForMat(6)[0]
this.searchForm.endTime = timeForMat(6)[1]
this.time = timeForMat(6)
} else if (e === '2') {
- this.searchForm.startTime = timeForMat(29)[0]
+ this.searchForm.startDate = timeForMat(29)[0]
this.searchForm.endTime = timeForMat(29)[1]
this.time = timeForMat(29)
}
@@ -138,6 +138,14 @@
reset() {
this.$refs.searchForm.resetFields()
this.time = []
+ this.searchForm = {
+ name: '',
+ info: '',
+ deviceType: '',
+ hkStatus: '',
+ startDate: '',
+ endDate: '',
+ }
this.searchForm.radio = ''
// this.changeRadio('0')
this.search()
--
Gitblit v1.9.3