|  |  |  | 
|---|
|  |  |  | <div class="wt_content_row_list" v-if="form.fileList && form.fileList.length >= 0"> | 
|---|
|  |  |  | <div class="wt_content_row_list_img" v-for="(item, index) in form.fileList" :key="index"> | 
|---|
|  |  |  | <el-image | 
|---|
|  |  |  | style="width: 100px; height: 100px" | 
|---|
|  |  |  | style="width: 80px; height: 80px" | 
|---|
|  |  |  | :src="item.fileurlFull" | 
|---|
|  |  |  | :preview-src-list="form.fileList.map(item => item.fileurlFull)"> | 
|---|
|  |  |  | </el-image> | 
|---|
|  |  |  | 
|---|
|  |  |  | import BaseOpera from '@/components/base/BaseOpera' | 
|---|
|  |  |  | import GlobalWindow from '@/components/common/GlobalWindow' | 
|---|
|  |  |  | import Detail from './detail' | 
|---|
|  |  |  | import { getById } from '@/api/ywProblem' | 
|---|
|  |  |  | export default { | 
|---|
|  |  |  | name: "problemReportingDetails", | 
|---|
|  |  |  | extends: BaseOpera, | 
|---|
|  |  |  | 
|---|
|  |  |  | open (title, target) { | 
|---|
|  |  |  | this.title = title | 
|---|
|  |  |  | this.form = target | 
|---|
|  |  |  | console.log(this.form) | 
|---|
|  |  |  | this.visible = true | 
|---|
|  |  |  | getById(target.id) | 
|---|
|  |  |  | .then(res => { | 
|---|
|  |  |  | this.form = res | 
|---|
|  |  |  | this.visible = true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | handleDetail() { | 
|---|
|  |  |  | this.showDetail = true | 
|---|