sucaibao.vue
6.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
<template>
<div class="containerbox">
<!-- 搜索 -->
<div class="wordheadtop">
<div class="flextwo sharetopkk" @click="back">
<div class="leftrow leftrowkimg">
<img src="../../../assets/leftrow.png" alt />
</div>
<div class="sharemiddle">素材</div>
<div class="sharebtn">
<!-- <img src="../../../assets/sharebtn.png" alt /> -->
</div>
</div>
<div class="searchhead searchheadkkk">
<div class="searchbox flexone">
<div class="searchimg">
<img src="../../../assets/search.png" alt />
</div>
<input
type="text"
placeholder="搜索你想要的素材"
class="searchtext"
@focus="enterword"
@keyup.enter="selsectword"
/>
</div>
</div>
<div class="coursenav flexone" v-if="showkeyword == false">
<div
class="coursenavleft"
:class="selnav == 0 ? 'selactive' : ''"
:data-id="0"
@click="selectnav"
>视频素材</div>
<div
class="coursenavleft"
:class="selnav == 1 ? 'selactive' : ''"
:data-id="1"
@click="selectnav"
>图片素材</div>
<div
class="coursenavleft"
:class="selnav == 2 ? 'selactive' : ''"
:data-id="2"
@click="selectnav"
>文字素材</div>
</div>
</div>
<div class="keywordk flexone" v-if="showkeyword" @click="hidekey">
<div
class="keyworditem"
v-for="(item, index) in sort"
:key="index"
@click="selname(item.name)"
>{{ item.name }}</div>
</div>
<div v-if="showkeyword == false">
<div class="nodata" v-if="sucailist.length==0" style="margin-top:5.8rem">暂无数据</div>
<div v-else>
<van-list
class="sucaiboxpage flexone"
v-model="loading"
:finished="finished"
finished-text="没有更多了"
@load="onLoad"
>
<div
class="sucaiboxitempage"
@click="gokind(item,index)"
v-for="(item,index) in sucailist"
:key="index"
>
<div class="sucaiimg">
<img :src="item.icon" alt />
</div>
<div class="sucainame">{{item.name}}</div>
</div>
</van-list>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
selnav: 0,
keyword: '',
showkeyword: false,
type: 1,
finished: "",
loading: false,
page: 1,
this_page: "",
total_page: "",
sucailist: [],
sort: []
};
},
created() {
document.title = "唐元集公众号";
this.getsucai();
this.getlabellist();
},
methods: {
// 选择标签名字
selname(name) {
this.keyword = name;
this.page = 1;
this.sucailist = [];
this.getsucai();
},
entertext(e) {
this.keyword = e.target.value;
console.log(this.keyword);
},
selsectword(e) {
console.log(438948998)
this.page = 1;
this.sucailist = [];
this.keyword = e.target.value;
this.showkeyword = false
this.getsucai();
},
back() {
this.$router.go(-1);
},
hidekey() {
this.showkeyword = false;
},
// 去列表页面
gokind(item, index) {
if (this.selnav == 0) {
this.$router.push({
path: "/coursesucai",
query: {
sort_id: item.id,
sort_name: item.name
}
});
} else if (this.selnav == 1) {
this.$router.push({
path: "/picsucai",
query: {
sort_id: item.id,
sort_name: item.name
}
});
} else if (this.selnav == 2) {
this.$router.push({
path: "/wenzisucai",
query: {
sort_id: item.id,
sort_name: item.name
}
});
}
},
// 素材详情
videodetail(id, item) {
if (id == 1) {
this.$router.push({
path: "/videosucaidetail",
query: {
id: item.id
}
});
} else if (id == 2) {
this.$router.push({
path: "/picsucaidetail",
query: {
id: item.id
}
});
} else if (id == 3) {
this.$router.push({
path: "/wenansucaidetail",
query: {
id: item.id
}
});
}
},
// 获取标签列表
getlabellist() {
let that = this;
var url = "/api/user/tag";
let param = {};
that.$axios
.post(url, param)
.then(function (res) {
console.log(res);
that.sort = res.data.sort;
})
.catch(function (err) {
console.log(err);
});
},
// 视频上拉加载
onLoad() {
let that = this;
// 异步更新数据
// setTimeout 仅做示例,真实场景中一般为 ajax 请求
setTimeout(() => {
console.log(3434);
let newpage = that.page;
newpage++;
that.page = newpage;
console.log(that.videopage);
that.getsucai();
// 加载状态结束
this.loading = false;
// 数据全部加载完成
if (that.this_page == that.total_page) {
this.finished = true;
}
}, 1000);
},
getsucai() {
let that = this;
var url = "/api/user/material_sort";
let param = {
keyword: that.keyword,
type: that.type,
page: that.page
};
that.$axios
.post(url, param)
.then(function (res) {
console.log(res);
that.sucailist = that.sucailist.concat(res.data.sort);
console.log(that.sucailist)
})
.catch(function (err) {
console.log(err);
});
},
selectnav(e) {
this.selnav = e.currentTarget.dataset.id;
this.type = Number(this.selnav) + 1;
console.log(this.type);
this.page = 1;
this.sucailist = [];
this.getsucai();
},
enterword() {
console.log(48834998);
this.showkeyword = true;
}
}
};
</script>
<style scoped>
@import "../../../style/usercenter.css";
.sucaicourse {
margin-top: 2rem;
}
.courseboxitem {
background: #fff;
}
.searchhead {
padding: 0.2rem 0.32rem 0;
}
.coursenav {
margin-top: 1rem;
}
.keywordk {
padding: 0.32rem;
box-sizing: border-box;
margin-top: 0.8rem;
background: #fff;
}
.searchheadkkk {
top: 0.8rem;
}
</style>