3f535f30
杨鑫
'初始'
|
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
|
></image>
<view class="flex-column-plus mar-left-40">
<view class="" style="color: #f4281e;">
<label class="fs24">¥</label>
<label
class="fs36 mar-left-10"
v-text="selectedSku.activityType === 1 && btnType === 4 ? selectedSku['salePrice'] : selectedSku.price"
></label>
</view>
<label class="fs24 font-color-999 mar-top-20">库存 {{ selectedSku.stockNumber }} 件</label>
<label class="fs24 mar-top-20">已选</label>
</view>
</view>
<view class="color-box flex-column-plus">
<view
v-for="(skuRowItem,skuRowIndex) in productData['names']"
:key="skuRowIndex"
>
<label
class="fs26 font-color-333"
v-if="skuRowItem['nameCode']"
>{{ skuRowItem.skuName }}</label>
<view class="colorName-box">
<view
class="pad-bot-30"
v-for="(skuColItem, skuColIndex) in skuRowItem.values"
:key="skuColIndex"
>
<view
class="colorName"
:class="{'colorName-on' : selectedAttr[skuRowItem['nameCode']] === skuColItem.valueCode}"
@click="handleClickSkuItem(skuRowItem['nameCode'], skuColItem.valueCode)"
>
{{ skuColItem.skuValue }}
</view>
</view>
</view>
</view>
</view>
<view class="goodsNumCent">
<view
class="goodsNum-box flex-row-plus flex-sp-between"
:class="{'bottom-line' :aliAgingObj.supportHanaUta}"
>
<label class="font-color-333 fs26">数量</label>
<view class="goodsNum">
<view
class="item subtract"
@click="handleNumSub"
>-
</view>
<view
class="item goodsNumber"
v-model="buyNum"
>{{ buyNum }}
</view>
<view
class="item add"
@click="handleNumAdd"
>+
</view>
</view>
</view>
</view>
<!-- 花呗分期 -->
<view
class="huabei-box flex-column-plus"
v-if="aliAgingObj.supportHanaUta"
>
<label class="font-color-999 fs24">花呗分期</label>
<scroll-view
class="fenqi-box"
scroll-x="true"
>
<view
class="huabei-item"
:class="[{'fenqi-on' :aliAgingObj.selectIndex === 0},{'disabled' :aliAgingObj.disableSelectList[0]}]"
@click="handleSelectAliAging(0)"
>
<label class="huabei-period">分3期(含手续费)</label>
<label class="huabei-money">¥{{ aliAgingObj.agingMoneyList[0] }}/期</label>
</view>
<view
class="huabei-item"
:class="[{'fenqi-on' :aliAgingObj.selectIndex === 1},{'disabled' :aliAgingObj.disableSelectList[1]}]"
@click="handleSelectAliAging(1)"
>
<label class="huabei-period">分6期(含手续费)</label>
<label class="huabei-money">¥{{ aliAgingObj.agingMoneyList[1] }}/期</label>
</view>
<view
class="huabei-item"
:class="[{'fenqi-on' :aliAgingObj.selectIndex === 2},{'disabled' :aliAgingObj.disableSelectList[2]}]"
@click="handleSelectAliAging(2)"
>
<label class="huabei-period">分12期(含手续费)</label>
<label class="huabei-money">¥{{ aliAgingObj.agingMoneyList[2] }}/期</label>
</view>
</scroll-view>
</view>
<view
v-if="btnType===6"
class="skuSelectBtn"
>
<view
class="flex-row-plus offShelf"
v-if="productData.shelveState === 0"
>
商品已下架
</view>
<view
class="flex-row-plus flex-items flex-sp-around"
v-else-if="selectedSku.activityType === 1"
>
<view
class="selectJoinShop selectBtn font-color-333"
@click="handleBuyNow"
>单独购买
</view>
<view
class="selectBuyNow selectBtn font-color-FFEBC4"
@click="handleBuyWithGroup(1)"
>我要开团
</view>
</view>
<view
class="flex-row-plus flex-items flex-sp-around"
v-else
>
<view
class="selectJoinShop selectBtn"
@click="handleAddCart"
>加入购物车
</view>
<view
class="selectBuyNow selectBtn"
@click="handleBuyNow"
>立即购买
</view>
</view>
</view>
<view v-else>
<view
v-if="selectedSku.activityType === 1 && collageId !== 0"
class="goosDetailbut-box flex-items-plus"
:style="{'padding-bottom':(isIphone === true? 60:20)+'rpx'}"
>
<view
class="joinbuyBut"
@click="handleBuyWithGroup(2)"
>确定
</view>
</view>
<view
v-else-if="selectedSku.activityType === 1 && btnType === 3"
class="goosDetailbut-box flex-row-plus"
:style="{'padding-bottom':(isIphone === true? 60:20)+'rpx'}"
>
<view
class="buyNowBut"
@click="handleBuyWithGroup(1)"
>去拼团
</view>
</view>
<view
v-else
class="goosDetailbut-box flex-row-plus"
:style="{'padding-bottom':(isIphone === true? 60:20)+'rpx'}"
>
<view
v-if="btnType === 1"
class="buyNowBut"
@click="handleAddCart"
>确认
</view>
<view
v-else
class="buyNowBut"
@click="handleBuyNow(2)"
>确认
</view>
</view>
</view>
</view>
</u-popup>
</div>
</template>
<script>
import NET from "../../../utils/request";
import API from "../../../config/api";
export default {
name: "GoodSkuSelect",
data() {
return {
// 是否展示SKU弹窗
goodsDetailShowFlag: false,
// 已经选中的valueCode key => value names.nameCode=>values.valueCode 处理选中渲染
selectedAttr: {},
// 当前选中的skuMap对象(服务端数据)
selectedSku: {},
// 1加入购物车 2立即购买 3开团 4单独购买 6SKU选择
btnType: 0,
buyNum: 1,
// 花呗对象
aliAgingObj: {
supportHanaUta: false,
selectIndex: -1,
disableSelectList: [true, true, true],
agingMoneyList: ["0.00", "0.00", "0.00"]
}
}
},
props: {
productData: {
type: Object,
default: () => ({})
},
isIphone: {
type: Boolean,
default: () => false
},
collageId: {
type: Number,
default: () => 0
}
},
methods: {
/**
* 当前SKU数量减少
*/
handleNumSub() {
if (this.buyNum > 1) {
this.buyNum = this.buyNum - 1
} else {
uni.showToast({
title: '亲!至少一件哦!',
icon: "none"
})
}
},
/**
* 当前SKU数量加
*/
handleNumAdd() {
if (this.buyNum < this.selectedSku.stockNumber) {
this.buyNum = this.buyNum + 1
} else {
uni.showToast({
title: '库存不足!',
icon: "none"
})
}
},
/**
* 根据skuId选择SKU
* @param skuId SkuId
*/
handleSelectBySkuId(skuId) {
if (!skuId) return
// 当前商品后端返回的所有sku的排列组合
const allSkuValueGroupMap = this.productData.map
for (const allSkuValueGroupMapKey in allSkuValueGroupMap) {
if (parseInt(allSkuValueGroupMap[allSkuValueGroupMapKey].skuId) !== parseInt(skuId)) continue;
this.selectedSku = allSkuValueGroupMap[allSkuValueGroupMapKey]
this.echoFatherRowText(this.productData, this.selectedSku, this.buyNum)
// 控制组件选中渲染
const selectValueCodes = this.selectedSku['valueCodes'].split(',')
for (const skuRow of this.productData.names) {
for (const skuCol of skuRow.values) {
if (!selectValueCodes.includes(skuCol['valueCode'])) continue;
this.$set(this.selectedAttr, skuRow['nameCode'], skuCol['valueCode'])
break; // 一行的sku只会有一个value
}
}
}
},
/**
* 点击sku的一项
* @param nameCode SKU行的nameCode
* @param valueCode SKU列的valueCode
* nameCodeValueCodeClick
*/
handleClickSkuItem(nameCode, valueCode) {
// 当前选中
this.$set(this.selectedAttr, nameCode, valueCode)
// 获取到所有的sku的values.valueCode
let values = []
for (const key in this.selectedAttr) {
values.push(this.selectedAttr[key])
}
// 当前选中的sku的key组合
// 后端返回的productData.map中,排列组合了所有values[].valueCode的情况,使用逗号分隔
const nowSelectSkuValueGroupKey = values.join(',') // 相较于allSkuValueGroupMap的key
// 后端返回的所有sku组合(values.valueCode)
const allSkuValueGroupMap = this.productData.map
// 遍历后端数据
for (const allSkuValueGroupMapKey in allSkuValueGroupMap) {
// 当和当前选中的sku一致
if (nowSelectSkuValueGroupKey === allSkuValueGroupMapKey) {
this.selectedSku = allSkuValueGroupMap[allSkuValueGroupMapKey]
this.echoFatherRowText(this.productData, this.selectedSku, this.buyNum)
}
}
},
/**
* 回显父组件(通讯)
* @param productData 当前商品对象
* @param skuItem 当前选中的sku的后端数据
* @param buyNum 当前sku购买数量
*/
echoFatherRowText(productData, skuItem, buyNum) {
// 获取到当前选中的sku的valueCode
const currentSku = []
// 取出所有的valueCode
const nowSelectValueCodeList = skuItem['valueCodes'].split(',')
const skuRows = productData.names
for (const skuRow of skuRows) {
const skuValues = skuRow.values
for (const skuValue of skuValues) {
if (!nowSelectValueCodeList.includes(skuValue.valueCode)) continue;
const currentSkuItem = {skuText: ''}
if (skuValue.valueCode === '单款项') {
currentSkuItem['skuText'] = skuValue['skuValue']
} else {
currentSkuItem['skuText'] = `${ skuValue.skuName }:${ skuValue.skuValue }`
}
currentSku.push(currentSkuItem)
break; // 只会对应一个value数据,找到就break减少循环
}
}
this.$emit('getCurrentSku', {
skuItem,
currentSku,
buyNum
})
// 选中sku之后,做一些相应的操作
// postSelectSku依赖于getCurrentSku的数据
this.$emit('postSelectSku')
},
//加入购物车
async handleAddCart() {
this.handleCheckIsLogin()
if (this.selectedSku.stockNumber < 1) {
return uni.showToast({
title: '库存不足',
icon: "none"
})
}
// uni.showLoading({
// mask: true,
// title: '添加中...',
// })
try {
const postData = {
skuId: this.selectedSku.skuId,
number: this.buyNum,
}
await NET.request(API.ShoppingaddCart, postData, 'POST')
// 埋点
this.$store.dispatch('doPointer', {
eventType: 2,
productIds: this.productId
})
// 给购物车小图标赋值数量
let newAllCartNum = uni.getStorageSync('allCartNum') + this.buyNum
uni.setStorageSync('allCartNum', newAllCartNum)
this.$emit('changeCartNum',newAllCartNum)
uni.showToast({
title: '添加成功',
icon: 'none'
})
setTimeout(()=>{
this.buyNum = 1
this.goodsDetailShowFlag = false
},2000)
}finally {
uni.hideLoading()
}
},
/**
* 立即购买(下单)
*/
handleBuyNow() {
this.handleCheckIsLogin()
if (this.selectedSku.stockNumber < 1) {
return uni.showToast({
title: '库存不足',
icon: "none"
})
}
if (this.buyNum > this.selectedSku.stockNumber && this.selectedSku.stockNumber !== 0) {
return uni.showToast({
title: '已超出最大数量限制',
icon: "none"
})
}
//组装后端数据
let list = [{
ifWork: 0,
shopId: this.productData.shopId,
shopName: this.productData.shopName,
shopDiscountId: this.shopDiscountId > 0 ? this.shopDiscountId : null,
shopSeckillId: this.shopSeckillId > 0 ? this.shopSeckillId : null,
skus: [{
productId: this.productData.productId,
skuId: this.selectedSku.skuId,
productName: this.productData.productName,
image: this.selectedSku.image,
price: this.selectedSku.price,
weight: 0,
number: this.buyNum,
SKU: "",
total: this.selectedSku.price * this.buyNum,
ifLogistics: 1
}]
}]
uni.setStorageSync('skuItemDTOList', list)
this.buyNum = 1
this.goodsDetailShowFlag = false
uni.navigateTo({
url: '../orderModule/orderConfirm?type=1',
})
},
/**
* 拼团下单
* @param type 1单独开团2拼团
*/
handleBuyWithGroup(type) {
this.handleCheckIsLogin()
if (this.selectedSku.stockNumber < 1) {
return uni.showToast({
title: '库存不足',
icon: "none"
})
}
const data = {
number: this.buyNum,
productId: this.productId,
shopId: this.shopId,
skuId: this.selectedSku.skuId,
shopGroupWorkId: this.selectedSku.shopGroupWorkId,
type: type
}
if (type !== 1) {
data.collageId = this.collageId
}
uni.removeStorageSync("skuItemDTOList")
uni.setStorageSync('skuItemList', data)
this.goodsDetailShowFlag = false
this.buyNum = 1
uni.navigateTo({
|