food.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. <template>
  2. <van-popup
  3. v-model="showFlag"
  4. :lock-scroll="false"
  5. closeable
  6. position="bottom"
  7. round
  8. style="height: 95%;">
  9. <div
  10. ref="food"
  11. class="food">
  12. <div class="food-content">
  13. <div class="image-header">
  14. <img
  15. :src="food.product_img_url"
  16. alt="">
  17. </div>
  18. <div class="content">
  19. <div class="title-wrap">
  20. <h1 class="title">{{ food.product_name }}</h1>
  21. <p v-if="false">{{ food.product_sale_num }}人推荐</p>
  22. </div>
  23. <div class="detail">
  24. <p class="options">
  25. <span
  26. v-for="(item, index) in food.product_skus"
  27. :key="index"
  28. :class="{'active': SKUId === item.id}"
  29. @click="selectSKU(item)">{{ item.product_sku }}</span>
  30. </p>
  31. </div>
  32. <div
  33. v-for="(item, index) in food.product_attachs"
  34. :key="index"
  35. class="detail">
  36. <div class="subtitle-wrap">
  37. <h1 class="title">{{ item.attach_name }}</h1>
  38. <p>(最多可选{{ item.attach_max_num }}个)</p>
  39. </div>
  40. <p class="options">
  41. <span
  42. :key="idx"
  43. v-for="(attr, idx) in item.attach_content"
  44. :class="{'active': Array.isArray(objProductAttachs[SKUId]) && Array.isArray(objProductAttachs[SKUId][index]) && objProductAttachs[SKUId][index].findIndex(attachName => attachName === attr) > -1}"
  45. @click="selectAttach(SKUId, index, attr, item.attach_max_num)">{{ attr }}</span>
  46. </p>
  47. </div>
  48. <!--商品详情传过来的是富文本,值有可能为空-->
  49. <div v-if="food.product_desc && food.product_desc.length"
  50. class="detail">
  51. <div class="subtitle-wrap">
  52. <h1 class="title">商品详情</h1>
  53. </div>
  54. <div class="des" v-html="food.product_desc"></div>
  55. </div>
  56. <div class="detail cartcontrol-wrapper">
  57. <div class="subtitle-wrap">
  58. <h1 class="title">购买数量</h1>
  59. </div>
  60. <cartcontrol :food="food" @add="addFood"/>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. <div class="footer">
  66. <div
  67. :class="{'highlight':price * food.product_num > 0}"
  68. class="price">
  69. <span class="now">¥{{ price * food.product_num | fen2Yuan }}</span>
  70. </div>
  71. <div
  72. :class="payClass"
  73. class="buy"
  74. @click.stop.prevent="addFirst">{{ food.is_sell_out === 1 ? '售罄' : '加入购物车'}}
  75. </div>
  76. </div>
  77. </van-popup>
  78. </template>
  79. <script type="text/ecmascript-6">
  80. import BScroll from 'better-scroll'
  81. import Vue from 'vue'
  82. import cartcontrol from '../cartcontrol/cartcontrol'
  83. import { Toast, Popup } from 'vant'
  84. import { mapGetters } from 'vuex'
  85. import { apiCartAdd } from '../goods/api'
  86. import { formatArray } from '../../../utils'
  87. export default {
  88. props: {
  89. food: {
  90. type: Object
  91. }
  92. },
  93. data () {
  94. return {
  95. showFlag: false,
  96. SKUId: '', // 商品skuID
  97. price: '', // 商品价格
  98. objProductAttachs: {} // 商品附加
  99. }
  100. },
  101. computed: {
  102. ...mapGetters({
  103. objCurrentBarInfo: 'common/objCurrentBarInfo'
  104. }),
  105. payClass () {
  106. if (this.food.product_num < 1 || this.food.is_sell_out === 1) {
  107. return 'not-enough'
  108. } else {
  109. return 'enough'
  110. }
  111. }
  112. },
  113. methods: {
  114. show () {
  115. const skus = this.food.product_skus
  116. const attachs = this.food.product_attachs
  117. this.SKUId = skus[0].id
  118. this.price = skus[0].product_price
  119. skus.forEach(SKU => {
  120. this.objProductAttachs[SKU.id] = attachs.map(() => [])
  121. })
  122. this.showFlag = true
  123. setTimeout(() => {
  124. if (!this.scroll) {
  125. this.scroll = new BScroll(this.$refs.food, {
  126. click: true
  127. })
  128. } else {
  129. this.scroll.refresh()
  130. }
  131. }, 500)
  132. },
  133. hide () {
  134. this.showFlag = false
  135. },
  136. /**
  137. * 添加商品到购物车
  138. */
  139. async addFirst (event) {
  140. const { id } = this.objCurrentBarInfo
  141. const count = this.food.product_num
  142. const isSellOut = this.food.is_sell_out
  143. const allAttach = JSON.parse(JSON.stringify(this.objProductAttachs[this.SKUId]))
  144. const postData = {
  145. bar_id: id, // 酒吧ID
  146. product_id: this.food.id, // 商品ID
  147. product_sku_id: this.SKUId, // 商品skuID
  148. num: count, // 商品数量
  149. product_attach: formatArray(allAttach).join(',') // 商品附加
  150. }
  151. if (isSellOut === 1 || count < 1) {
  152. return
  153. }
  154. try {
  155. const { status, msg } = await apiCartAdd(postData)
  156. if (status) {
  157. this.hide()
  158. this.$emit('initCartList')
  159. } else {
  160. Toast(msg)
  161. }
  162. } catch (err) {}
  163. },
  164. addFood () {},
  165. /**
  166. * 选择SKU
  167. * @param item SKU信息
  168. */
  169. selectSKU (item) {
  170. this.SKUId = item.id
  171. this.price = item.product_price
  172. },
  173. /**
  174. * 选择商品附加
  175. * @param SKUId SKU ID
  176. * @param index 附加列表下标
  177. * @param attachName 附加名
  178. * @param max 当前附加做多可选值
  179. */
  180. selectAttach (SKUId, index, attachName, max) {
  181. // 刷新SKUId,不然数据更新不生效
  182. this.SKUId = ''
  183. this.$nextTick(() => {
  184. this.SKUId = SKUId
  185. const allAttach = JSON.parse(JSON.stringify(this.objProductAttachs[SKUId]))
  186. // 当前选择的附加
  187. const curAttach = allAttach[index]
  188. const idx = curAttach.findIndex(item => item === attachName)
  189. if (idx > -1) {
  190. curAttach.splice(idx, 1)
  191. } else if (max > 0) {
  192. if (curAttach.length >= max) {
  193. curAttach.pop()
  194. }
  195. curAttach.push(attachName)
  196. }
  197. allAttach.splice(index, 1, curAttach)
  198. Vue.set(this.objProductAttachs, SKUId, allAttach)
  199. })
  200. }
  201. },
  202. components: {
  203. cartcontrol,
  204. 'van-popup': Popup
  205. }
  206. }
  207. </script>
  208. <style lang="scss" scoped>
  209. .food {
  210. width: 100%;
  211. height: calc(100% - 68px);
  212. overflow: hidden;
  213. .image-header {
  214. position: relative;
  215. width: 100%;
  216. height: 210px;
  217. margin: 0 auto;
  218. overflow: hidden;
  219. img {
  220. position: absolute;
  221. top: 0;
  222. left: 0;
  223. width: 100%;
  224. height: 100%;
  225. }
  226. .back {
  227. position: absolute;
  228. right: 5px;
  229. top: 5px;
  230. display: flex;
  231. align-items: center;
  232. }
  233. }
  234. .content {
  235. .title {
  236. font-size: 18px;
  237. font-family: PingFangSC-Semibold, PingFang SC;
  238. font-weight: 600;
  239. color: #1F1E1E;
  240. line-height: 25px;
  241. letter-spacing: 1px;
  242. }
  243. .title-wrap {
  244. padding: 13px 0 11px 20px;
  245. border-bottom: 1px solid #F2F2F2;
  246. p {
  247. margin-top: 2px;
  248. font-size: 12px;
  249. color: #736F6F;
  250. line-height: 17px;
  251. }
  252. }
  253. }
  254. }
  255. .detail {
  256. padding-left: 20px;
  257. .subtitle-wrap {
  258. display: flex;
  259. align-items: center;
  260. margin-top: 20px;
  261. p {
  262. margin-left: 4px;
  263. font-size: 14px;
  264. color: #D32323;
  265. line-height: 20px;
  266. }
  267. }
  268. .options {
  269. display: flex;
  270. flex-flow: row wrap;
  271. span {
  272. width: 98px;
  273. height: 32px;
  274. border-radius: 16px;
  275. border: 1px solid #F2F2F2;
  276. margin-left: 20px;
  277. margin-top: 14px;
  278. font-size: 14px;
  279. color: #1F1E1E;
  280. line-height: 32px;
  281. text-align: center;
  282. &:nth-of-type(3n+1) {
  283. margin-left: 0;
  284. }
  285. &.active {
  286. border: none;
  287. color: #FFFFFF;
  288. background: #D32323;
  289. box-shadow: 0 2px 4px 0 rgba(210, 199, 199, 0.31);
  290. }
  291. }
  292. }
  293. .des {
  294. margin-top: 16px;
  295. ::v-deep p {
  296. font-size: 12px;
  297. color: #1F1E1E;
  298. line-height: 17px;
  299. }
  300. }
  301. }
  302. .cartcontrol-wrapper {
  303. display: flex;
  304. justify-content: space-between;
  305. align-items: center;
  306. padding-right: 20px;
  307. margin-top: 20px;
  308. .subtitle-wrap {
  309. margin-top: 0;
  310. }
  311. }
  312. .footer {
  313. position: relative;
  314. left: 0;
  315. top: 0;
  316. z-index: 1;
  317. display: flex;
  318. justify-content: space-between;
  319. align-items: center;
  320. width: 100%;
  321. height: 68px;
  322. padding: 0 20px;
  323. background: #FFFFFF;
  324. box-shadow: 0px -2px 4px 0px rgba(13, 13, 13, 0.03);
  325. .price {
  326. font-size: 21px;
  327. font-family: PingFangSC-Medium, PingFang SC;
  328. font-weight: 500;
  329. color: #999;
  330. line-height: 29px;
  331. &.highlight {
  332. color: #D32323;
  333. }
  334. }
  335. .buy {
  336. position: absolute;
  337. right: 20px;
  338. top: 18px;
  339. width: 110px;
  340. height: 32px;
  341. border-radius: 20px;
  342. font-size: 14px;
  343. font-family: PingFangSC-Medium, PingFang SC;
  344. font-weight: 500;
  345. line-height: 32px;
  346. text-align: center;
  347. &.not-enough {
  348. color: #999;
  349. background: #333;
  350. }
  351. &.enough {
  352. color: #FFF;
  353. background: #D32323;
  354. }
  355. }
  356. }
  357. </style>