|
@@ -56,6 +56,12 @@
|
|
|
</div>
|
|
|
<div class="des" v-html="food.product_desc"></div>
|
|
|
</div>
|
|
|
+ <div class="detail cartcontrol-wrapper">
|
|
|
+ <div class="subtitle-wrap">
|
|
|
+ <h1 class="title">购买数量</h1>
|
|
|
+ </div>
|
|
|
+ <cartcontrol :food="food" @add="addFood"/>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="footer">
|
|
@@ -65,7 +71,8 @@
|
|
|
<transition name="fade">
|
|
|
<div
|
|
|
class="buy"
|
|
|
- @click.stop.prevent="addFirst">加入购物车
|
|
|
+ :class="payClass"
|
|
|
+ @click.stop.prevent="addFirst">{{ food.is_sell_out === 1 ? '售罄' : '加入购物车'}}
|
|
|
</div>
|
|
|
</transition>
|
|
|
</div>
|
|
@@ -76,7 +83,11 @@
|
|
|
<script type="text/ecmascript-6">
|
|
|
import BScroll from 'better-scroll'
|
|
|
import Vue from 'vue'
|
|
|
-import { Icon } from 'vant'
|
|
|
+import cartcontrol from '../cartcontrol/cartcontrol'
|
|
|
+import { Icon, Toast } from 'vant'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
+import { apiCartAdd } from '../goods/api'
|
|
|
+import { formatArray } from '../../../utils'
|
|
|
|
|
|
export default {
|
|
|
props: {
|
|
@@ -92,6 +103,18 @@ export default {
|
|
|
objProductAttachs: {} // 商品附加
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ ...mapGetters({
|
|
|
+ objCurrentBarInfo: 'common/objCurrentBarInfo'
|
|
|
+ }),
|
|
|
+ payClass () {
|
|
|
+ if (this.food.count < 1 || this.is_sell_out === 1) {
|
|
|
+ return 'not-enough'
|
|
|
+ } else {
|
|
|
+ return 'enough'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
show () {
|
|
|
this.SKUId = ''
|
|
@@ -119,15 +142,40 @@ export default {
|
|
|
hide () {
|
|
|
this.showFlag = false
|
|
|
},
|
|
|
- addFirst (event) {
|
|
|
+ /**
|
|
|
+ * 添加商品到购物车
|
|
|
+ */
|
|
|
+ async addFirst (event) {
|
|
|
+ const { id } = this.objCurrentBarInfo
|
|
|
+ const count = this.food.count
|
|
|
+ const isSellOut = this.food.is_sell_out
|
|
|
+ const allAttach = JSON.parse(JSON.stringify(this.objProductAttachs[this.SKUId]))
|
|
|
+ const postData = {
|
|
|
+ bar_id: id, // 酒吧ID
|
|
|
+ product_id: this.food.id, // 商品ID
|
|
|
+ product_sku_id: this.SKUId, // 商品skuID
|
|
|
+ num: count, // 商品数量
|
|
|
+ product_attach: formatArray(allAttach).join(',') // 商品附加
|
|
|
+ }
|
|
|
if (!event._constructed) {
|
|
|
return
|
|
|
}
|
|
|
- console.log(111)
|
|
|
+ if (isSellOut === 1 || count < 1) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ const { status, msg } = await apiCartAdd(postData)
|
|
|
+ if (status) {
|
|
|
+ this.hide()
|
|
|
+ } else {
|
|
|
+ Toast(msg)
|
|
|
+ }
|
|
|
+ } catch (err) {}
|
|
|
},
|
|
|
+ addFood () {},
|
|
|
/**
|
|
|
* 选择SKU
|
|
|
- * @param id SKU ID
|
|
|
+ * @param item SKU信息
|
|
|
*/
|
|
|
selectSKU (item) {
|
|
|
this.SKUId = item.id
|
|
@@ -163,6 +211,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
+ cartcontrol,
|
|
|
'van-icon': Icon
|
|
|
}
|
|
|
}
|
|
@@ -302,6 +351,18 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.cartcontrol-wrapper {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding-right: 20px;
|
|
|
+ margin-top: 20px;
|
|
|
+
|
|
|
+ .subtitle-wrap {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.footer {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
@@ -331,14 +392,22 @@ export default {
|
|
|
top: 18px;
|
|
|
width: 110px;
|
|
|
height: 32px;
|
|
|
- background: #D32323;
|
|
|
border-radius: 20px;
|
|
|
font-size: 14px;
|
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
|
font-weight: 500;
|
|
|
- color: #FFFFFF;
|
|
|
line-height: 32px;
|
|
|
text-align: center;
|
|
|
+
|
|
|
+ &.not-enough {
|
|
|
+ color: #CCC6C6;
|
|
|
+ background: #736F6F;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.enough {
|
|
|
+ color: #FFFFFF;
|
|
|
+ background: #D32323;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|