Commit 432d95cf authored by hanfeng's avatar hanfeng

Merge remote-tracking branch 'origin/base-modify' into base-modify

parents 7474fa8b e18ff9e6
...@@ -418,10 +418,12 @@ ...@@ -418,10 +418,12 @@
let arr = info.images.split(",");//图片 let arr = info.images.split(",");//图片
let temp = []; let temp = [];
for(let i = 0; i < arr.length; i++){ for(let i = 0; i < arr.length; i++){
let p = { if(arr[i]){
url: arr[i] let p = {
url: arr[i]
}
temp.push(p);
} }
temp.push(p);
} }
t.fileList2 = temp; t.fileList2 = temp;
this.activeName2 = "first"; this.activeName2 = "first";
...@@ -466,7 +468,7 @@ ...@@ -466,7 +468,7 @@
}); });
return; return;
} }
if(!this.form.images){ if(this.fileList2.length<=0){
this.tabName = "second"; this.tabName = "second";
this.$notify({ this.$notify({
title: '警告', title: '警告',
......
This diff is collapsed.
...@@ -39,6 +39,16 @@ ...@@ -39,6 +39,16 @@
<template scope="scope"> <template scope="scope">
<span>{{scope.row.provinceName}}-{{scope.row.cityName}}</span> <span>{{scope.row.provinceName}}-{{scope.row.cityName}}</span>
</template> </template>
<el-table-column align="center" label="取车分公司" width="200">
<template scope="scope">
<span>{{scope.row.companyName}}</span>
</template>
</el-table-column>
<el-table-column align="center" label="还车分公司" width="200">
<template scope="scope">
<span>{{scope.row.arrivalCompanyName}}</span>
</template>
</el-table-column>
</el-table-column> </el-table-column>
<el-table-column align="center" label="车辆型号" width="300"> <el-table-column align="center" label="车辆型号" width="300">
<template scope="scope"> <template scope="scope">
......
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