|
@@ -80,14 +80,15 @@
|
|
|
}"
|
|
|
>
|
|
|
<div
|
|
|
- style="margin-right: 10px;display:flex;align-items: center;"
|
|
|
+ class="dot"
|
|
|
+ style="margin-right: 10px;"
|
|
|
v-if="
|
|
|
item.checkList[checkIndex] &&
|
|
|
item.checkList[checkIndex].imgType &&
|
|
|
item.checkList[checkIndex].imgType == 1
|
|
|
"
|
|
|
>
|
|
|
- <div>选项{{checkIndex+1}}:</div>
|
|
|
+ <!-- <div>选项{{checkIndex+1}}:</div> -->
|
|
|
<div
|
|
|
class="inImg"
|
|
|
@click.stop="previewImg(item.checkList[checkIndex].src)"
|
|
@@ -103,18 +104,15 @@
|
|
|
v-else
|
|
|
>
|
|
|
<div
|
|
|
+ class="dot"
|
|
|
style="
|
|
|
max-width: calc(100% - 40px);
|
|
|
- white-space: nowrap;
|
|
|
overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- word-break: break-word;
|
|
|
width: auto;
|
|
|
- display: block;
|
|
|
cursor: pointer;
|
|
|
"
|
|
|
>
|
|
|
- 选项{{checkIndex+1}}:{{ item.checkList[checkIndex] }}
|
|
|
+ <span>{{ item.checkList[checkIndex] }}</span>
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
|
</span>
|
|
@@ -475,4 +473,27 @@ export default {
|
|
|
height: 100%;
|
|
|
object-fit: cover;
|
|
|
}
|
|
|
+.dot{
|
|
|
+ display:flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.dot > span{
|
|
|
+ display:block;
|
|
|
+ max-width: calc(100% - 20px) !important;
|
|
|
+ width:auto !important;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ word-break: break-word;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.dot::before{
|
|
|
+ content:'';
|
|
|
+ min-width: 10px;
|
|
|
+ width: 10px;
|
|
|
+ height: 10px;
|
|
|
+ background: #0061ff;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-right: 10px;
|
|
|
+ display: block;
|
|
|
+}
|
|
|
</style>
|