|
|
@@ -3537,6 +3537,28 @@
|
|
|
</el-upload>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="flex f-wrap" id="shouquanshu">
|
|
|
+ <div class="aaa">
|
|
|
+ <span>1.授权书</span>
|
|
|
+ <el-upload action="#" list-type="picture-card" :auto-upload="false" :limit="1" drag :on-change="(file) =>
|
|
|
+ drivingupload(file, 'imageList6', 'imgList25', 'SQ00')
|
|
|
+ " :file-list="imgList25" multiple ref="upload3"
|
|
|
+ :class="{ styleB: imgList25.length === 1 }">
|
|
|
+ <img v-show="imgList25.length == 0" src="../../../../static/userfront.png"
|
|
|
+ style="width: 100%; height: 100%" />
|
|
|
+ <div slot="file" slot-scope="{ file }">
|
|
|
+ <img class="el-upload-list__item-thumbnail" :src="file.url" alt />
|
|
|
+ <span class="el-upload-list__item-actions">
|
|
|
+ <span class="el-upload-list__item-delete"
|
|
|
+ @click="handleRemove1(file, 'imageList6', 'imgList25')">
|
|
|
+ <i class="el-icon-zoom-in" @click.stop="handlePictureCardPreview(file.url)"></i>
|
|
|
+ <i class="el-icon-delete"></i>
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </el-upload>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
@@ -4230,7 +4252,10 @@ export default {
|
|
|
name: "上年商业险保单",
|
|
|
scroll: "snbaodan",
|
|
|
},
|
|
|
-
|
|
|
+ {
|
|
|
+ name: "授权书",
|
|
|
+ scroll: "shouquanshu",
|
|
|
+ },
|
|
|
],
|
|
|
packageValue: "",
|
|
|
packageOptions: [],
|
|
|
@@ -5511,7 +5536,10 @@ export default {
|
|
|
name: "上年商业险保单",
|
|
|
scroll: "snbaodan",
|
|
|
},
|
|
|
-
|
|
|
+ {
|
|
|
+ name: "授权书",
|
|
|
+ scroll: "shouquanshu",
|
|
|
+ },
|
|
|
],
|
|
|
ProViewImg: "", //预览图片
|
|
|
carfrontImg: "", //行驶证正面
|
|
|
@@ -5552,6 +5580,7 @@ export default {
|
|
|
imgList22: [],
|
|
|
imgList23: [],
|
|
|
imgList24: [],
|
|
|
+ imgList25: [],
|
|
|
//影像上传列表
|
|
|
imageList1: [],
|
|
|
imageList2: [],
|
|
|
@@ -10246,6 +10275,7 @@ export default {
|
|
|
this.imgList22 = [];
|
|
|
this.imgList23 = [];
|
|
|
this.imgList24 = [];
|
|
|
+ this.imgList25 = [];
|
|
|
Object.keys(res.data).forEach((keys) => {
|
|
|
if (res.data[keys].url) {
|
|
|
res.data[keys].url = process.env.BASE_URL + res.data[keys].url;
|
|
|
@@ -10419,6 +10449,13 @@ export default {
|
|
|
});
|
|
|
this.imgList24.push(res.data[keys]);
|
|
|
break;
|
|
|
+ case "SQ00":
|
|
|
+ this.imageList6.push({
|
|
|
+ imageId: res.data[keys].imageId,
|
|
|
+ imageType: res.data[keys].imageType,
|
|
|
+ });
|
|
|
+ this.imgList25.push(res.data[keys]);
|
|
|
+ break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
@@ -12379,6 +12416,7 @@ export default {
|
|
|
this.imgList22 = [];
|
|
|
this.imgList23 = [];
|
|
|
this.imgList24 = [];
|
|
|
+ this.imgList25 = [];
|
|
|
// 清空保险公司选中的意外险
|
|
|
this.zijintemplateSelection = "";
|
|
|
this.zhongantemplateSelection = "";
|