|
@@ -3441,11 +3441,27 @@
|
|
v-for="(item, index) in tool.askJson"
|
|
v-for="(item, index) in tool.askJson"
|
|
:key="index"
|
|
:key="index"
|
|
>
|
|
>
|
|
- <div>
|
|
|
|
- <span
|
|
|
|
- style="word-break: break-all; white-space: normal"
|
|
|
|
- >{{ index + 1 + "、" + item.askstitle }}</span
|
|
|
|
|
|
+ <div style="width: calc(100% - 30px);">
|
|
|
|
+ <el-tooltip
|
|
|
|
+ effect="light"
|
|
|
|
+ :content="index + 1 + '、' + item.askstitle"
|
|
|
|
+ placement="top"
|
|
|
|
+ popper-class="text_tooltip"
|
|
>
|
|
>
|
|
|
|
+ <div
|
|
|
|
+ style="
|
|
|
|
+ width: calc(100% - 130px);
|
|
|
|
+ display: block;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ word-break: break-word;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ {{ index + 1 + "、" + item.askstitle }}
|
|
|
|
+ </div>
|
|
|
|
+ </el-tooltip>
|
|
</div>
|
|
</div>
|
|
<div class="right_box_xuan">
|
|
<div class="right_box_xuan">
|
|
<span>正确率</span>
|
|
<span>正确率</span>
|
|
@@ -3617,11 +3633,27 @@
|
|
: 0) + "%"
|
|
: 0) + "%"
|
|
}}</span>
|
|
}}</span>
|
|
</div>
|
|
</div>
|
|
- <div>
|
|
|
|
- <span
|
|
|
|
- style="word-break: break-all; white-space: normal"
|
|
|
|
- >{{ index + 1 + "、" + item.teststitle }}</span
|
|
|
|
|
|
+ <div style="width: calc(100% - 30px);">
|
|
|
|
+ <el-tooltip
|
|
|
|
+ effect="light"
|
|
|
|
+ :content="index + 1 + '、' + item.teststitle"
|
|
|
|
+ placement="top"
|
|
|
|
+ popper-class="text_tooltip"
|
|
>
|
|
>
|
|
|
|
+ <div
|
|
|
|
+ style="
|
|
|
|
+ width: calc(100% - 130px);
|
|
|
|
+ display: block;
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ word-break: break-word;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ {{ index + 1 + "、" + item.teststitle }}
|
|
|
|
+ </div>
|
|
|
|
+ </el-tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|