| | |
| | | // 清空 |
| | | const handleReset = () => { |
| | | dateRange.value = []; |
| | | Object.keys(searchForm).forEach(key => { |
| | | searchForm[key] = ''; |
| | | }); |
| | | searchForm.jobName = '' |
| | | searchForm.name = '' |
| | | searchForm.areaCode = userAreaCode.value |
| | | searchForm.endTime = endTime.format(timeFormat) |
| | | searchForm.startTime = startTime.format(timeFormat) |
| | | searchForm.deviceSn = '' |
| | | searchForm.resultType = '' |
| | | searchForm.photoType = '' |
| | | handleNodeClick({ id: userAreaCode.value }); |
| | | handleSearch(); |
| | | console.log('searchForm',searchForm); |
| | | |
| | | }; |
| | | // 下载 |
| | | const downloadFun =()=>{ |