|
@@ -64,7 +64,7 @@
|
|
|
<div class="search_nav">
|
|
|
<div class="right">
|
|
|
<span :class="{ active: stype == 1 }" @click="checkDataType(1)">按题目查看</span>
|
|
|
- <!-- <span :class="{ active: stype == 2 }" @click="checkDataType(2)">按人员查看</span> -->
|
|
|
+ <span :class="{ active: stype == 2 }" @click="checkDataType(2)">按人员查看</span>
|
|
|
</div>
|
|
|
<div class="left">
|
|
|
<div style="margin-right: 10px;position: relative;" v-if="stype == 2">
|
|
@@ -74,6 +74,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="title_content" v-if="stype == 1">
|
|
|
+ <div class="title_box" v-if="!testArray.length" style="display: flex;align-items: center;justify-content: center;height: 500px;">
|
|
|
+ 暂无内容
|
|
|
+ </div>
|
|
|
<div class="title_box" v-for="(item, index) in testArray" :key="index">
|
|
|
<div class="title">
|
|
|
<span class="test_icon"
|
|
@@ -319,7 +322,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
changeHeight() {
|
|
|
- if (self.stype == 1) {
|
|
|
+ if (this.stype == 1) {
|
|
|
return
|
|
|
}
|
|
|
this.tableHeight = this.$refs.stepBox.offsetHeight - 100;
|
|
@@ -1015,6 +1018,11 @@ export default {
|
|
|
border: 1px solid #e7e7e7;
|
|
|
}
|
|
|
|
|
|
+.title_content>.title_box>.content2>.right >>> .wordCloud{
|
|
|
+ height: auto;
|
|
|
+ min-height: 300px;
|
|
|
+}
|
|
|
+
|
|
|
.title_content>.title_box>.content3{
|
|
|
display: flex;
|
|
|
width: 100%;
|