Browse Source

完善验车

zhanglei
yunuo970428 3 years ago
parent
commit
a4f752b6a1
  1. 9
      anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliInfo.vue

9
anrui-scm/anrui-scm-ui/src/views/supplychain/yancheguanli/yancheguanliInfo.vue

@ -96,7 +96,7 @@
<div class="title">验车相关照片</div>
<el-row>
<el-col :span="24">
<el-image style="width: 178px;height: 178px;" v-for="(item,index) in temp.carInspectedImage" :key="index" :src="item" :preview-src-list="temp.carInspectedImage"></el-image>
<el-image style="width: 178px;height: 178px;" v-for="(item,index) in temp.carInspectedImage" :key="index" :src="item" :preview-src-list="temp.carInspectedImage" @click="open(item)"></el-image>
</el-col>
</el-row>
<el-row>
@ -104,7 +104,7 @@
<span>厂家验车单照片</span>
</el-col>
<el-col :span="21">
<el-image style="width: 178px;height: 178px;" v-for="(item,index) in temp.factoryImage" :key="index" :preview-src-list="temp.factoryImage"></el-image>
<el-image style="width: 178px;height: 178px;" v-for="(item,index) in temp.factoryImage" :key="index" :src="item" :preview-src-list="temp.factoryImage" @click="open(item)"></el-image>
</el-col>
</el-row>
<el-row>
@ -172,10 +172,9 @@ export default {
resetState() {
this.viewState = 1
},
open(val, index) {
open(val) {
this.dialogVisible = true
this.dialogUrl = val
this.dialogImageUrl = val[index]
this.dialogImageUrl = val
}
}
}

Loading…
Cancel
Save