a1300399510@qq.com 提交于 2023/04/03 -19:00:01

This commit is contained in:
XiaoMo 2023-04-03 19:00:10 +08:00
parent 0d34ef6228
commit 6d1dcc10ab
2 changed files with 28 additions and 36 deletions

View File

@ -15,35 +15,15 @@ export default {
data() { data() {
return { return {
tid: 0, // id
info: {},
type: 0, //
token: ""
}; };
}, },
mounted() { mounted() {
console.log("ggmjgj", this.$route);
this.tid = this.$route.query['tid']
this.getDetail()
}, },
methods: { methods: {
//
getDetail() {
this.$http.post("/api/thread", {
tid: this.tid
}).then(res => {
if (res.code != 200) return
let data = res.data
this.info = data.info
this.type = data.type
this.token = data.token
})
},
}, },
components: { components: {
HeaderNav, HeaderNav,

View File

@ -4,18 +4,18 @@
<div class="detail-section">版块<span class="section-name">香港澳门台湾留学申请</span></div> <div class="detail-section">版块<span class="section-name">香港澳门台湾留学申请</span></div>
<div class="detail-data flexacenter"> <div class="detail-data flexacenter">
<div class="detail-data-item flexacenter"> <div class="detail-data-item flexacenter">
<img class="detail-data-eye" src="@/assets/img/detail/eye.png">10378 <img class="detail-data-eye" src="@/assets/img/detail/eye.png">{{ info.views }}
</div> </div>
<div class="detail-data-item flexacenter"> <div class="detail-data-item flexacenter">
<img class="detail-data-comment" src="@/assets/img/detail/comment.png">16 <img class="detail-data-comment" src="@/assets/img/detail/comment.png">{{ info.replies }}
</div> </div>
</div> </div>
</div> </div>
<div class="detail-title-box"> <div class="detail-title-box">
<div class="detail-title-item detail-title-jinghua flexcenter" v-if="">精华</div> <div class="detail-title-item detail-title-jinghua flexcenter" v-if="info.digest>0">精华</div>
<div class="detail-title-item detail-title-label flexcenter">生活贴士</div> <div class="detail-title-item detail-title-label flexcenter" v-if="info.typename">{{info.typename}}</div>
香港永久居民的申请步骤和过程 {{info.subject}}
</div> </div>
<!-- --> <!-- -->
@ -235,7 +235,6 @@
</div> </div>
</div> </div>
<detail-reply :two-comment-data="twoCommentData" :pop-state="popState"></detail-reply> <detail-reply :two-comment-data="twoCommentData" :pop-state="popState"></detail-reply>
<coins :coin-config="coinConfig" :pop-state="popState"></coins> <coins :coin-config="coinConfig" :pop-state="popState"></coins>
</div> </div>
@ -261,11 +260,6 @@ export default {
} }
}, },
info: {
avatar: "https://oss.gter.net/avatar/97KwEWANd_4DHWiY6VbnSUFSCKroYWFjYQ~~/middle",
likenum: 1
},
islogin: true, islogin: true,
prepareLiskeState: false, prepareLiskeState: false,
prepareLiskeAnimateState: false, prepareLiskeAnimateState: false,
@ -292,10 +286,28 @@ export default {
}, },
mounted() { mounted() {
this.tid = this.$route.query['tid']
this.getDetail()
}, },
methods: { methods: {
//
//
getDetail() {
this.$http.post("/api/thread", {
tid: this.tid
}).then(res => {
if (res.code != 200) return
let data = res.data
this.info = data.info
this.type = data.type
this.token = data.token
})
},
// //
tapLike() { tapLike() {