brand-list.vue
2.03 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
<template>
<div class="brand-list-box">
<div v-for="item in brandList" class="per-brand-box">
<div class="index"><a href="#{{item.index}}" name="{{item.index}}">{{item.index}}</a></div>
<div class="brand-big-box clearfix">
<div class="brand-box" v-for="brand in item.brands">
<a href="{{brand.link}}">
<div class="brand-logo">
<img v-lazy="brand.logo" alt="{{brand.name}}">
</div>
<span class="brand-name">{{brand.name}}</span>
</a>
</div>
</div>
</div>
</div>
</template>
<style>
.brand-list-box {
width: 100%;
height: 600px;
.brand-big-box {
width: 100%;
}
.brand-box {
width: 25%;
height: 175px;
float: left;
overflow: hidden;
.brand-logo {
height: 150px;
}
.brand-name {
white-space: nowrap;
color: #d0d0d0;
}
}
}
</style>
<script>
const $ = require('yoho-jquery');
const tip = require('common/tip');
module.exports = {
props: ['channel'],
data() {
return {
brandList: []
};
},
watch: {
channel() {
this.getBrandList();
}
},
methods: {
getBrandList() {
let data = {
channel: this.channel
};
let self = this;
$.ajax({
url: '/get-brand-list',
data: data
}).then(result => {
self.$set('brandList', result.brandList);
}).fail(() => {
tip('网络错误');
});
}
},
created() {
this.getBrandList();
}
};
</script>