|
|
|
|
@ -582,6 +582,7 @@
|
|
|
|
|
start-placeholder="选择开始时间"
|
|
|
|
|
end-placeholder="选择结束时间"
|
|
|
|
|
style="width: calc(100% - 20px)"
|
|
|
|
|
@change="getObstacleList"
|
|
|
|
|
/>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
@ -732,7 +733,7 @@
|
|
|
|
|
<el-upload @click.stop="onSubmit"
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
:http-request="uploadFiles"
|
|
|
|
|
:file-list="dialog1Form.fileList.concat({type:'camera'})"
|
|
|
|
|
:file-list="dialog1Form.fileList.filter(v => v).concat({type:'camera'})"
|
|
|
|
|
list-type="picture-card">
|
|
|
|
|
|
|
|
|
|
<template #trigger>
|
|
|
|
|
@ -805,7 +806,7 @@
|
|
|
|
|
<el-upload @click.stop="onSubmit"
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
:http-request="uploadFiles1"
|
|
|
|
|
:file-list="dialog2Form.fileList.concat({type:'camera'})"
|
|
|
|
|
:file-list="dialog2Form.fileList.filter(v => v).concat({type:'camera'})"
|
|
|
|
|
list-type="picture-card">
|
|
|
|
|
|
|
|
|
|
<template #trigger>
|
|
|
|
|
@ -879,7 +880,7 @@
|
|
|
|
|
<el-upload @click.stop="onSubmit"
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
:http-request="uploadFiles2"
|
|
|
|
|
:file-list="dialog3Form.fileList.concat({type:'camera'})"
|
|
|
|
|
:file-list="dialog3Form.fileList.filter(v => v).concat({type:'camera'})"
|
|
|
|
|
list-type="picture-card">
|
|
|
|
|
|
|
|
|
|
<template #trigger>
|
|
|
|
|
@ -953,7 +954,7 @@
|
|
|
|
|
<el-upload @click.stop="onSubmit"
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
:http-request="uploadFiles3"
|
|
|
|
|
:file-list="dialog4Form.fileList.concat({type:'camera'})"
|
|
|
|
|
:file-list="dialog4Form.fileList.filter(v => v).concat({type:'camera'})"
|
|
|
|
|
list-type="picture-card">
|
|
|
|
|
|
|
|
|
|
<template #trigger>
|
|
|
|
|
@ -2347,8 +2348,8 @@ const getObstacleList = () => {
|
|
|
|
|
pageIndex: currentPage4.value,
|
|
|
|
|
pageSize: pageSize4.value,
|
|
|
|
|
fodAirId: form1.value.region1,
|
|
|
|
|
findStartTime: parseTime(date1[0]),
|
|
|
|
|
findEndTime: parseTime(date1[1]),
|
|
|
|
|
findStartTime: parseTime(date1.value[0]),
|
|
|
|
|
findEndTime: parseTime(date1.value[1]),
|
|
|
|
|
}).then(e => {
|
|
|
|
|
tableData3.value = e.data
|
|
|
|
|
total4.value = e.totalCount
|
|
|
|
|
|