|
|
@@ -34,7 +34,7 @@
|
|
|
:width="width"
|
|
|
:height="height"
|
|
|
:currentImage="model.carImg"
|
|
|
- bgsrc="/static/myCar/upload.png"
|
|
|
+ bgsrc="http://139.9.103.171:1888/miniofile/app/upload.png"
|
|
|
>
|
|
|
</upload-img>
|
|
|
<view class="text-center padding-top-20 base-color" >
|
|
|
@@ -58,7 +58,7 @@
|
|
|
:width="width"
|
|
|
:height="height"
|
|
|
:currentImage="model.vehicleDrivingLicense1"
|
|
|
- bgsrc="/static/myCar/zm.png"
|
|
|
+ bgsrc="http://139.9.103.171:1888/miniofile/app/zm.png"
|
|
|
>
|
|
|
</upload-img>
|
|
|
<view class="text-center padding-top-20 base-color" >
|
|
|
@@ -82,7 +82,7 @@
|
|
|
:width="width"
|
|
|
:height="height"
|
|
|
:currentImage="model.vehicleDrivingLicense2"
|
|
|
- bgsrc="/static/myCar/fm.png"
|
|
|
+ bgsrc="http://139.9.103.171:1888/miniofile/app/fm.png"
|
|
|
>
|
|
|
</upload-img>
|
|
|
<view class="text-center padding-top-20 base-color" >
|
|
|
@@ -244,7 +244,7 @@
|
|
|
let carType = uni.getStorageSync("carType");
|
|
|
let carProperty = uni.getStorageSync("carProperty");
|
|
|
let fuelCategory = uni.getStorageSync("fuelCategory");
|
|
|
- if (carType && carProperty && fuelCategory) {
|
|
|
+ if (!this.$isEmpty(carType) || !this.$isEmpty(carProperty) || !this.$isEmpty(fuelCategory)) {
|
|
|
this.carTypeList = carType;
|
|
|
this.carPropertiesList = carProperty;
|
|
|
this.fuelCategoryList = fuelCategory;
|