|
|
@@ -3,7 +3,6 @@
|
|
|
<el-dialog
|
|
|
title="图像识别结果"
|
|
|
:visible.sync="vanPopup"
|
|
|
- width="80%"
|
|
|
:append-to-body="true"
|
|
|
:close-on-click-modal="false"
|
|
|
@close="close"
|
|
|
@@ -12,7 +11,7 @@
|
|
|
<!-- shopSignChange 与历史照片是否一致(是否要更换照片) 0一致(要更换),1不一致(不要更换) -->
|
|
|
<template v-if="shopSignChange == 0">
|
|
|
<div class="errorImg">
|
|
|
- <img v-if="url" :src="url" fit="contain" @click="previewsImg(url)" />
|
|
|
+ <img v-if="url" :src="url" @click="previewsImg(url)" />
|
|
|
<img v-else :src="imageEmpty" width="100%" height="300px" />
|
|
|
</div>
|
|
|
<div class="AIVerify">
|
|
|
@@ -30,7 +29,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <div class="uploadBtnAIVerify">
|
|
|
+ <div
|
|
|
+ class="uploadBtnAIVerify"
|
|
|
+ :style="{ 'justify-content': shotsNum >= maxNum ? 'space-between' : center }">
|
|
|
<div class="confirmUploadAIVerify" @click="uploadImg(false)">重新拍照</div>
|
|
|
<div v-if="shotsNum >= maxNum" class="stillUploadAIVerify" @click="confirmUpload">
|
|
|
仍要上传
|
|
|
@@ -282,13 +283,13 @@ export default {
|
|
|
align-items: center;
|
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
|
.el-dialog__body {
|
|
|
- padding: 6px !important;
|
|
|
+ padding: 0px !important;
|
|
|
}
|
|
|
.el-dialog__header {
|
|
|
text-align: center;
|
|
|
}
|
|
|
.AIVerifyErrdialog {
|
|
|
- width: 95% !important;
|
|
|
+ width: vw(690);
|
|
|
margin-top: 1vh !important;
|
|
|
border-radius: 8px !important;
|
|
|
font-size: vw(32) !important;
|
|
|
@@ -302,7 +303,7 @@ export default {
|
|
|
}
|
|
|
.AIVerifyErrMask {
|
|
|
width: 100%;
|
|
|
- padding: 8px;
|
|
|
+ padding: vw(30);
|
|
|
overflow: hidden;
|
|
|
/* min-height: 180px; */
|
|
|
.errorImg {
|
|
|
@@ -312,10 +313,12 @@ export default {
|
|
|
justify-content: center;
|
|
|
img {
|
|
|
width: vw(235);
|
|
|
+ height: vw(303);
|
|
|
+ border-radius: vw(10);
|
|
|
}
|
|
|
}
|
|
|
.AIVerify {
|
|
|
- font-size: vw(30);
|
|
|
+ font-size: vw(32);
|
|
|
margin-top: vw(45);
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
@@ -368,7 +371,6 @@ export default {
|
|
|
.uploadBtnAIVerify {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: center;
|
|
|
padding: vw(8) 0;
|
|
|
margin-top: vw(30);
|
|
|
div {
|
|
|
@@ -382,21 +384,23 @@ export default {
|
|
|
width: vw(298);
|
|
|
height: vw(68);
|
|
|
background-blend-mode: normal, normal;
|
|
|
- box-shadow: 0px 3px 6px 0px rgba(6, 60, 131, 0.35);
|
|
|
}
|
|
|
.confirmUploadAIVerify {
|
|
|
background-image: linear-gradient(180deg, #ffa1a1 0%, #f6695f 35%, #ed301d 100%),
|
|
|
linear-gradient(#aed0f9, #aed0f9);
|
|
|
+ box-shadow: 0px 3px 6px 0px rgba(183, 30, 14, 0.35);
|
|
|
margin-right: 6px;
|
|
|
}
|
|
|
.changeImageAIVerify {
|
|
|
background-image: linear-gradient(180deg, #3b89e6 0%, #1e6acb 35%, #014baf 100%),
|
|
|
linear-gradient(#0356b9, #0356b9);
|
|
|
+ box-shadow: 0px 3px 6px 0px rgba(6, 60, 131, 0.35);
|
|
|
margin-left: 6px;
|
|
|
}
|
|
|
.stillUploadAIVerify {
|
|
|
background-image: linear-gradient(180deg, #3b89e6 0%, #1e6acb 35%, #014baf 100%),
|
|
|
linear-gradient(#0356b9, #0356b9);
|
|
|
+ box-shadow: 0px 3px 6px 0px rgba(6, 60, 131, 0.35);
|
|
|
margin-left: 6px;
|
|
|
}
|
|
|
}
|