fix css&js sonar issue

This commit is contained in:
刘小平 2024-07-18 13:31:58 +08:00
parent 37065f56c3
commit 6dbbeb4ff9
2 changed files with 3 additions and 14 deletions

View File

@ -38,17 +38,6 @@ body{
height: 100%; height: 100%;
margin-right: 10px; margin-right: 10px;
} }
.nav-body-item-so{
border-radius: 40px;
background:none;
outline:none;
border:none;
height: 30px;
text-indent: 10px;
padding-right: 35px;
background: #eee;
width: 200px;
}
.item-search { .item-search {
position: relative; position: relative;
} }

View File

@ -31,11 +31,11 @@
<span>执行过程:</span><textarea id="logstr" style="height: 300px;width: 600px;"></textarea> <span>执行过程:</span><textarea id="logstr" style="height: 300px;width: 600px;"></textarea>
</div> </div>
<div> <div>
<label>总计片数:{{partList.length}}</label> <span>总计片数:{{partList.length}}</span>
<div v-for="(item,index) in partList" :style="{color:missChunkNumber === index ? 'red' : 'black'}"> <div v-for="(item,index) in partList" :style="{color:missChunkNumber === index ? 'red' : 'black'}">
<label>第{{index + 1}}片:</label> <span>第{{index + 1}}片:</span>
<br/> <br/>
<label>{{item.url}}</label> <span>{{item.url}}</span>
</div> </div>
</div> </div>