luntan.vue
9.6 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<template>
<view class="content">
<view class="status_bar"></view>
<view class="home-wrap">
<!-- 搜索 -->
<view class="search-wrap navigator">
<view class="homeimg" open-type="navigate" @click="homeback">
<image class="home-ico" src="../../static/home.png" mode="widthFix" />
</view>
<view class="search-input navigator" url="/pages/searchGoods/index" open-type="navigate">
<icon type="search" size="12" color="#BDC4CE" style="margin-right:10rpx;"/>
请输入关键词搜索
</view>
<picker @change="bindproChange" :value="index" :range="provincelist" range-key="name">
<!-- <view class="uni-input">{{array[index]}}</view> -->
<view class="proselect flexthree">
<text class="proname">{{provincename}}</text>
<image class="down-ico" src="../../static/xiala.png" />
</view>
</picker>
</view>
<!-- nav -->
<view class="nav-wrap">
<view class="navigator" @click="zhaopin">
<image src="../../static/helppeople.png"></image>
<text>帮工招聘求职</text>
</view>
<view class="navigator">
<image src="../../static/mianturn.png"></image>
<text>面坊求购转让</text>
</view>
<view class="navigator">
<image src="../../static/friend.png"></image>
<text>征婚交友</text>
</view>
<view class="navigator">
<image src="../../static/zhonglogo.png"></image>
<text>中面集团</text>
</view>
</view>
<!-- 最新发布 -->
<view class="new-release-wrap">
<!-- title -->
<view class="new-release-title">最新发布</view>
<!-- content -->
<view class="new-release-content" v-for="(item,index) in luntanlist" :key="index">
<!-- 头像,名称,等级 -->
<view class="userinfo-wrap" @click="usercenter">
<image src="../../static/userpic.png"></image>
<text class="title">{{item.nickname}}</text>
<view class="VIP">
<image src="../../static/huiyuan.png"></image>
VIP5
</view>
</view>
<!-- type -->
<view class="type-wrap">
帮工招聘求职
<text>帮工</text>
<text>配送员</text>
<text>销售员</text>
</view>
<!-- content -->
<view class="release-text">
<view class="release-text-title">
帖子标题帖子标题帖子标题帖子标题帖子帖子
</view>
<view class="release-text-content">
帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容...
</view>
</view>
<!-- 点赞, 人数 -->
<view class="thumbs-number">
<view class="thumbs">
<image src="../../static/tienozan.png"></image>
399
</view>
<view class="number">
<image src="../../static/userpeopel.png"></image>
399
</view>
</view>
</view>
</view>
</view>
<!-- 发布 -->
<view class="release-news" v-if="publish">
<view class="release-content">
<view class="nav-wrap publishnav">
<view class="navigator" @click="zhaopin">
<image src="../../static/helppeople.png"></image>
<text>帮工招聘求职</text>
</view>
<view class="navigator">
<image src="../../static/mianturn.png"></image>
<text>面坊求购转让</text>
</view>
<view class="navigator">
<image src="../../static/friend.png"></image>
<text>征婚交友</text>
</view>
<view class="navigator">
<image src="../../static/zhonglogo.png"></image>
<text>中面集团</text>
</view>
</view>
<!-- close -->
<view class="close" @click="hidepublish">
<image src="../../static/publishchahao.png" />
</view>
</view>
</view>
<!-- 底部导航 -->
<view class="teacherfooter">
<view class="teacherfootitem" @click="footerseljump" :data-id="1">
<view class="teacherfootitemtop shou">
<image :src="footersel==1?'../../static/tieziactive.png':'../../static/tiezi.png'"></image>
</view>
<view class="teacherfootname " :class="footersel==1?'activename':''">帖子</view>
</view>
<view class="teacherfootitem" @click="footerseljump" :data-id="2">
<view class="teacherfootitemtop shou">
<image :src="footersel==2?'../../static/fabu.png':'../../static/fabu.png'"></image>
</view>
<view class="teacherfootname" :class="footersel==2?'activename':''">发布</view>
</view>
<view class="teacherfootitem" @click="footerseljump" :data-id="3">
<view class="teacherfootitemtop shou">
<image :src="footersel==3?'../../static/examineactive.png':'../../static/examine.png'"></image>
</view>
<view class="teacherfootname" :class="footersel==3?'activename':''">考试</view>
</view>
</view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
publish: false,
footersel: 1,
province_id: '',
type: 1,
page: 1,
provincelist: [],
provincename:'',
index:0,
luntanlist:[],
keyword:''
}
},
onLoad() {
// 获取省份列表
this.getprovincelist();
},
methods: {
hidepublish() {
this.publish = false
},
// 获取省份列表
getprovincelist() {
let that = this;
var url = 'forum/get_province';
var params = {
is_forum_hot: ''
}
console.log('7766554', params)
app.post(url, params).then((res) => {
console.log(res);
that.provincelist = res.data.data;
this.provincename=res.data.data[0].name;
that.province_id=res.data.data[0].id;
// 获取论坛列表
this.getluntanlist()
}).catch((err) => {
})
},
bindproChange(e){
this.index = e.target.value;
this.provincename=this.provincelist[e.target.value].name;
this.province_id=this.provincelist[e.target.value].id;
// 获取论坛列表
this.getluntanlist();
},
// 获取论坛列表
getluntanlist() {
let that = this;
var url = 'forum/get_forum';
var params = {
keyword:that.keyword,
province_id: that.province_id,
type: that.type,
page: that.page,
pageNum: 10
}
console.log('参数',params)
app.post(url, params).then((res) => {
console.log(res);
that.luntanlist=that.luntanlist.concat(res.data.data);
console.log('9999',this.luntanlist)
}).catch((err) => {
console.log(err)
})
},
// 返回首页
homeback() {
console.log(43898934894)
uni.navigateTo({
url: '/pages/homepage/homepage'
})
},
// 论坛列表
zhaopin() {
uni.navigateTo({
url: '../luntan/luntanlist'
})
},
// 底部导航跳转
footerseljump(e) {
console.log(e)
let id = e.currentTarget.dataset.id;
console.log(id)
if (id == 1) {
uni.navigateTo({
url: '/pages/luntan/luntan'
})
} else if (id == 3) {
uni.navigateTo({
url: "/pages/luntan/examine"
})
} else {
this.publish = true
}
}
}
}
</script>
<style>
page {
background: #F9F9F9;
}
.proselect{
width:120rpx;
height:60rpx;
border:2rpx solid rgba(238,238,238,1);
color:#fff;
font-size:24rpx;
border-radius: 40rpx;
padding: 0 10rpx;
box-sizing: border-box;
margin-left:16rpx;
}
.proname{
width:90rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-right:5rpx;
}
.down-ico{
width:16rpx;
height:16rpx;
font-size: 0;
}
.publishnav {
padding: 0 !important;
}
.homeimg {
width: 88rpx;
height: 88rpx;
font-size: 0;
}
.search-input {
width: 470rpx !important;
}
/* 搜素 */
.search-wrap {
width: 750rpx;
padding: 14rpx 0;
box-sizing: border-box;
background: #C29445;
position: fixed;
top: var(--status-bar-height);
left: 0;
}
.nav-wrap {
background: #fff;
display: flex;
justify-content: space-between;
padding: 32rpx 64rpx;
margin-bottom: 16rpx;
margin-top: calc(var(--status-bar-height) + 100rpx);;
}
.nav-wrap .navigator {
text-align: center;
}
.nav-wrap .navigator image {
width: 88rpx;
height: 88rpx;
margin: auto;
}
.nav-wrap .navigator text {
width: 104rpx;
display: block;
color: #3D454C;
font-size: 26rpx;
}
.new-release-wrap .new-release-title {
height: 84rpx;
line-height: 84rpx;
padding-left: 32rpx;
position: relative;
background: #fff;
font-size: 32rpx;
color: #061220;
border-bottom: 1px solid #E3E2E1;
}
.new-release-wrap .new-release-title:after {
content: "";
position: absolute;
top: 20rpx;
left: 0;
height: 44rpx;
width: 8rpx;
background: var(--themeColor);
border-top-right-radius: 6rpx;
border-bottom-right-radius: 6rpx;
}
.release-news {
position: fixed;
width: 750rpx;
height: 100%;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 10;
}
.release-news .release-content {
position: absolute;
width: 750rpx;
bottom: 0;
left: 0;
background: #fff;
z-index: 1000;
padding: 60rpx;
box-sizing: border-box;
border-top-left-radius: 40rpx;
border-top-right-radius: 40rpx;
}
.release-news .meun-lists {
display: flex;
justify-content: space-between;
}
.release-news .meun-lists navigator {
text-align: center;
}
.release-news .meun-lists navigator image {
width: 88rpx;
height: 88rpx;
margin: auto;
}
.release-news .meun-lists navigator text {
width: 104rpx;
display: block;
color: #3D454C;
font-size: 26rpx;
}
.release-news .close {
display: flex;
justify-content: center;
margin-top: 38rpx;
}
.release-news .close image {
width: 60rpx;
height: 60rpx;
}
.search-wrap .navigator:nth-child(3){
/* font-size: 20rpx; */
}
/* .proname{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} */
</style>