goodsInformation.vue 6.4 KB

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