a1300399510@qq.com 提交于 2023/04/06 -19:20:02

This commit is contained in:
2023-04-06 19:20:14 +08:00
parent 44a5ab5d81
commit 24193fd5c1
2 changed files with 10 additions and 4 deletions

View File

@@ -136,10 +136,10 @@
<div class="card-head flexacenter">
<img class="card-head-icon" :src="item.avatar" />
<div class="card-head-content flex1 flexflex">
<div class="card-head-name flexflex">{{ item.author }} <div class="landlord flexcenter"
v-if="index == 0">
<div class="card-head-name flexflex">{{ item.author }}
<!-- <div class="landlord flexcenter" v-if="index == 0">
楼主
</div>
</div> -->
</div>
<div class="card-head-time">{{ $formattedDate(item.dateline) }}</div>
</div>
@@ -450,6 +450,8 @@ export default {
count: 0,
},
loading: null, // 加载中
};
},
@@ -462,6 +464,7 @@ export default {
methods: {
// 获取详细信息
getDetail() {
this.$startupUnderLoading(this)
this.$http.post("/api/thread", {
tid: this.tid
}).then(res => {
@@ -487,6 +490,8 @@ export default {
else if (this.type == 2) this.getInterviewDetails()
this.getPostList()
}).finally(() => {
this.$closeUnderLoading(this)
})
},