Showing
1 changed file
with
3 additions
and
4 deletions
@@ -64,14 +64,13 @@ | @@ -64,14 +64,13 @@ | ||
64 | </div> | 64 | </div> |
65 | </div> | 65 | </div> |
66 | </div> | 66 | </div> |
67 | - <div v-if="cardOpen" style="margin-top:10px;background-color: whitesmoke;display: flex;justify-content: flex-start;flex-wrap: wrap;padding: 6px;max-height: 380px;overflow-y: auto;"> | 67 | + <div v-if="cardOpen" style="margin-top:10px;background-color: whitesmoke;display: flex;justify-content: flex-start;flex-wrap: wrap;padding: 6px;max-height: 380px;overflow-y: auto;overflow-x: hidden;"> |
68 | <div v-if="cardData.length == 0" class="align-center" style="flex: 1"> | 68 | <div v-if="cardData.length == 0" class="align-center" style="flex: 1"> |
69 | <el-empty :image-size="50" /> | 69 | <el-empty :image-size="50" /> |
70 | </div> | 70 | </div> |
71 | <div v-else v-for="item in cardData" style="width: 25%;"> | 71 | <div v-else v-for="item in cardData" style="width: 25%;"> |
72 | - <div style="min-width: 340px;min-height: 184px;background: url('../src/style/img/fault/npm/npmCard.png') no-repeat;background-size: 100% 100%;padding-top: 20px;margin-bottom: 26px;box-sizing: border-box;"> | ||
73 | - <div class="text-overflow" style="width: 220px;margin-left: 40px;font-size: 16px"> | ||
74 | -<!-- {{item.streamName}}--> | 72 | + <div style="min-height: 184px;background: url('../src/style/img/fault/npm/npmCard.png') no-repeat;background-size: 100% 100%;padding-top: 20px;margin-bottom: 26px;box-sizing: border-box;"> |
73 | + <div class="text-overflow" style="width: 220px;margin-left: 40px;font-size: 16px;padding-top:15px;"> | ||
75 | <el-tooltip ref="tlp" :content="item.streamName" placement="bottom" :disabled="item.isShowTooltip == undefined || item.isShowTooltip == false"> | 74 | <el-tooltip ref="tlp" :content="item.streamName" placement="bottom" :disabled="item.isShowTooltip == undefined || item.isShowTooltip == false"> |
76 | <span @mouseenter="visibilityChange($event,item)"> {{item.streamName}}</span> | 75 | <span @mouseenter="visibilityChange($event,item)"> {{item.streamName}}</span> |
77 | </el-tooltip> | 76 | </el-tooltip> |
-
Please register or login to post a comment