tiezicontent.vue
7.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<template>
<div>
<div class="tiezhlist">
<div
class="tieziitem"
v-for="(item, index) in tiezilist"
:key="index"
@click="luntandetail(item)"
>
<div class="tiezitop flexone">
<div class="tieziimg">
<img :src="item.user.avatar" alt="" />
</div>
<div class="tieziright">
<div class="tiezirighttop flex">
<div style="margin-right:0.2rem">
<div class="tieziming">{{ item.user.nickname }}</div>
<div class="tiezifen">{{item.createtime}}</div>
</div>
<div>
<div class="vipimg" v-if="item.forum_type == 1">
<img src="../assets/vip_icon@2x.png" alt="" />
<div class="vipname">{{ item.user.level.name1 }}</div>
</div>
<div class="tiezizhuan" v-for="(item,index) in item.user.label" :key="index" >{{item.name_label}}</div>
</div>
<div class="flex" v-if="item.user.label!='[]'">
<img
:src="itemk.logo_image"
class="banggongimg"
alt=""
v-for="(itemk, index) in item.user.label"
:key="index"
/>
</div>
<img
src="../assets/yirenzheng_icon@2x.png"
class="banggongimg"
alt=""
v-if="item.is_card == 1"
/>
</div>
<div class="tiezibto flexone"></div>
</div>
</div>
<div class="tiezicontent">
<div class="teizicontenttop flextwo">
<div class="tiezicontentname">{{ item.title }}</div>
<img
src="../assets/xingxing_icon@2x.png"
alt=""
class="starimg"
v-if="item.is_collect==1"
@click.stop="collect(index,item.id)"
/>
<img
src="../assets/weishoucang_icon@2x.png"
alt=""
class="starimg"
@click.stop="collect(index,item.id)"
v-else
/>
</div>
<div class="tieziwordbox" v-html="item.content"></div>
<div
class="teiziimgbox flexone"
v-if="item.video != null"
@click.stop="govideo(item.video)"
>
<div class="videoimg">
<img :src="item.video_image" alt="" />
<img src="../assets/bofang_icon@2x.png" alt="" class="videobtn" />
</div>
</div>
<div class="teiziimgbox flexone" v-if="item.images != null">
<div
class="tieziimgimg"
v-for="(item, indexk) in item.images"
:key="indexk"
@click.stop="previewimg(index, indexk, item)"
>
<img :src="item" alt="" />
</div>
</div>
<div class="tiezipingbot">
<div class="teizipingitem flexone" v-if="item.comment != 0">
<img src="../assets/pinglun_icon@2x.png" alt="" class="lunimg" />
{{ item.comment }}
</div>
<div
class="teizipingitem flexone"
@click.stop="praisedian(item, index)"
>
<img
src="../assets/zan_icon@2x.png"
alt=""
class="lunimg zanimg"
v-if="item.is_praise == 1"
/>
<img
src="../assets/nodianzan.png"
alt=""
class="lunimg zanimg"
v-if="item.is_praise == 2"
/>
{{ item.praise }}
</div>
<div class="teizipingitem flexone">
<img
src="../assets/number.png"
alt=""
class="lunimg zanimg"
/>
{{item.view}}
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import wx from "weixin-js-sdk";
import Vue from "vue";
import { Toast } from "vant";
Vue.use(Toast);
export default {
props: ["tiezilist", "showpull"],
dta() {
return {
tiezilist: []
};
},
created() {
this.getappid();
},
methods: {
// 获取appid
getappid() {
let that = this;
console.log(34734894890);
let urlk = window.location.href;
var url = "/api/user/get_jssdk";
let param = {
url: urlk
};
that.$axios
.post(url, param)
.then(function (res) {
console.log(res, "jssdkjsskd");
wx.config({
debug: false,
appId: res.data.appId, // 和获取Ticke的必须一样------必填,公众号的唯一标识
timestamp: res.data.timestamp, // 必填,生成签名的时间戳
nonceStr: res.data.nonceStr, // 必填,生成签名的随机串
signature: res.data.signature, // 必填,签名,见附录1
//需要分享的列表项:发送给朋友,分享到朋友圈,分享到QQ,分享到QQ空间
jsApiList: ["previewImage"]
});
})
.catch(function (err) {
console.log(err);
});
},
// 收藏和取消收藏
collect(index,id){
let that = this;
var url = "/api/forum/collect";
var params = {
forum_id: id
};
console.log("7766554", params);
that.$axios
.post(url, params)
.then(res => {
let newtiezilist=that.tiezilist;
if( newtiezilist[index].is_collect==2){
newtiezilist[index].is_collect=1;
Toast("收藏成功")
}else{
newtiezilist[index].is_collect=2;
Toast("取消收藏成功")
}
that.tiezilist=newtiezilist;
that.$forceUpdate()
that.bannertop = res.data;
})
.catch(err => {
console.log(err);
});
},
// 点赞和取消点赞
praisedian(item, index) {
let that = this;
if (that.tiezilist[index].is_praise == 2) {
Toast("点赞成功");
that.tiezilist[index].is_praise = 1;
that.tiezilist[index].praise = that.tiezilist[index].praise + 1;
} else {
Toast("取消点赞成功");
that.tiezilist[index].is_praise = 2;
that.tiezilist[index].praise = that.tiezilist[index].praise - 1;
}
that.tiezilist = that.tiezilist;
var url = "/api/forum/praise";
var params = {
forum_id: item.id
};
console.log("参数", params);
that.$axios
.post(url, params)
.then(res => {
console.log(res);
})
.catch(err => {
console.log(err);
});
},
// 论坛详情
luntandetail(item) {
this.$router.push({
path: "/tiezidetail",
query: { id: item.id }
});
},
// 进入video
govideo(src) {
console.log(src);
this.$router.push({
path: "/videoplay",
query: { url: src }
});
},
// 预览图片
previewimg(index, indexk, item) {
wx.previewImage({
current: item, // 当前显示图片的http链接
urls: this.tiezilist[index].images // 需要预览的图片http链接列表
});
}
}
};
</script>
<style scoped>
@import "./style/homepage.css";
</style>