goodsDetails.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view>
  3. <!-- <navigation-bar background-color="#fff" front-color="#000000" /> -->
  4. <view class="back" @click="back">
  5. <uni-icons type="back" color="#000000" size="30"></uni-icons>
  6. </view>
  7. <swiper class="swiper" circular :indicator-dots="indicatorDots" :autoplay="autoplay" :interval="interval"
  8. :duration="duration">
  9. <swiper-item>
  10. <image width="100%" src="../../static/news.jpg"></image>
  11. </swiper-item>
  12. </swiper>
  13. <!-- <u-image width="100%" height="800rpx" :src="goods.goodsImg"></u-image> -->
  14. <!-- <u-image width="100%" height="400rpx" src="../../static/news.jpg"></u-image> -->
  15. <view class="title pad">
  16. {{goods.goodsName}}
  17. </view>
  18. <view class="price pad">
  19. ¥{{goods.price}} {{goods.goodsUnits}}
  20. </view>
  21. <view class="pad">
  22. <u-tag class="tag" v-for="(item,index) in type" :key="index" :text="item" type="warning" plain></u-tag>
  23. </view>
  24. <view class="pad">
  25. <u--text prefixIcon="home" iconStyle="font-size: 50rpx" :text="goods.merchantName" size="26"></u--text>
  26. </view>
  27. <view class="pad">
  28. <u--text prefixIcon="map" iconStyle="font-size: 50rpx" :text="goods.tradeAreaName" size="26"></u--text>
  29. </view>
  30. <view class="pad des">
  31. <u--text text="商品描述:" size="24"></u--text>
  32. <u--text :text="goods.description? goods.description : '卖家很懒,什么都没有留下'" size="24"></u--text>
  33. </view>
  34. <view class="footer">
  35. <u-button class="custom-style" type="warning" @click="addCar()">加入购物车</u-button>
  36. <u-button class="custom-style" type="error" @click="buy()">提交订单</u-button>
  37. </view>
  38. <!-- <u-popup :show="show" @close="close" @open="open">
  39. <view>
  40. <view class="num">
  41. <u-button class="numBtn" icon="minus" @click="minus()"></u-button>
  42. <text v-model="num">{{num}}</text>
  43. <u-button class="numBtn" icon="plus" @click="add()"></u-button>
  44. </view>
  45. <u-button type="primary" shape="circle" size="40" text="确定" @click="addCar()"></u-button>
  46. </view>
  47. </u-popup> -->
  48. </view>
  49. </template>
  50. <script>
  51. import common from '../../common/js/common'
  52. export default {
  53. data() {
  54. return {
  55. id: '',
  56. goods: {},
  57. type: [],
  58. show: false,
  59. num: 1
  60. }
  61. },
  62. onLoad(option) {
  63. this.id = option.id
  64. this.getGoodsDetails()
  65. },
  66. methods: {
  67. getGoodsDetails() {
  68. this.http.request({
  69. url: '/level-one-server/TbGoodsTransit/getById',
  70. data: {
  71. id: this.id
  72. },
  73. success: res => {
  74. this.goods = res.data.data;
  75. if (this.goods) {
  76. this.type = this.goods.goodsType.toString().split("、")
  77. }
  78. }
  79. });
  80. },
  81. minus() {
  82. if (this.num == 1) {
  83. this.$$common.toast("已经到最小数量,无法在减少")
  84. return
  85. } else {
  86. this.num--
  87. }
  88. },
  89. add() {
  90. this.num++
  91. },
  92. addCar() {
  93. let user = uni.getStorageSync("info")
  94. let params = {
  95. buyUserId: user.id,
  96. enterpriseId: this.goods.merchantId,
  97. shopId: this.goods.shopId,
  98. tradeAreaId: this.goods.tradeAreaId,
  99. saleGoodsInfoId: this.goods.id,
  100. goodsImg: this.goods.goodsImg,
  101. goodsName: this.goods.goodsName,
  102. // buyNum: parseInt(this.num)
  103. }
  104. this.http.request({
  105. url: '/level-one-server/app/TbGoodsCart/addGoodsInShopCart',
  106. data: params,
  107. contentType: 'application/json; charset=utf-8',
  108. method: 'POST',
  109. success: res => {
  110. setTimeout(function() {
  111. uni.showToast({
  112. title: res.data.msg
  113. });
  114. }, 1000)
  115. }
  116. });
  117. },
  118. // 立即购买
  119. buy() {
  120. this.http.request({
  121. url: '/level-one-server/app/TbGoodsTransit/purchaseLevelOntGoodsTransit',
  122. data: {
  123. goodsTransitId: this.goods.id
  124. },
  125. method: 'POST',
  126. contentType: 'application/json; charset=utf-8',
  127. success: res => {
  128. setTimeout(function() {
  129. uni.showToast({
  130. title: res.data.msg
  131. });
  132. }, 1000)
  133. }
  134. });
  135. },
  136. back() {
  137. uni.navigateBack({delta: 1})
  138. }
  139. }
  140. }
  141. </script>
  142. <style lang="scss">
  143. page {
  144. padding: 0;
  145. }
  146. .back {
  147. position: absolute;
  148. top: 10rpx;
  149. left: 10rpx;
  150. width: 80rpx;
  151. height: 80rpx;
  152. border-radius: 40rpx;
  153. background-color: #828282;
  154. display: flex;
  155. opacity: 0.4;
  156. z-index: 1;
  157. align-items: center;
  158. justify-content: center;
  159. }
  160. .pad {
  161. width: 100%;
  162. padding: 10rpx;
  163. display: flex;
  164. }
  165. .title {
  166. font-size: 42rpx;
  167. }
  168. .price {
  169. color: red;
  170. font-size: 40rpx;
  171. }
  172. // .flex-box {
  173. // }
  174. .tag {
  175. width: auto;
  176. margin-right: 10rpx;
  177. }
  178. .custom-style {
  179. width: 50%;
  180. height: 100rpx;
  181. font-size: 30rpx;
  182. }
  183. .des {
  184. border-top: 1rpx #888 solid;
  185. margin-bottom: 10rpx;
  186. }
  187. .num {
  188. width: 100%;
  189. padding: 10rpx;
  190. display: flex;
  191. align-items: center;
  192. justify-content: center;
  193. font-size: 40rpx;
  194. }
  195. .numBtn {
  196. width: 20%;
  197. margin: 20rpx;
  198. }
  199. .footer {
  200. width: 100%;
  201. display: flex;
  202. position: absolute;
  203. bottom: 1rpx;
  204. }
  205. </style>