|
@@ -150,10 +150,11 @@ function getServer() {
|
|
|
}).then(res => {
|
|
|
const list = res.checklist || [];
|
|
|
let rawTextF = res.rawText || '';
|
|
|
+ console.log(list);
|
|
|
for (let i = 0; i < list.length; i++) {
|
|
|
const v = list[i];
|
|
|
const r = new RegExp(`data-umpos="${v.colorPosition}"`, 'g');
|
|
|
- let rText = `data-umpos="${v.colorPosition}" style="border-color: rgb(${
|
|
|
+ let rText = `data-umpos="${v.colorPosition}" style="border-bottom: 3px solid rgb(${
|
|
|
errType[v.um_error_level]
|
|
|
});`;
|
|
|
if (i == 0) {
|
|
@@ -361,4 +362,8 @@ function getEle(colorPosition) {
|
|
|
color: #fff;
|
|
|
border-color: #2974ff !important;
|
|
|
}
|
|
|
+
|
|
|
+.el-poper .selectSpan {
|
|
|
+ border-bottom: 3px solid #fff;
|
|
|
+}
|
|
|
</style>
|