preferential.vue
947 Bytes
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
<template>
<div>
<titleBox :titles="titles"></titleBox>
<div class="item_box">
<div class="left">
<img src="/static/img/pic_1.jpg" alt="网家家"/>
<img src="/static/img/pic_1.jpg" alt="网家家"/>
<img src="/static/img/pic_1.jpg" alt="网家家"/>
</div>
<div class="right">
<img class="first" src="/static/img/pic_1.jpg" alt="网家家"/>
<img class="item" src="/static/img/pic_1.jpg" alt="网家家"/>
</div>
</div>
</div>
</template>
<script>
import titleBox from "@/components/titleBox/titleBox";
export default {
name: 'discountZone',
data () {
return {
titles:null
}
},
components:{
titleBox
},
created(){
},
methods: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import "preferential";
</style>