ad7d1a78
杨鑫
'最新'
|
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
|
import Skeleton from "../../components/Skeleton";
import UButton from "../../uview-ui/components/u-button/u-button";
import CombinedSales from "@/components/activities/combinedSales";
import CouponPopup from "../../components/goodsDetalils/coupon-popup";
import {
Services
} from "../../utils/services";
import GoodEvaluateAndQuestion from "./components/GoodEvaluateAndQuestion";
import GoodActivityDetail from "./components/GoodActivityDetail";
import GoodSkuSelect from "./components/GoodSkuSelect";
import {
TimeFormatting
} from "../../utils/timeUtil";
import USkeleton from "../../uview-ui/components/u-skeleton/u-skeleton";
const NET = require('../../utils/request')
const API = require('../../config/api')
export default {
components: {
USkeleton,
Skeleton,
CouponPopup,
CombinedSales,
UButton,
GoodEvaluateAndQuestion,
GoodActivityDetail,
GoodSkuSelect
},
data() {
return {
isFirstComeIn: true,
loading: true,
isIphone: "",
returnTopFlag: false, // 回到顶部
productId: '', // 商品ID,有可能屎缓存数据
shopGroupWorkId: null, // 拼团数据ID
topThreeCollageOrders: {}, //当前商品拼单数据
collageId: 0, // 去拼团时的拼单ID
broadCastList: [], // 拼团滚动数据
showGroupBuyList: false, // 是否展示拼单弹窗
shopGroupWorkTicker: null, // 拼团倒计时定时器
paramSkuId: null, // 秒杀商品ID
// 商品详情
productData: {},
// 当前选中SKU
selectedSku: {},
currentSuk: [], // 选中的SKU(子组件给当前页面做数据渲染)
buyNum: 1, // 当前选取的SKU购买数量
storeId: '', // 店铺ID
commentList: [], // 商品评价列表
sellDescList: '', // 商品详情长图(富文本)
timeActiveType: true, // 是否开启活动(非则预热)
btnType: 1, // 拉起SKU窗口的按钮类型 1加入购物车 2立即购买 3开团 4单独购买 6选择SKU
allCartNum: 0, // 购物车数量
markTools: [], //平台优惠券
shopMarkTools: [], //店铺优惠券
currentActive: 0, // 优惠券选项卡类型
topLeft: 0, // 距离顶部(返回顶部使用)
// 埋点对象
pointOption: {
inTime: null,
data: {
eventType: 1,
productIds: '',
}
}
}
},
created() {
if (this.ticker) { //这一段是防止进入页面出去后再进来计时器重复启动
clearInterval(this.ticker);
}
if (this.allCartNum > 99) {
this.allCartNum = '...'
}
},
beforeDestroy() {
},
onShow() {
},
onLoad(options) {
// 页面滚动条归0,不然骨架屏有问题
uni.pageScrollTo({
scrollTop: 0,
duration: 0
})
this.productData = {
logisticsPrice: 0,
images: ['123', '123', '123'],
productName: '....',
ifCollect: 1,
}
this.selectedSku = {
activityType: 0,
originalPrice: 0
}
if (options.detail) {
options = this.$getJumpParam(options)
}
this.isFirstComeIn = true
this.loading = true
let salesId = null
this.pointOption.inTime = new Date().getTime()
this.isIphone = getApp().globalData.isIphone;
let item = getApp().globalData.productShareItem
if (item) {
const item = getApp().globalData.productShareItem
this.shopId = parseInt(item.shopId)
this.productId = item.productId
this.paramSkuId = item.skuId
salesId = parseInt(item.salesId)
getApp().globalData.productShareItem = undefined
} else {
this.shopId = parseInt(options.shopId)
this.productId = options.productId
this.paramSkuId = options.skuId
salesId = parseInt(options.salesId)
}
// 判断是否是拼团
if (options.shopGroupWorkId) {
this.shopGroupWorkId = options.shopGroupWorkId
}
this.handleGetProductDetail()
// 绑定分销关系
salesId && this.shopId ? this.bindSalesCustomer(salesId, this.shopId) : ''
this.allCartNum = uni.getStorageSync('allCartNum')
},
onUnload() {
// 判断是否要埋点
const nowTime = new Date().getTime()
if (nowTime - this.pointOption.inTime >= 5000) {
// 埋点
this.pointOption.data.productIds = this.productId
this.$store.dispatch('doPointer', this.pointOption.data)
}
// 销毁平团倒计时计时器
if (this.shopGroupWorkTicker) {
clearInterval(this.shopGroupWorkTicker)
this.shopGroupWorkTicker = null
}
},
mounted() {
},
onPageScroll(e) {
this.returnTopFlag = e.scrollTop > 600;
this.topLeft = e.scrollTop
},
methods: {
/**
* 页面滚动事件
* @param e
*/
handlePageScroll(e) {
this.topLeft = e.scrollTop
},
/**
* 选取sku
* @param skuObj:{currentSuk:object,selectedSku:object,buyNum:number}
*/
handleSelectSku(skuObj) {
this.currentSuk = skuObj.currentSku
this.selectedSku = skuObj.skuItem
this.buyNum = skuObj.buyNum
},
/**
* 选择sku后置方法
* 判断有无活动等操作
*/
selectSkuPostProcessor() {
const ifEnable = this.selectedSku['ifEnable']
if (this.selectedSku.activityType === 1 && ifEnable === 0) {
this.topThreeCollageOrders = this.selectedSku.collageOrders.slice(0, 3)
}
if ([1, 2, 3, 4, 5].includes(this.selectedSku.activityType) && ifEnable === 0) {
this.$refs.goodActivityDetail.handleGetCountDownNumber(this.selectedSku.endTime)
}
this.timeActiveType = ifEnable === 0;
},
/**
* 获取拼团滚动数据
*/
async handleGetGroupBookingRollList() {
let param = {
productId: this.productId,
shopGroupWorkId: this.shopGroupWorkId ?? undefined,
}
const res = await NET.request(API.GetBroadCastList, param, 'GET')
this.broadCastList = res.data
},
/**
* 和他人拼单
* @param collageId 已存在的拼团订单ID
*/
handleGoGroupBooking(collageId) {
this.showGroupBuyList = false
this.collageId = collageId
this.$refs.skuSelect.goodsDetailShowFlag = true
},
/**
* 设置拼团倒计时
*/
handleSetDownTime() { //这个计时器是每秒减去数组中指定字段的时间
let productHaveCollageOrder = false
// 判断sku组合中是否存在拼单
const skuCollects = this.productData.map
for (const skuCollectItemKey in skuCollects) {
const collageOrders = skuCollects[skuCollectItemKey]['collageOrders']
if (collageOrders && collageOrders.length > 0) {
productHaveCollageOrder = true
break
}
}
if (!productHaveCollageOrder) return
this.shopGroupWorkTicker = setInterval(() => {
for (const skuCollectItemKey in skuCollects) {
const collageOrders = skuCollects[skuCollectItemKey]['collageOrders']
if (collageOrders && collageOrders.length > 0) {
collageOrders.forEach(collageItem => {
collageItem.time > 0 ? collageItem.time -= 1000 : ''
})
}
}
}, 1000);
},
/**
* 根据时间戳获取格式化时间(处理计时器)
* @param remainMillSecs 毫秒,还有多久结束
* @return {string}
*/
handleGetDownTime(remainMillSecs) {
if (remainMillSecs <= 0) {
clearInterval(this.shopGroupWorkTicker)
this.shopGroupWorkTicker = null
this.handleGetProductDetail()
}
const timeFormatting = TimeFormatting(remainMillSecs / 1000);
return `${ timeFormatting.hour }:${ timeFormatting.min }:${ timeFormatting.sec }`;
},
/**
* 跳转到购物车
*/
handleJumpToShopCart() {
this.$jumpToTabbar('../../pages/tabbar/cart/index')
},
/**
* 跳转到店铺
*/
handleJumpToStore() {
this.$jump(`../store/index?storeId=${ this.shopId }`)
},
/**
* 返回头部
*/
handleReturnTop() {
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
},
/**
* 打开SKU弹窗
* @param type 1加入购物车 2立即购买 3开团 4单独购买 6选择SKU
*/
handleShowGoodsSkuSelect(type) {
// 为type情况时,绝不可能为和他人拼单
this.collageId = 0
this.$refs.skuSelect.btnType = type
this.$refs.skuSelect.goodsDetailShowFlag = true
},
/**
* 打开优惠券弹窗
*/
handleShowCoupon() {
this.$refs.couponPopup.showActivity = true
},
/**
* 活动商品时间到后置方法
* 供GoodActivityDetail组件调用
*/
handleActivityEnd() {
this.selectedSku.activityType = 0
location.reload()
},
/**
* 获取商品详情
*/
async handleGetProductDetail() {
this.loading = true
// uni.showLoading({
// title: '加载中...',
// mask: true
// })
try {
let postData = {
shopId: this.shopId,
productId: this.productId,
skuId: this.paramSkuId,
terminal: 1
}
const res = await NET.request(API.QueryProductDetail, postData, "GET")
this.isFirstComeIn = false
this.loading = false
this.productData = res.data
this.markTools = res.data.markTools //平台优惠券
console.log('平台优惠券', res.data.markTools)
this.shopMarkTools = res.data.shopMarkTools //店铺优惠券
this.currentActive = this.markTools.length === 0 && this.shopMarkTools.length > 0 ? 1 : 0
//处理单规格商品,如果是单款式商品,需要特殊处理productData.names
const skuCollectionList = this.productData.map
const skuCollectionListKeys = Object.keys(skuCollectionList)
if (skuCollectionListKeys.length === 1 && skuCollectionListKeys[0] === '单款项') {
this.productData.names[0].values.push({
skuValue: this.productData.names[0].skuName,
valueCode: '单款项'
})
}
//如果sku的图像为空,设置为商品的图像
for (const key in skuCollectionList) {
if (!skuCollectionList[key].image) {
skuCollectionList[key].image = this.productData.images[0]
}
}
// 评价
this.commentList = res.data.comments
// 宝贝详情
this.sellDescList = res.data.text.replace(/\<img/gi,
'<img style="max-width:100%;height:auto" ')
//渲染商详之后,如果参数传了skuId,则选中该skuId,否则选中第一个规格
this.$nextTick(async () => {
if (this.paramSkuId) {
this.$refs.skuSelect.handleSelectBySkuId(this.paramSkuId)
} else {
// 默认选中第0个
for (const skuRowItem of this.productData.names) {
this.$refs.skuSelect.handleClickSkuItem(skuRowItem.nameCode, skuRowItem
.values[0].valueCode)
}
}
//如果是拼团,设置拼团id
if (this.productData.activityType === 1) {
this.shopGroupWorkId = this.productData.shopGroupWorkId
await this.handleGetGroupBookingRollList()
this.handleSetDownTime();
}
await this.$refs.goodEvaluateAndQuestion.handleGetProblemList()
})
} finally {
uni.hideLoading()
// this.loading = false
}
},
/**
* 绑定分销关系
* @param salesId 分销员ID
* @param storeId 店铺ID
*/
bindSalesCustomer(salesId, storeId) {
//如果已登录,静默绑定客户关系,否则跳转到登录页面
if (!uni.getStorageSync('storage_key')) {
uni.setStorageSync('salesId', salesId)
uni.setStorageSync("shopId", storeId)
uni.navigateTo({
url: '../../pages_category_page2/userModule/login'
})
return
}
NET.request(API.BindSalesCustomer, {
shopId: storeId,
distributorId: salesId
}, 'POST').then(res => {
console.log('分销关系绑定成功!')
})
},
/**
* 打开拼团列表
*/
handleOpenGroupBookingList() {
if (this.topThreeCollageOrders.length > 0) {
this.showGroupBuyList = true
} else {
uni.showToast({
title: "还没有人拼单,快去拼单吧!",
icon: "none"
})
}
},
kefu() {
|
ad7d1a78
杨鑫
'最新'
|
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
|
background-size: contain;
}
}
}
.parameterShow-box {
.parameter-title {
width: 100%;
text-align: center;
padding-bottom: 36rpx;
}
.parameter-modle {
width: 690rpx;
padding-bottom: 36rpx;
font-size: 26rpx;
}
.parameterTruebut-box {
background-color: #FFFFFF;
padding: 20rpx 0;
.parameterTruebut {
width: 690rpx;
height: 80rpx;
background-image: linear-gradient(135deg, #FFA100 10%, #FF7911 100%);
color: #FFFFFF;
border-radius: 40rpx;
line-height: 80rpx;
text-align: center;
font-size: 26rpx;
}
}
}
.couponShow-box {
.couponShow {
z-index: 333;
height: 1000rpx;
.couponTitle-box {
width: 100%;
}
.coupon-title-active {
color: #FF7700;
border-bottom: 2rpx solid #FF7700;
padding-bottom: 30rpx;
}
.usableCoupon-content {
padding: 30rpx 0;
.usableCoupon-box {
width: 690rpx;
height: 140rpx;
border-radius: 10rpx;
background-color: #FFE9D8;
.immediateUse-but {
color: #FF7800;
border-radius: 30rpx;
padding: 0 40rpx;
border-left: 3rpx solid #EBD7C7;
height: 140rpx;
border-radius: 60rpx;
line-height: 140rpx;
font-weight: bold;
}
}
}
}
}
.succeedShow-box {
position: absolute;
top: 220rpx;
left: 185rpx;
.succeedShow {
background-color: #7F7F7F;
width: 380rpx;
height: 280rpx;
border-radius: 10rpx;
opacity: 0.8;
.couponSucceedImg {
width: 200rpx;
height: 130rpx;
}
}
}
}
.activity-box {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
.title-box {
width: 100%;
height: 100upx;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: relative;
border-bottom: solid 1px #EEEEEE;
}
}
.activity-coupon-box {
display: flex;
flex-direction: column;
width: 100%;
overflow: auto;
flex: 1;
}
.content-box {
width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
padding: 30rpx;
}
.tag-box {
width: 100%;
box-sizing: border-box;
height: 80rpx;
line-height: 80rpx;
font-size: 28rpx;
font-weight: 500;
color: #FF7911;
}
.label-lingqu {
width: 100%;
font-weight: 500;
color: rgba(51, 51, 51, 1);
}
.coupon-item {
width: 690rpx;
height: 120rpx;
border-radius: 10rpx;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: 20rpx;
flex-shrink: 0;
background-color: #FFE9D8;
}
.money-box {
width: 160rpx;
box-sizing: border-box;
padding-left: 30rpx;
font-weight: 500;
color: #FF7911;
}
.info-box {
display: flex;
flex-direction: column;
align-items: flex-start;
color: rgba(255, 121, 17, 1);
}
.receive-btn {
width: 200rpx;
height: 120rpx;
background: rgba(255, 233, 216, 1);
box-shadow: 0px 0px 5rpx 0px rgba(102, 102, 102, 0.35);
line-height: 120rpx;
text-align: center;
font-size: 28rpx;
font-weight: bold;
color: rgba(255, 121, 17, 1);
border-bottom-right-radius: 10rpx;
border-top-right-radius: 10rpx;
border-top-left-radius: 120rpx;
border-bottom-left-radius: 120rpx;
}
.received {
background: #f1f1f1;
color: #999;
}
.canvas-box {
display: block;
position: absolute;
top: 100rpx;
}
.sceneMarketingBox {
width: 100%;
|
ad7d1a78
杨鑫
'最新'
|
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
|
) no-repeat center;
padding: 20rpx 30rpx;
background-size: cover;
display: flex;
justify-content: space-between;
align-items: center;
.sceneNameBox {
width: 220rpx;
text-align: center;
color: #C83732;
font-size: 20rpx;
}
}
.goodsDiscount {
.groupBuy {
.groupBuyList {
.groupBuyItem {
padding: 0 30rpx;
height: 116rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid #EEEEEE;
.leftAvatar {
display: flex;
align-items: center;
width: 50%;
img {
width: 72rpx;
height: 72rpx;
margin-right: 10rpx;
border-radius: 50%;
}
}
.rightInfo {
display: flex;
align-items: center;
width: 50%;
.groupBuyTime {
.needPeople {
font-size: 28rpx;
color: #333333;
margin-bottom: 10rpx;
font-weight: 400;
b {
color: #C5AA7B;
font-weight: 400;
}
}
.endDate {
color: #666666;
}
}
.groupBuyBtn {
width: 140rpx;
height: 60rpx;
line-height: 60rpx;
background: #333333;
text-align: center;
color: #FFEBC4;
font-size: 24rpx;
}
}
}
}
}
}
.popupDiscount {
padding-bottom: 70rpx;
.popupDiscountTit {
font-size: 36rpx;
color: #333333;
height: 105rpx;
line-height: 105rpx;
text-align: center;
border-bottom: 1rpx solid #EEEEEE;
}
.groupBuy {
padding-bottom: 80rpx;
.groupBuyList {
.groupBuyItem1 {
padding: 0 30rpx;
height: 116rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid #EEEEEE;
.leftAvatar {
display: flex;
align-items: center;
img {
width: 72rpx;
height: 72rpx;
margin-right: 10rpx;
border-radius: 50%;
}
.groupBuyTime {
margin-right: 80rpx;
margin-bottom: 10rpx;
width: 320rpx;
.needPeople {
font-size: 26rpx;
color: #333333;
span {
color: #333333;
padding-right: 10rpx;
}
b {
color: #C5AA7B;
font-weight: 400;
}
}
.endDate {
color: #333333;
opacity: 0.7;
font-size: 24rpx;
}
}
}
.rightInfo {
display: flex;
align-items: center;
.groupBuyBtn {
width: 140rpx;
height: 70rpx;
line-height: 70rpx;
background: #333333;
text-align: center;
color: #FFEBC4;
font-weight: 400;
}
}
}
}
}
}
.combination {
padding: 0 20rpx;
.combinationList {
width: 100%;
height: 680rpx;
background: #333333;
box-shadow: 0 20rpx 30rpx rgba(0, 0, 0, 0.3);
border-radius: 20rpx;
.combinationTitle {
padding: 32rpx 20rpx 0 30rpx;
image {
width: 211rpx;
height: 33rpx;
}
.combinationPrice {
padding: 0 20px;
height: 50rpx;
background: linear-gradient(90deg, #C83732 0%, #E25C44 100%);
box-shadow: 0 6rpx 12rpx rgba(233, 0, 0, 0.3);
border-radius: 26rpx;
line-height: 50rpx;
text-align: center;
color: #FFFFFF;
opacity: 0.8;
}
}
.buyBtn {
width: 96%;
height: 84rpx;
line-height: 84rpx;
border: 2rpx solid rgba(0, 0, 0, 0);
background: linear-gradient(88deg, #C5AA7B 0%, #FFEBC4 100%);
text-align: center;
color: #333333;
margin: 0 auto;
}
}
}
</style>
|