| | |
| | | getDetail, |
| | | update |
| | | } from "@/api/task/bailReporting" |
| | | import website from '@/config/website' |
| | | export default { |
| | | data() { |
| | | return { |
| | |
| | | taskId: taskId |
| | | }).then((res) => { |
| | | this.form = res.data.data |
| | | if (this.form.reachImageUrls) { |
| | | this.form.reachImageUrls = website.minioUrl + this.form.reachImageUrls |
| | | } |
| | | if (this.form.returnImageUrls) { |
| | | this.form.returnImageUrls = website.minioUrl + this.form.returnImageUrls |
| | | } |
| | | if (this.form.startImageUrls) { |
| | | this.form.startImageUrls = website.minioUrl + this.form.startImageUrls |
| | | } |
| | | if (this.form.locationImageUrls) { |
| | | this.form.locationImageUrls = website.minioUrl + this.form.locationImageUrls |
| | | } |
| | | // console.table(this.form) |
| | | }) |
| | | } |
| | | |