food.vue 9.5 KB

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