productDetails.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <template>
  2. <view class="page">
  3. <!-- v-if="pageStatus != 'platform'" -->
  4. <view v-if="commodityDetail.final_status != 'normal'">
  5. <view class="top-fail" v-if="commodityDetail.final_status != 'unreview'">
  6. <image
  7. src="../../static/mine/332.png"
  8. class="fail-icon"
  9. mode=""
  10. ></image>
  11. <text v-if="commodityDetail.final_status == 'refuse'"
  12. >涉及敏感文字,您发布的商品审核未通过</text
  13. >
  14. <text v-else-if="commodityDetail.final_status == 'down'"
  15. >该商品已下架,如有需要请重新上架</text
  16. >
  17. </view>
  18. <view class="fail" v-if="commodityDetail.final_status == 'unreview'">
  19. <image
  20. src="../../static/mine/333.png"
  21. class="fail-icon"
  22. mode=""
  23. ></image>
  24. <text>商品还在审核中,请耐心等待</text>
  25. </view>
  26. </view>
  27. <image class="goods-img" :src="commodityDetail.image" mode=""></image>
  28. <view class="price" v-if="commodityDetail.discount_price">
  29. <text style="font-size: 20rpx">折扣价</text>
  30. <text style="font-size: 18rpx">¥</text>
  31. <text style="font-size: 36rpx; font-weight: 600">{{
  32. commodityDetail.discount_price.split(".")[0]
  33. }}</text
  34. >.
  35. <text style="font-size: 18rpx">{{
  36. commodityDetail.discount_price.split(".")[1]
  37. }}</text>
  38. <text
  39. style="
  40. font-size: 24rpx;
  41. color: #ccc;
  42. text-decoration-line: line-through;
  43. "
  44. >
  45. ¥{{ commodityDetail.price }}
  46. </text>
  47. </view>
  48. <view class="goods-title">
  49. {{ commodityDetail.name_cn }}
  50. </view>
  51. <view class="goods-detail"> 商品详情 </view>
  52. <view class="detail">
  53. <!-- -->
  54. <view v-html="commodityDetail.detail_cn"></view>
  55. <!-- <image
  56. class="detail-img"
  57. v-for="item in commodityDetail.images.split(',')"
  58. :src="item"
  59. mode=""
  60. ></image> -->
  61. </view>
  62. <view class="footer">
  63. <!-- <button class="btn">编辑商品</button> -->
  64. <button
  65. class="btn"
  66. @click="groundingCommodity"
  67. v-if="
  68. commodityDetail.final_status == 'normal' ||
  69. commodityDetail.final_status == 'down'
  70. "
  71. >
  72. 上架商品
  73. </button>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. data() {
  80. return {
  81. status: 2,
  82. goodsId: 0,
  83. pageStatus: "",
  84. commodityDetail: {},
  85. };
  86. },
  87. onLoad(options) {
  88. console.log(options);
  89. this.goodsId = options.goodsId;
  90. this.pageStatus = options.pageStatus;
  91. if (options.pageStatus == "platform") {
  92. this.getGoodsDetail();
  93. } else {
  94. this.getGoodsManageDetail();
  95. }
  96. },
  97. methods: {
  98. //获取平台库商品详情
  99. getGoodsDetail() {
  100. uni.$u.http
  101. .get(`/api/goods/platform_goods_details/${this.goodsId}`)
  102. .then((res) => {
  103. this.commodityDetail = res;
  104. });
  105. },
  106. //获取商品管理商品详情
  107. getGoodsManageDetail() {
  108. uni.$u.http.get(`/api/goods/detail/${this.goodsId}`).then((res) => {
  109. this.commodityDetail = res;
  110. });
  111. },
  112. //上架商品
  113. groundingCommodity() {
  114. uni.$u.http
  115. .post(`/api/goods/elencazione`, { goods_id: this.commodityDetail.id })
  116. .then((res) => {
  117. console.log(res);
  118. });
  119. },
  120. },
  121. mounted() {
  122. uni.setNavigationBarTitle({
  123. title: "商品详情",
  124. });
  125. },
  126. };
  127. </script>
  128. <style lang="scss" scoped>
  129. .page {
  130. background-color: #fff;
  131. padding-bottom: 150rpx;
  132. .top-fail {
  133. height: 60rpx;
  134. background-color: #fff1ee;
  135. padding-left: 24rpx;
  136. display: flex;
  137. align-items: center;
  138. font-size: 24rpx;
  139. color: #333;
  140. .fail-icon {
  141. width: 32rpx;
  142. height: 32rpx;
  143. margin-right: 10rpx;
  144. }
  145. }
  146. .fail {
  147. height: 60rpx;
  148. background-color: #fff1d7;
  149. padding-left: 24rpx;
  150. display: flex;
  151. align-items: center;
  152. font-size: 24rpx;
  153. color: #333;
  154. .fail-icon {
  155. width: 32rpx;
  156. height: 32rpx;
  157. margin-right: 10rpx;
  158. }
  159. }
  160. .goods-img {
  161. width: 100%;
  162. height: 750rpx;
  163. }
  164. .price {
  165. color: #f83224;
  166. margin-top: 36rpx;
  167. padding-left: 40rpx;
  168. font-weight: 600;
  169. }
  170. .goods-title {
  171. padding: 0 40rpx;
  172. font-size: 32rpx;
  173. margin-top: 20rpx;
  174. }
  175. .goods-detail {
  176. font-size: 28rpx;
  177. margin-top: 84rpx;
  178. padding-left: 40rpx;
  179. }
  180. .detail {
  181. padding: 24rpx 20rpx;
  182. .detail-img {
  183. width: 100%;
  184. }
  185. }
  186. .footer {
  187. position: fixed;
  188. bottom: 0;
  189. width: 100%;
  190. padding-bottom: 84rpx;
  191. padding-top: 20rpx;
  192. background-color: #fff;
  193. .btn {
  194. border-radius: 52rpx;
  195. background-color: #f83224;
  196. color: #fff;
  197. border: none;
  198. padding: 0;
  199. margin: 0;
  200. width: 94%;
  201. font-size: 30rpx;
  202. margin: 0 auto;
  203. }
  204. }
  205. }
  206. </style>