goodsInformation.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="detail" @click="$emit('toDetail', itemInfo)" :style="isPadding">
  3. <view class="content">
  4. <image :src="itemInfo.goods.image" mode="" class="content-img"></image>
  5. <view class="mask" v-if="itemInfo.goods.status == 'down'">
  6. <view class="text-1"> 已下架 </view>
  7. </view>
  8. <view class="content-right">
  9. <view class="goods-title">
  10. <view class="_label" v-if="itemInfo.goods.source == 2"> 供应商 </view>
  11. <view
  12. class="_label"
  13. style="background-color: #f83224"
  14. v-if="itemInfo.goods.source == 1"
  15. >
  16. 自营
  17. </view>
  18. <view class="_label" v-if="itemInfo.goods.source == 0"> 团长 </view>
  19. <view class="title" v-if="productAndCommodity == 'product'">
  20. {{ itemInfo.name_cn }}
  21. </view>
  22. <view class="title" v-else>{{ itemInfo.goods.name_cn }}</view>
  23. </view>
  24. <view class="inventory" v-if="productAndCommodity">
  25. <text>库存:</text>
  26. <text>{{ itemInfo.goods.stock }}</text>
  27. </view>
  28. <view class="inventory" v-else>
  29. <text>{{ itemInfo.labels.join(" | ") }} </text>
  30. </view>
  31. <view class="price">
  32. <view class="commodity-price">
  33. <text style="font-size: 20rpx">¥</text>
  34. <text>{{ itemInfo.goods.discount_price.split(".")[0] }}</text
  35. >.
  36. <text style="font-size: 20rpx">{{
  37. itemInfo.goods.discount_price.split(".")[1]
  38. }}</text>
  39. </view>
  40. <view
  41. class="discount_price"
  42. v-if="itemInfo.goods.price != itemInfo.goods.discount_price"
  43. >
  44. ¥{{ itemInfo.goods.price }}</view
  45. >
  46. </view>
  47. </view>
  48. </view>
  49. <view class="btn-list" v-if="!batch && productAndCommodity == 'commodity'">
  50. <button
  51. class="btn-1"
  52. v-if="itemInfo.goods.status == 'normal'"
  53. @click.stop="$emit('openDiscountsPopup', itemInfo)"
  54. >
  55. 我要打折
  56. </button>
  57. <button class="btn-1" v-if="itemInfo.goods.status == 'normal'">
  58. 下架
  59. </button>
  60. <button class="btn-1" v-if="itemInfo.goods.status == 'down'">删除</button>
  61. <button class="btn-1" v-if="itemInfo.goods.status == 'down'">上架</button>
  62. <!-- <button class="btn-2" v-if="itemInfo.goods.status == 'down'">编辑</button> -->
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. export default {
  68. props: {
  69. status: {
  70. typeof: String,
  71. default: "",
  72. },
  73. itemInfo: {
  74. typeof: Object,
  75. default: () => {
  76. return {};
  77. },
  78. },
  79. productAndCommodity: {
  80. typeof: String,
  81. default: "",
  82. },
  83. batch: {
  84. typeof: Boolean,
  85. default: false,
  86. },
  87. },
  88. watch: {},
  89. data() {
  90. return {
  91. obj: {
  92. url: "https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/136953/20/42322/162799/665e6a6cF32604c1e/b9586c7ae52dc284.jpg.avif",
  93. title: "La Chapelle Sport拉夏贝尔高…",
  94. price: "75.00",
  95. },
  96. lebelList: [],
  97. };
  98. },
  99. computed: {
  100. isPadding() {
  101. if (this.productAndCommodity == "product") {
  102. return "padding: 28rpx 20rpx 20rpx;";
  103. }
  104. },
  105. },
  106. };
  107. </script>
  108. <style lang="scss" scoped>
  109. .detail {
  110. background-color: #fff;
  111. border-radius: 16rpx;
  112. margin: 10rpx 0;
  113. width: 94vw;
  114. .content {
  115. display: flex;
  116. position: relative;
  117. flex-shrink: 0;
  118. justify-content: flex-start;
  119. width: 100%;
  120. .content-img {
  121. width: 164rpx;
  122. height: 164rpx;
  123. border-radius: 12rpx;
  124. margin-right: 20rpx;
  125. flex-shrink: 0;
  126. }
  127. .mask {
  128. width: 164rpx;
  129. height: 164rpx;
  130. border-radius: 12rpx;
  131. position: absolute;
  132. background-color: rgba(255, 255, 255, 0.3);
  133. z-index: 100;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. .text-1 {
  138. width: 108rpx;
  139. height: 44rpx;
  140. text-align: center;
  141. line-height: 44rpx;
  142. color: #fff;
  143. background-color: rgba(0, 0, 0, 0.4);
  144. border-radius: 22rpx;
  145. font-size: 20rpx;
  146. }
  147. }
  148. .content-right {
  149. width: 80%;
  150. .goods-title {
  151. color: #333;
  152. margin-bottom: 20rpx;
  153. width: 88%;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. white-space: nowrap;
  157. word-break: break-word;
  158. display: flex;
  159. justify-content: flex-start;
  160. align-items: center;
  161. .title {
  162. width: 75%;
  163. overflow: hidden;
  164. text-overflow: ellipsis;
  165. white-space: nowrap;
  166. word-break: break-word;
  167. }
  168. ._label {
  169. color: #fff;
  170. background-color: #ffb111;
  171. width: 72rpx;
  172. height: 32rpx;
  173. text-align: center;
  174. line-height: 32rpx;
  175. height: 32rpx;
  176. border-radius: 4rpx;
  177. font-size: 20rpx;
  178. margin-right: 10rpx;
  179. }
  180. }
  181. .inventory {
  182. color: rgba(54, 54, 54, 0.5);
  183. font-size: 24rpx;
  184. margin-bottom: 30rpx;
  185. }
  186. .commodity-price {
  187. color: #f83224;
  188. font-size: 32rpx;
  189. font-weight: 600;
  190. }
  191. .price {
  192. display: flex;
  193. align-items: flex-end;
  194. .discount_price {
  195. margin-left: 20rpx;
  196. font-size: 26rpx;
  197. color: rgba(51, 51, 51, 0.5);
  198. text-decoration-line: line-through;
  199. }
  200. }
  201. }
  202. }
  203. .btn-list {
  204. display: flex;
  205. justify-content: flex-end;
  206. .btn-1 {
  207. height: 60rpx;
  208. margin: 0;
  209. padding: 0;
  210. font-size: 26rpx;
  211. color: #333;
  212. border: 2rpx solid rgba(151, 151, 151, 0.3);
  213. border-radius: 30rpx;
  214. background-color: #fff;
  215. line-height: 60rpx;
  216. margin-left: 20rpx;
  217. padding: 0 30rpx;
  218. }
  219. .btn-2 {
  220. height: 60rpx;
  221. margin: 0;
  222. padding: 0;
  223. font-size: 26rpx;
  224. color: #f83224;
  225. border: 2rpx solid #f83224;
  226. border-radius: 30rpx;
  227. background-color: #fff;
  228. margin-left: 20rpx;
  229. line-height: 60rpx;
  230. padding: 0 30rpx;
  231. }
  232. }
  233. }
  234. </style>