index.vue
21.1 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-04 17:15:46
* @FilePath: /jgdl/src/pages/productDetail/index.vue
* @Description: 商品详情页
-->
<template>
<view class="product-detail-page">
<!-- 图片轮播 -->
<view class="image-carousel">
<nut-swiper
:init-page="currentImageIndex"
:pagination-visible="true"
pagination-color="#426543"
auto-play="3000"
@change="onSwiperChange"
>
<nut-swiper-item v-for="(image, index) in product.images" :key="index" style="height: 400rpx">
<image
:src="image"
:alt="product.name"
mode="aspectFill"
class="w-full h-full object-cover"
@error="onImageError"
@load="onImageLoad"
/>
</nut-swiper-item>
</nut-swiper>
</view>
<!-- 商品信息 -->
<view class="product-info bg-white p-4">
<text class="text-xl font-bold block mb-3">{{ product.name }}</text>
<view class="flex items-center justify-between">
<view class="flex items-center">
<text class="text-2xl text-orange-500 font-bold">
¥{{ product.price.toLocaleString() }}
</text>
<view class="ml-2 text-xs px-2 py-1 bg-orange-100 text-orange-600 rounded">
低于市场价{{ product.discountPercent }}%
</view>
</view>
<view class="flex space-x-4">
<button
open-type="share"
class="flex flex-col items-center"
>
<view style="height: 2.55rem;">
<Share size="18" color="#666" style="margin-bottom: 0.05rem;"/>
</view>
<text class="text-xs text-gray-500" style="margin-top: 0.35rem;">分享</text>
</button>
<view @tap="toggleFavorite" class="flex flex-col items-center ml-3">
<view class="p-2">
<HeartFill v-if="isFavorite" size="20" color="#ef4444" />
<Heart1 v-else size="20" color="#666" />
</view>
<text class="text-xs text-gray-500 mt-1">{{ isFavorite ? '已收藏' : '收藏' }}</text>
</view>
</view>
</view>
</view>
<!-- 基本信息 -->
<view class="basic-info bg-white mt-2 p-4">
<text class="text-lg font-medium mb-3 block">基本信息</text>
<view class="grid grid-cols-2 gap-4">
<view class="flex items-center">
<view class="w-8 h-8 bg-orange-100 rounded-full flex items-center justify-center mr-4">
<text class="text-orange-500">📅</text>
</view>
<view>
<text class="text-xs text-gray-500 block">出厂年份</text>
<text class="text-sm block">{{ product.year }}</text>
</view>
</view>
<view class="flex items-center">
<view class="w-8 h-8 bg-orange-100 rounded-full flex items-center justify-center mr-4">
<text class="text-orange-500">🔋</text>
</view>
<view>
<text class="text-xs text-gray-500 block">续航里程</text>
<text class="text-sm block">{{ product.range }}</text>
</view>
</view>
<view class="flex items-center">
<view class="w-8 h-8 bg-orange-100 rounded-full flex items-center justify-center mr-4">
<text class="text-orange-500">🛣️</text>
</view>
<view>
<text class="text-xs text-gray-500 block">行驶里程</text>
<text class="text-sm block">{{ product.mileage }}</text>
</view>
</view>
<view class="flex items-center">
<view class="w-8 h-8 bg-orange-100 rounded-full flex items-center justify-center mr-4">
<text class="text-orange-500">⚡</text>
</view>
<view>
<text class="text-xs text-gray-500 block">最高时速</text>
<text class="text-sm block">{{ product.maxSpeed }}</text>
</view>
</view>
</view>
</view>
<!-- 车辆评估 -->
<view class="vehicle-condition bg-white mt-2 p-4">
<text class="text-lg font-medium mb-3 block">车辆评估</text>
<view class="space-y-3">
<view class="flex justify-between items-center">
<text>车辆成色</text>
<view class="flex">
<text v-for="star in 5" :key="star" class="text-orange-400">★</text>
</view>
</view>
<view class="flex justify-between items-center">
<text>刹车磨损度</text>
<view class="flex">
<text
v-for="star in 5"
:key="star"
:class="star <= Math.round(product.brakeCondition) ? 'text-orange-400' : 'text-gray-300'"
>
★
</text>
</view>
</view>
<view class="flex justify-between items-center">
<text>轮胎磨损度</text>
<view class="flex">
<text
v-for="star in 5"
:key="star"
:class="star <= product.tireCondition ? 'text-orange-400' : 'text-gray-300'"
>
★
</text>
</view>
</view>
</view>
</view>
<!-- 车辆描述 -->
<view class="vehicle-description bg-white mt-2 p-4">
<text class="text-lg font-medium mb-3 block">车辆描述</text>
<rich-text :nodes="product.richDescription" class="rich-content"></rich-text>
<image
:src="product.images[1]"
alt="车辆细节"
mode="aspectFill"
class="w-full h-40 object-cover rounded-lg mt-3"
@error="onImageError"
@load="onImageLoad"
/>
</view>
<!-- 卖家信息 -->
<view class="seller-info bg-white mt-2 p-4 mb-2">
<text class="text-lg font-medium mb-3 block">卖家信息</text>
<view class="flex items-center justify-between">
<view class="flex items-center">
<image :src="product.seller.avatar || defaultAvatar" :alt="product.seller.name" mode="aspectFill" class="w-10 h-10 rounded-full object-cover mr-3" />
<view>
<view class="flex items-center">
<text class="font-medium">{{ product.seller.name }}</text>
<view v-if="product.seller.verified" class="ml-1 text-xs text-blue-500 bg-blue-50 px-1 py-0.5 rounded">
已认证卖家
</view>
</view>
<text class="text-xs text-gray-500 block">{{ product.seller.school }}</text>
</view>
</view>
<view @tap="showWechatModal" class="text-green-500 flex items-center">
<nut-button type="success">
<template #icon>
<Message size="16" />
</template>
<text>加微信</text>
</nut-button>
<!-- <text>加微信</text>
<Right size="16" /> -->
</view>
</view>
</view>
<!-- 底部按钮 -->
<view class="bottom-actions">
<nut-row :gutter="10">
<nut-col :span="12">
<nut-button @click="handleContactSeller"
block
type="default"
shape="round"
style="border-color: #f97316; color: #f97316;"
>
联系卖家
</nut-button>
</nut-col>
<nut-col :span="12">
<nut-button
@click="handlePurchase"
block
type="primary"
shape="round"
color="#EB5305"
style="background-color: #f97316; border-color: #f97316;"
>
我想购买
</nut-button>
</nut-col>
</nut-row>
</view>
<!-- 微信号弹框 -->
<nut-dialog
v-model:visible="showWechat"
title="卖家微信号"
:close-on-click-overlay="true"
:no-footer="true"
>
<view class="text-center p-4">
<text class="text-lg font-medium block mb-2">{{ product.seller.wechat }}</text>
<!-- <text class="text-sm text-gray-500 block mb-4">长按复制微信号</text> -->
<nut-button
@click="copyWechat"
type="primary"
size="small"
style="background-color: #f97316; border-color: #f97316;"
>
复制微信号
</nut-button>
</view>
</nut-dialog>
<!-- 联系卖家弹框 -->
<nut-popup
v-model:visible="showContactModal"
position="bottom"
:style="{ height: '60%' }"
round
>
<view class="contact-modal p-4">
<view class="text-center mb-4">
<text class="text-lg font-medium">联系卖家</text>
</view>
<view class="seller-card bg-gray-50 rounded-lg p-3 mb-4">
<view class="flex items-center">
<image :src="product.seller.avatar || defaultAvatar" :alt="product.seller.name" mode="aspectFill" class="w-12 h-12 rounded-full object-cover mr-3" />
<view>
<text class="font-medium block">{{ product.seller.name }}</text>
<text class="text-sm text-gray-500 block">{{ product.seller.school }}</text>
</view>
</view>
</view>
<!-- 留言输入框 -->
<view class="message-input mb-4">
<nut-textarea
v-model="messageText"
placeholder="请输入您想对卖家说的话..."
:rows="4"
:max-length="200"
show-word-limit
class="w-full"
/>
</view>
<!-- 快捷标签 -->
<view class="quick-tags mb-4">
<text class="text-sm text-gray-600 block mb-2">快捷输入:</text>
<view class="flex flex-wrap gap-2">
<view
v-for="tag in quickTags"
:key="tag"
@click="addQuickTag(tag)"
class="quick-tag px-3 py-1 bg-orange-50 text-orange-600 rounded-full text-sm cursor-pointer"
>
{{ tag }}
</view>
</view>
</view>
<!-- 发送按钮 -->
<nut-button
@click="sendMessageToSeller"
block
type="primary"
shape="round"
style="background-color: #f97316; border-color: #f97316;"
:disabled="!messageText.trim()"
>
发送消息
</nut-button>
</view>
</nut-popup>
<!-- 支付组件 -->
<payCard :visible="show_pay" :data="payData" @close="onPayClose" />
</view>
</template>
<script setup>
import { ref } from 'vue'
import Taro from '@tarojs/taro'
import { Share, Heart1, HeartFill, Message } from '@nutui/icons-vue-taro'
import payCard from '@/components/payCard.vue'
import avatarImg from '@/assets/images/avatar.png'
// 默认头像
const defaultAvatar = 'https://cdn.ipadbiz.cn/mlaj/images/icon_1.jpeg'
// 分享功能
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
})
// 响应式数据
const currentImageIndex = ref(0)
const isFavorite = ref(false)
const showWechat = ref(false)
const showContactModal = ref(false)
const show_pay = ref(false)
const messageText = ref('')
const payData = ref({
id: '',
price: 0,
remain_time: 0
})
// 快捷标签数据
const quickTags = ref([
'你好,我对这辆车很感兴趣',
'请问车况怎么样?',
'可以面谈吗?',
'价格还能商量吗?',
'什么时候方便看车?',
'还有其他配件吗?'
])
// 备用图片数组
const fallbackImages = ref([
avatarImg,
avatarImg,
avatarImg,
avatarImg,
avatarImg
])
const imageLoadErrors = ref(new Set())
// 模拟商品数据
const product = ref({
id: '5',
name: '雅迪 豪华版',
price: 3200,
discountPercent: 8,
images: [
'https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60',
'https://images.unsplash.com/photo-1558981285-6f0c94958bb6?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60',
'https://images.unsplash.com/photo-1558981403-c5f9899a28bc?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60'
],
year: '2023年',
range: '60km',
mileage: '1200公里',
maxSpeed: '25km/h',
batteryHealth: 98,
brakeCondition: 4.5,
tireCondition: 4,
bodyCondition: 5,
description: '这辆雅迪豪华版电动车是我去年购买的,一直很爱惜。电池健康度保持在98%,行驶里程仅1200公里,车身几乎无划痕,配置齐全,包括原装充电器、车锁、后视镜等。因为毕业需要离开学校,所以忍痛出售,价格比市场价低8%,非常划算。',
richDescription: `
<div style="line-height: 1.6; color: #333;">
<p style="margin-bottom: 12px;">这辆<strong style="color: #f97316;">雅迪豪华版电动车</strong>是我去年购买的,一直很爱惜。</p>
<p style="margin-bottom: 12px;">🔋 电池健康度保持在<span style="color: #10b981; font-weight: bold;">98%</span></p>
<p style="margin-bottom: 12px;">🛣️ 行驶里程仅<span style="color: #3b82f6; font-weight: bold;">1200公里</span></p>
<p style="margin-bottom: 12px;">✨ 车身几乎无划痕,配置齐全</p>
<ul style="margin: 12px 0; padding-left: 20px;">
<li style="margin-bottom: 6px;">✅ 原装充电器</li>
<li style="margin-bottom: 6px;">✅ 车锁</li>
<li style="margin-bottom: 6px;">✅ 后视镜</li>
<li style="margin-bottom: 6px;">✅ 脚踏板</li>
</ul>
<p style="margin-bottom: 12px; background: #fef3c7; padding: 8px; border-radius: 6px;">💰 因为毕业需要离开学校,所以忍痛出售,价格比市场价低8%,非常划算!</p>
</div>
`,
seller: {
name: '李同学',
verified: true,
school: '上海理工大学-本部',
avatar: 'https://randomuser.me/api/portraits/men/32.jpg',
wechat: 'li_student_2023',
phone: '138****8888'
}
})
/**
* 轮播图切换事件
* @param {number} index - 当前图片索引
*/
const onSwiperChange = (index) => {
currentImageIndex.value = index
}
/**
* 切换收藏状态
*/
const toggleFavorite = () => {
isFavorite.value = !isFavorite.value
Taro.showToast({
title: isFavorite.value ? '已收藏' : '已取消收藏',
icon: 'none'
})
}
/**
* 显示微信号弹框
*/
const showWechatModal = () => {
showWechat.value = true
}
/**
* 复制微信号
*/
const copyWechat = () => {
Taro.setClipboardData({
data: product.value.seller.wechat,
success: () => {
Taro.showToast({
title: '微信号已复制',
icon: 'success'
})
showWechat.value = false
},
})
}
/**
* 联系卖家
*/
const handleContactSeller = () => {
showContactModal.value = true
}
/**
* 添加快捷标签到输入框
* @param {string} tag - 快捷标签文本
*/
const addQuickTag = (tag) => {
if (messageText.value.trim()) {
messageText.value += ' ' + tag
} else {
messageText.value = tag
}
}
/**
* 发送消息给卖家
*/
const sendMessageToSeller = () => {
if (!messageText.value.trim()) {
Taro.showToast({
title: '请输入留言内容',
icon: 'none'
})
return
}
Taro.showToast({
title: '消息发送成功',
icon: 'success'
})
// 清空输入框并关闭弹框
messageText.value = ''
showContactModal.value = false
// 这里可以调用API发送消息
// sendMessageAPI({
// sellerId: product.value.seller.id,
// message: messageText.value,
// productId: product.value.id
// })
}
/**
* 购买商品
*/
const handlePurchase = () => {
onPay({
id: product.value.id,
remain_time: 1800, // 30分钟
price: product.value.price
})
}
/**
* 发送订单支付信息到支付组件
* @param {Object} payInfo - 支付信息
* @param {string} payInfo.id - 订单ID
* @param {number} payInfo.remain_time - 剩余时间
* @param {number} payInfo.price - 价格
*/
const onPay = ({ id, remain_time, price }) => {
show_pay.value = true
payData.value.id = id
payData.value.price = price
payData.value.remain_time = remain_time
}
/**
* 关闭支付弹框
*/
const onPayClose = () => {
show_pay.value = false
}
/**
* 图片加载成功
*/
const onImageLoad = () => {
// 图片加载成功
}
/**
* 图片加载失败处理
*/
const onImageError = (e) => {
const target = e.target || e.currentTarget
const src = target.src
// 记录加载失败的图片
imageLoadErrors.value.add(src)
// 如果不是备用图片,则替换为备用图片
if (!src.includes('avatar.png')) {
const imageIndex = product.value.images.findIndex(img => img === src)
if (imageIndex !== -1 && fallbackImages.value[imageIndex]) {
// 替换为备用图片
product.value.images[imageIndex] = fallbackImages.value[imageIndex]
}
}
Taro.showToast({
title: '图片加载失败,已使用备用图片',
icon: 'none',
duration: 2000
})
}
</script>
<style lang="less">
.product-detail-page {
background-color: #f5f5f5;
min-height: 100vh;
padding-bottom: 120rpx;
}
.image-carousel {
.nut-swiper {
.nut-swiper-pagination {
bottom: 20rpx;
}
}
}
.space-x-3 > view:not(:first-child) {
margin-left: 0.75rem;
}
.space-x-6 > view:not(:first-child) {
margin-left: 1.5rem;
}
.space-y-3 > view:not(:first-child) {
margin-top: 0.75rem;
}
.grid {
display: grid;
}
.grid-cols-2 {
grid-template-columns: repeat(2, 1fr);
}
.gap-4 {
gap: 1rem;
}
.rich-content {
line-height: 1.6;
p {
margin-bottom: 12rpx;
}
ul {
margin: 12rpx 0;
padding-left: 20rpx;
li {
margin-bottom: 6rpx;
}
}
}
.contact-modal {
.seller-card {
background-color: #f9fafb;
}
.message-input {
.nut-textarea {
border-radius: 12rpx;
border: 1px solid #e5e7eb;
&:focus {
border-color: #f97316;
box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}
}
}
.quick-tags {
.quick-tag {
transition: all 0.2s ease;
border: 1px solid #fed7aa;
&:hover {
background-color: #f97316;
color: white;
transform: translateY(-1px);
}
&:active {
transform: translateY(0);
}
}
}
.gap-2 {
gap: 8rpx;
}
.flex-wrap {
flex-wrap: wrap;
}
}
</style>