goodsDetails.vue 4.0 KB

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