moreDynamic.vue
8.59 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
<template>
<div class="fans-shop-message-list-box">
<!-- nav -->
<back-box :style="'padding-top: ' + ($parent.top.value) + 'px'" @back="back"
:backs="backs">
</back-box>
<!-- 下拉刷新 -->
<!-- <van-pull-refresh v-model="isLoading" pulling-text="下拉刷新..." loosing-text="释放刷新" loading-text="加载中..." success-text="刷新成功" @refresh="onRefresh"> -->
<!-- 已关注达人列表 -->
<div class="item_box">
<div
infinite-scroll-immediate-check="true"
v-infinite-scroll="getNewDynamicList"
infinite-scroll-disabled="loading"
:infinite-scroll-distance="50">
<daren-list-box class="daren-list" @userJump="userJump" @jump="jump" @goodsJump="goodsJump" @goodsPrimary="goodsPrimary"
:lists="recommendedDarenMore">
</daren-list-box>
</div>
</div>
<!-- </van-pull-refresh> -->
</div>
</template>
<script>
import { Toast, Indicator } from "mint-ui";
import darenListBox from "@/components/darenListBox/darenListBox";
import backBox from "@/components/backBox/backBox";
export default {
name: 'recommendedDaren',
data () {
return {
backs: { // nav导航条数据
title: "已关注达人动态",
funcs: {
back: {
icon: "static/img/icon_back.png"
}
}
},
loading: false, // 加载
pages:0, // 分页
recommendedDarenMore:null
}
},
components:{
darenListBox,
backBox
},
created(){
// 设置标题
this.$set(this, "title", "已关注达人动态");
document.title = "已关注达人动态"
// 已关注达人更多动态
this.getNewDynamicList();
},
methods: {
/**
* 达人最新动态
*/
getNewDynamicList() {
this.loading = true;
this.pages++
// 加载中提示
Indicator.open("加载中...");
// 获取证书请求接口
this.http("/Api/" + this.getApiVersion().dynamic + "/getNewDynamicList", {
uid: this.getStore("uid") || 0,
page: this.pages,
type: 2
}, this.getNewDynamicListCallback, {
method: "post"
}
);
},
/**
* 达人最新动态回调
* @param {object} res [服务器返回数据]
* @param {object} ext [扩展参数]
*/
getNewDynamicListCallback(res, ext) {
// 加载完成
Indicator.close();
// 返回处理
if (res.code == 200) {
// 解构数据
let { data: datas } = res;
// 设置shopFnsDynamic达人动态数据
if (datas.list && datas.list.length) {
// 隐藏加载圈
this.loading = false;
if(this.pages>1){
this.$set(this, "recommendedDarenMore",[...this.recommendedDarenMore,...datas.list]);
}else {
this.$set(this, "recommendedDarenMore",datas.list);
}
// 将视频地址加入到图片数组中
if(this.recommendedDarenMore&&this.recommendedDarenMore.length>0) {
for (let item of this.recommendedDarenMore) {
// 将视频图片加入图片数组,方便循环输出
if (item.video_img) {
this.$set(item, "img", [...[item.video_img], ...item.img]);
}
}
}
}
/* 获取达人动态数据 结束 */
} else if (res.code == 400) {
// 获取达人动态失败
Toast(res.message);
} else {
// 获取优选库精选活动失败
Toast("获取达人动态失败");
}
},
/**
* 用户头像/昵称,点击跳转
* @param {object} item [数据对象]
*/
userJump(item) {
// 判断并调用通用跳转
if (typeof this.$parent.gotoDetail === "function") {
// 临时,设置跳转达人个人主页用户数据
Object.assign(item, {
type: "5",
to: (this.mode == "prod") ?
"https://managemall.cnlive.com/html/preferred-library/1/#/pages/darenProfile/darenProfile?from=redirect" + "&id=" + (item.type==2?item.uid:item.id) + "&uid=" + this.getStore("uid")
: "https://wjjshop.cnlive.com/html/preferred-library/1/#/pages/darenProfile/darenProfile?from=redirect"+ "&id=" + (item.type==2?item.uid:item.id) + "&uid=" + this.getStore("uid"),
shop_type: ""
});
console.log("userJump", item);
this.$parent.gotoDetail(item);
}
},
/**
* 跳转达人动态详情
* @param {object} item [数据对象]
*/
jump(item) {
// 判断并调用通用跳转
if (typeof this.$parent.gotoDetail === "function") {
// 临时,设置跳转参数,跳转达人动态详情页面
Object.assign(item, {
type: "5",
to: (this.mode == "prod") ?
"https://managemall.cnlive.com/html/preferred-library/1/#/pages/darenProfileDynamicDetail/darenProfileDynamicDetail?from=redirect" + "&id=" + item.id + "&uid=" + this.getStore("uid")
: "https://wjjshop.cnlive.com/html/preferred-library/1/#/pages/darenProfileDynamicDetail/darenProfileDynamicDetail?from=redirect"+ "&id=" + item.id + "&uid=" + this.getStore("uid"),
shop_type: ""
});
console.log("jump", item);
this.$parent.gotoDetail(item);
}
},
/**
* 点击跳转商品
* @param {object} item [数据对象]
*/
goodsJump(item) {
// 判断并调用通用跳转
if (typeof this.$parent.gotoDetail === "function") {
// 临时,设置跳转商品详情参数
Object.assign(item, {
type: "2",
to: item.id,
shop_type: "1"
});
console.log("goodsJump", item);
this.$parent.gotoDetail(item);
}
},
/**
* 点击跳转商品购买
* @param {object} item [数据对象]
*/
goodsPrimary(item) {
// 判断并调用通用跳转
if (typeof this.$parent.gotoDetail === "function") {
// 临时,设置跳转商品详情参数
Object.assign(item, {
type: "2",
to: "9525393",
shop_type: "1"
});
console.log("goodsPrimary", item);
this.$parent.gotoDetail(item);
}
},
/**
* 后退
*/
back() {
// 判断是否有后退函数
if (typeof this.$parent.back === "function") {
// 调用后退
this.$parent.back();
} else {
// 后退
window.history.go(-1);
}
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import "moreDynamic";
</style>