goodsInformation.vue 6.3 KB

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