-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
158 lines (135 loc) · 4.03 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
<title>Vant CDN Demo</title>
<!-- 引入样式文件 -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/index.css"> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/index.css">
<!-- 自定义样式 -->
<style>
body {
color: #333;
background-color: #f8f8f8;
}
.goods {
padding-bottom: 50px;
}
.goods-swipe img {
width: 100%;
display: block;
}
.goods-title {
font-size: 16px;
}
.goods-price {
color: #f44;
}
.goods-express {
font-size: 12px;
padding: 5px 15px;
}
.goods-cell-group {
margin: 15px 0;
}
.goods-tag {
margin-left: 5px;
}
</style>
</head>
<body>
<div id="app">
<!-- 模板 -->
<div class="goods">
<van-swipe class="goods-swipe" :autoplay="3000">
<van-swipe-item v-for="thumb in goods.thumb" :key="thumb">
<img :src="thumb" >
</van-swipe-item>
</van-swipe>
<van-cell-group>
<van-cell>
<div class="goods-title">{{ goods.title }}</div>
<div class="goods-price">{{ formatPrice(goods.price) }}</div>
</van-cell>
<van-cell class="goods-express">
<van-col span="10">运费:{{ goods.express }}</van-col>
<van-col span="14">剩余:{{ goods.remain }}</van-col>
</van-cell>
</van-cell-group>
<van-cell-group class="goods-cell-group">
<van-cell value="进入店铺" icon="shop-o" is-link @click="enterShop">
<template slot="title">
<span class="van-cell-text">有赞的店</span>
<van-tag class="goods-tag" type="danger">官方</van-tag>
</template>
</van-cell>
<van-cell title="查看商品详情" is-link @click="showGoodsDetail" />
</van-cell-group>
<van-goods-action>
<van-goods-action-icon icon="chat-o" @click="showChat">
客服
</van-goods-action-icon>
<van-goods-action-icon icon="cart-o" @click="showCart">
购物车
</van-goods-action-icon>
<van-goods-action-button type="warning" @click="addCart">
加入购物车
</van-goods-action-button>
<van-goods-action-button type="danger" @click="buy">
立即购买
</van-goods-action-button>
</van-goods-action>
</div>
</div>
<!-- 引入 Vue 和 Vant 的 JS 文件 -->
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script> -->
<script src="./assets/vue.min.js.ts"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/vant.min.js"></script> -->
<script src="./assets/vant.min.js.ts"></script>
<script>
// 初始化 Vue 实例
new Vue({
el: '#app',
data() {
return {
goods: {
title: '美国伽力果(约680g/3个)',
price: 2680,
express: '免运费',
remain: 19,
thumb: [
'https://img.yzcdn.cn/public_files/2017/10/24/e5a5a02309a41f9f5def56684808d9ae.jpeg',
'https://img.yzcdn.cn/public_files/2017/10/24/1791ba14088f9c2be8c610d0a6cc0f93.jpeg'
]
}
};
},
methods: {
formatPrice() {
return '¥' + (this.goods.price / 100).toFixed(2);
},
enterShop() {
vant.Toast('进入店铺');
},
showGoodsDetail() {
vant.Toast('查看商品详情');
},
showChat() {
vant.Toast('进入客服页面');
},
showCart() {
vant.Toast('进入购物车页面');
},
addCart() {
vant.Toast('加入购物车');
},
buy() {
vant.Toast('立即购买');
}
}
});
</script>
</body>
</html>