巡检内容

This commit is contained in:
xuli
2025-11-20 18:14:15 +08:00
parent 4115adbdb0
commit a62063850b
2 changed files with 10 additions and 4 deletions

View File

@@ -21,7 +21,7 @@
</picker>
<uni-icons type="down" size="16" color="#C8DCFF" style="margin-left:auto;"></uni-icons>
</view>
<view class="search-btn">查询</view>
<view class="search-btn" @click="handleSearch">查询</view>
</view>
<view class="week">{{dateStr}}</view>
@@ -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;