diff --git a/src/components/searchDate.vue b/src/components/searchDate.vue
index f7e0fd4..a973912 100644
--- a/src/components/searchDate.vue
+++ b/src/components/searchDate.vue
@@ -222,7 +222,7 @@ onMounted(() => {
.to{
color:#333333;
font-size:28rpx;
- margin:0 30rpx;
+ margin:0 42rpx;
}
}
.picker-view {
@@ -232,6 +232,9 @@ onMounted(() => {
:deep(.item){
text-align: center;
line-height: 78rpx;
+ /* #ifdef APP-PLUS */
+ line-height: 88rpx;
+ /* #endif */
}
}
}
diff --git a/src/pages/business/polling/taskList.vue b/src/pages/business/polling/taskList.vue
index 16ded08..dc6f5d9 100644
--- a/src/pages/business/polling/taskList.vue
+++ b/src/pages/business/polling/taskList.vue
@@ -21,7 +21,7 @@
- 查询
+ 查询
{{dateStr}}
@@ -137,8 +137,6 @@ onLoad(option => {
})
-
-
// 选择类型筛选
const changeTaskType = (e)=>{
taskTypeIndex.value = e.detail.value
@@ -289,6 +287,11 @@ const getList = (pageIndex, pageSize) => {
}
+// 执行查询
+const handleSearch=()=>{
+ getList(0,10)
+}
+
// 查看详情
const handleDetail = (item,type) =>{
let url='/pages/business/polling/taskDetail?id='+item.taskId;