mall.vue
7.87 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
<template>
<div class="mall-box">
<!-- 下拉刷新 -->
<!-- <van-pull-refresh v-model="isLoading" pulling-text="下拉刷新..." loosing-text="释放刷新" loading-text="加载中..." success-text="刷新成功" @refresh="onRefresh"> -->
<!--轮播-->
<swiper v-if="banner"
:swipers="banner"
:options="{
showIndicators: true
}">
</swiper>
<!--导航-->
<horiz-list class="components-box" v-if="navs && navs.length" @jump="jump"
:lists="navs"
com="4">
</horiz-list>
<!-- 遍历ads,输出列表数据 -->
<div class="ads-box">
<div class="ads" v-for="(item, index) in ads" :key="index">
<!--优惠专区-->
<discountZone v-if="item.style == '1'" @more="toDetail" @toDetail="toDetail"
:discountZoneInfo="item">
</discountZone>
<!--天天特惠-->
<preferential v-if="item.style == '2'" @more="toDetail" @toDetail="toDetail"
:preferentialInfo="item">
</preferential>
<!--视听专区-->
<videoArea v-if="item.style == '13'" @more="toDetail" @toDetail="toDetail"
:videoAreaInfo="item">
</videoArea>
<!-- style_7组件 -->
<style-7 v-if="item.style == '7'" @more="toDetail" @bannerJump="toDetail" @jump=jump @addCart=addCart
:styles="item">
</style-7>
</div>
<tabBox v-if="tabbar" :tabbar="tabbar" :tabbarBackgroud="tabbarBackgroud"></tabBox>
</div>
<!-- </van-pull-refresh> -->
</div>
</template>
<script>
// 引入组件
import { Toast, Indicator } from "mint-ui";
import swiper from "@/components/swiper/swiper";
import swiperItem from "@/components/swiperItem/swiperItem";
import discountZone from "@/components/discountZone/discountZone";
import preferential from "@/components/preferential/preferential";
import videoArea from "@/components/videoArea/videoArea";
import style7 from "@/components/style_7/style_7";
import horizList from "@/components/horizList/horizList";
import tabBox from "@/components/tabBox/tabBox";
export default {
name: 'mall',
data() {
return {
title: "", // 标题
isLoading: false, // 下拉刷新控制
banner:null, // banner
navs: null, // 导航
ads: null, // 列表
tabbar:null, // tabbar嵌套组件
tabbarBackgroud:null // 整体tabbar背景
}
},
components:{
swiper,
swiperItem,
discountZone,
preferential,
videoArea,
style7,
horizList,
tabBox
},
created() {
// 获取优选库精选活动
this.activityAd();
},
methods: {
// 下拉刷新
// onRefresh() {
// // 下拉刷新中
// this.$set(this, "isLoading", true);
// // 获取优选库精选活动
// this.activityAd();
// },
/**
* 获取优选库精选活动
*/
activityAd() {
// 加载中提示
Indicator.open("加载中...");
// 获取证书请求接口
this.http("/Api/" + this.getApiVersion().index + "/activityAd", {
id: this.$route.query.id
}, this.activityAdCallback, {
method: "post"
}
);
},
/**
* 获取优选库精选活动回调
* @param {object} res [服务器返回数据]
* @param {object} ext [扩展参数]
*/
activityAdCallback(res, ext) {
// 加载完成
Indicator.close();
// 下拉刷新结束
this.$set(this, "isLoading", false);
// 返回处理
if (res.code == 200) {
// 解构数据
let { data: datas } = res;
/* 获取优选库精选活动数据 开始 */
// 设置标题
this.$set(this, "title", datas.title);
// 设置banner数据
if (datas.banner && datas.banner.length) {
this.$set(this, "banner", datas.banner);
}
// 设置navs数据
if (datas.navs && datas.navs.length) {
this.$set(this, "navs", datas.navs);
}
// 设置ads数据
if (datas.ads && datas.ads.length) {
this.$set(this, "ads", datas.ads);
}
// 设置tabbar数据
if (datas.tabbar && datas.tabbar.length) {
this.$set(this, "tabbar", datas.tabbar);
}
// 设置tabbarBackgroud数据
if (datas.color && datas.color.length) {
this.$set(this, "tabbarBackgroud", datas.color);
}
/* 获取优选库精选活动数据 结束 */
} else if (res.code == 400) {
// 获取优选库精选活动失败
Toast(res.message);
} else {
// 获取优选库精选活动失败
Toast("获取优选库精选活动失败");
}
},
/**
* 调用通用跳转
* @param {object} item [通用跳转对象]
*/
toDetail(item) {
// 判断是否有通用跳转函数
if (typeof this.$parent.gotoDetail === "function") {
// 调用通用跳转
this.$parent.gotoDetail(item);
}
},
/**
* style7跳转
* @param {object} item [数据对象]
*/
jump(item) {
// 判断并调用通用跳转
if (typeof this.$parent.gotoDetail === "function") {
// 构造跳转详情页参数
let options = {
type: "2",
to: item.id,
shop_type: item.shop_type
}
this.$parent.gotoDetail(options);
}
},
/**
* 加入购物车
* @param {object} item [数据对象]
*/
addCart(item) {
// 通用跳转
this.jump(item);
}
},
head: {
title () {
return {
inner: this.title
}
}
},
watch: {
// 设置页面标题
title(newVal) {
if (this.$store.state.browser.toLowerCase() == "qq" && this.$store.state.deviceType.toLowerCase() == "iphone") {
this.$iFrame.insertIFrame(newVal);
} else {
this.$emit("updateHead");
}
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import "mall";
</style>