Commit c8195e50 authored by ZhangKai's avatar ZhangKai

fix: 修改 综合查询 -> 车辆查询 详情页图片回写

parent 3dcbdc3d
......@@ -179,9 +179,9 @@
<el-dialog
:title="title"
:visible.sync="open"
width="480px"
width="60vm"
append-to-body
:close-on-click-modal="false"
:close-on-click-modal="true"
destroy-on-close
>
<!--上方文字显示-->
......@@ -199,17 +199,17 @@
<el-row :gutter="8" style="margin-top: 20px">
<el-col :span="8">
<div style="text-align: center;">
<el-image :src="form.frontImg" />
<el-image :src="baseUrl + form.frontImg" />
<p>正面</p></div>
</el-col>
<el-col :span="8">
<div style="text-align: center;">
<el-image :src="form.backImg" />
<el-image :src="baseUrl + form.backImg" />
<p>背面</p></div>
</el-col>
<el-col :span="8">
<div style="text-align: center;">
<el-image :src="form.licensePlateImg" />
<el-image :src="baseUrl + form.licensePlateImg" />
<p>车牌</p></div>
</el-col>
</el-row>
......@@ -244,6 +244,7 @@ export default {
title: '',
// 是否显示弹出层
open: false,
baseUrl: process.env.VUE_APP_IMG_API,
// 重新渲染表格状态
vehicleTable: true,
// 查询参数
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment