a1300399510@qq.com 提交于 2023/04/04 -11:00:02

This commit is contained in:
2023-04-04 11:00:17 +08:00
parent 658f070cc1
commit 681703809e
3 changed files with 29 additions and 14 deletions

View File

@@ -277,7 +277,7 @@ export default {
info: {},
type: 0, // 定位帖 1 面经 2 租房帖 3 总结 5 捷报 6
token: "",
offerinfo: {}, // offer捷报详情
@@ -288,6 +288,7 @@ export default {
mounted() {
this.tid = this.$route.query['tid']
this.getDetail()
},
methods: {
@@ -312,7 +313,13 @@ export default {
// 获取offer详情
getOfferDetail() {
this.$http.post("/api/details", {
token: "aKpet3Y6LVE50g0a1TMJ9CO_fWeZORk7ZswsZAkMwwupQ2lbtcsjmX1np5mUmPKVla8FzCF8ZNJySac3tX-r8ULfxTS6S4Grt_SaX84Tov9BHHh9L568EHRR9CMIbYIOQI76V-jgTuur3qck0L4lAvgbcwSi5c9MUS5qI7zXYMklqBguz5n0Fgy794uePqhF_W9PwA0IQwGuLWIcvSZ8RqrhUM4cadRC4TgxN2Mx"
}, 'offer').then(res => {
console.log("res", res);
let data = res.data
this.offerinfo = data.offerinfo
})
},