mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 10:56:44 +08:00
只看案主
This commit is contained in:
@@ -320,7 +320,6 @@
|
||||
this.loadData();
|
||||
},
|
||||
inputValue(val,oldVal) {
|
||||
console.log("333333");
|
||||
let fu = val.substr(-1);
|
||||
if(fu == '@'&&!oldVal) {
|
||||
this.toUserId = '';
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
<el-row style="height:10px;background-color:#f6f7fc;" >
|
||||
|
||||
</el-row>
|
||||
|
||||
|
||||
<el-row class="order-div" style="border: 1px solid #EBEEF5;border-bottom:none">
|
||||
<span class="quyer-tag">
|
||||
<el-button type="text" class="order-class" @click="searchData('comments')" :class="{ actice: queryCondition.orderField == 'comments' }">最热</el-button>
|
||||
@@ -112,7 +112,7 @@
|
||||
<router-link :to="'/case/detail?id='+item.id">
|
||||
{{displayAll(item)}}
|
||||
</router-link>
|
||||
<span style="color:#588afc" v-if="item.summary.length>190" @click.stop="changeIsAll(item)">
|
||||
<span style="color:#588afc" v-if="item.summary.length>180" @click.stop="changeIsAll(item)">
|
||||
{{item.isAll?'收起':'展开'}}
|
||||
</span>
|
||||
</div>
|
||||
@@ -134,7 +134,7 @@
|
||||
|
||||
</div>
|
||||
</el-card>
|
||||
|
||||
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
@@ -368,8 +368,8 @@ export default {
|
||||
},
|
||||
//展示全部
|
||||
displayAll(item) {
|
||||
if (!item.isAll && item.summary && item.summary.length > 190) {
|
||||
return item.summary.slice(0, 190) + "...";
|
||||
if (!item.isAll && item.summary && item.summary.length > 180) {
|
||||
return item.summary.slice(0, 180) + "...";
|
||||
}
|
||||
return item.summary;
|
||||
},
|
||||
@@ -830,9 +830,9 @@ export default {
|
||||
}
|
||||
|
||||
.case-info {
|
||||
|
||||
|
||||
.case-info-cont {
|
||||
|
||||
|
||||
.case-info-title {
|
||||
font-size: 15px;
|
||||
color: #333;
|
||||
@@ -880,7 +880,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
.search-div {
|
||||
|
||||
Reference in New Issue
Block a user