coupon.vue
1.58 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
<template>
<div class="coupon-container">
<NavTitle :more="more">
<template slot="title">最近10张优惠券</template>
</NavTitle>
</div>
</template>
<script>
import NavTitle from './nav-title';
import homeModel from '../../../models/home';
export default {
name: 'coupon',
data() {
return {
more: 'http://www.baidu.com'
};
},
mounted() {
},
methods: {
},
components: {
NavTitle
}
}
</script>
<style lang="scss" scoped>
.exchange-container {
.original-order-code {
float: left;
}
.order-code {
float: right;
}
.lg {
float: left;
}
.goods-info {
height: 66px;
display: flex;
img {
width: 56px;
height: 66px;
}
.right {
flex: 1;
margin-left: 10px;
}
.goods-name {
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.number {
span {
width: 50%;
text-align: left;
float: left;
}
}
.remark {
width: 100%;
}
}
.user-info {
height: auto;
overflow: hidden;
span {
width: 50%;
float: left;
line-height: 30px;
}
.address {
width: 100%;
}
}
}
</style>