|
@@ -28,7 +28,8 @@
|
|
<span
|
|
<span
|
|
v-for="(item, index) in food.product_skus"
|
|
v-for="(item, index) in food.product_skus"
|
|
:key="index"
|
|
:key="index"
|
|
- :class="{'active': index === 0}">{{ item.product_sku }}</span>
|
|
|
|
|
|
+ :class="{'active': SKUId === item.id}"
|
|
|
|
+ @click="selectSKU(item.id)">{{ item.product_sku }}</span>
|
|
</p>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@@ -41,8 +42,10 @@
|
|
</div>
|
|
</div>
|
|
<p class="options">
|
|
<p class="options">
|
|
<span
|
|
<span
|
|
|
|
+ :key="idx"
|
|
v-for="(attr, idx) in item.attach_content"
|
|
v-for="(attr, idx) in item.attach_content"
|
|
- :key="idx">{{ attr }}</span>
|
|
|
|
|
|
+ :class="{'active': Array.isArray(objProductAttachs[SKUId]) && Array.isArray(objProductAttachs[SKUId][index]) && objProductAttachs[SKUId][index].findIndex(attachName => attachName === attr) > -1}"
|
|
|
|
+ @click="selectAttach(SKUId, index, attr, item.attach_max_num)">{{ attr }}</span>
|
|
</p>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="detail">
|
|
<div class="detail">
|
|
@@ -76,8 +79,6 @@ import Vue from 'vue'
|
|
import cartcontrol from '../cartcontrol/cartcontrol'
|
|
import cartcontrol from '../cartcontrol/cartcontrol'
|
|
import { Icon } from 'vant'
|
|
import { Icon } from 'vant'
|
|
|
|
|
|
-const ALL = 2
|
|
|
|
-
|
|
|
|
export default {
|
|
export default {
|
|
props: {
|
|
props: {
|
|
food: {
|
|
food: {
|
|
@@ -87,21 +88,23 @@ export default {
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
showFlag: false,
|
|
showFlag: false,
|
|
- selectType: ALL,
|
|
|
|
- onlyContent: true,
|
|
|
|
- desc: {
|
|
|
|
- all: '全部',
|
|
|
|
- positive: '推荐',
|
|
|
|
- negative: '吐槽'
|
|
|
|
- }
|
|
|
|
|
|
+ SKUId: '', // 商品skuID
|
|
|
|
+ objProductAttachs: {} // 商品附加
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
show () {
|
|
show () {
|
|
|
|
+ this.SKUId = ''
|
|
|
|
+ this.objProductAttachs = {}
|
|
this.showFlag = true
|
|
this.showFlag = true
|
|
- this.selectType = ALL
|
|
|
|
- this.onlyContent = true
|
|
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
|
|
+ const skus = this.food.product_skus
|
|
|
|
+ const attachs = this.food.product_attachs
|
|
|
|
+ this.SKUId = skus[0].id
|
|
|
|
+ skus.forEach(SKU => {
|
|
|
|
+ this.objProductAttachs[SKU.id] = attachs.map(() => [])
|
|
|
|
+ })
|
|
|
|
+
|
|
if (!this.scroll) {
|
|
if (!this.scroll) {
|
|
this.scroll = new BScroll(this.$refs.food, {
|
|
this.scroll = new BScroll(this.$refs.food, {
|
|
click: true
|
|
click: true
|
|
@@ -121,29 +124,42 @@ export default {
|
|
this.$emit('add', event.target)
|
|
this.$emit('add', event.target)
|
|
Vue.set(this.food, 'count', 1)
|
|
Vue.set(this.food, 'count', 1)
|
|
},
|
|
},
|
|
- needShow (type, text) {
|
|
|
|
- if (this.onlyContent && !text) {
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- if (this.selectType === ALL) {
|
|
|
|
- return true
|
|
|
|
- } else {
|
|
|
|
- return type === this.selectType
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
addFood (target) {
|
|
addFood (target) {
|
|
this.$emit('add', target)
|
|
this.$emit('add', target)
|
|
},
|
|
},
|
|
- selectRating (type) {
|
|
|
|
- this.selectType = type
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.scroll.refresh()
|
|
|
|
- })
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 选择SKU
|
|
|
|
+ * @param id SKU ID
|
|
|
|
+ */
|
|
|
|
+ selectSKU (id) {
|
|
|
|
+ this.SKUId = id
|
|
},
|
|
},
|
|
- toggleContent () {
|
|
|
|
- this.onlyContent = !this.onlyContent
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 选择商品附加
|
|
|
|
+ * @param SKUId SKU ID
|
|
|
|
+ * @param index 附加列表下标
|
|
|
|
+ * @param attachName 附加名
|
|
|
|
+ * @param max 当前附加做多可选值
|
|
|
|
+ */
|
|
|
|
+ selectAttach (SKUId, index, attachName, max) {
|
|
|
|
+ // 刷新SKUId,不然数据更新不生效
|
|
|
|
+ this.SKUId = ''
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- this.scroll.refresh()
|
|
|
|
|
|
+ this.SKUId = SKUId
|
|
|
|
+ const allAttach = JSON.parse(JSON.stringify(this.objProductAttachs[SKUId]))
|
|
|
|
+ // 当前选择的附加
|
|
|
|
+ const curAttach = allAttach[index]
|
|
|
|
+ const idx = curAttach.findIndex(item => item === attachName)
|
|
|
|
+
|
|
|
|
+ if (idx > -1) {
|
|
|
|
+ curAttach.splice(index, 1)
|
|
|
|
+ } else {
|
|
|
|
+ if (curAttach.length < max) {
|
|
|
|
+ curAttach.push(attachName)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ allAttach.splice(index, 1, curAttach)
|
|
|
|
+ Vue.set(this.objProductAttachs, SKUId, allAttach)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
},
|
|
},
|