goodsInformation.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <view class="detail" @click="$emit('toDetail')">
  3. <view class="content">
  4. <image
  5. src="https://img14.360buyimg.com/jdcms/s460x460_jfs/t1/229465/15/14432/86913/6631bc7cF31d5200b/63dd6b0e1dc4e73c.jpg.webp"
  6. mode="" class="content-img"></image>
  7. <view class="mask" v-if="status!=1">
  8. <view class="text-1" v-if="status == 2">
  9. 审核中
  10. </view>
  11. <view class="text-1" v-if="status == 3">
  12. 审核失败
  13. </view>
  14. <view class="text-1" v-if="status == 4">
  15. 已下架
  16. </view>
  17. </view>
  18. <view class="content-right">
  19. <view class="goods-title">
  20. <view class="_label" v-if="!productAndCommodity">
  21. 供应商
  22. </view>
  23. <view class="title">
  24. La Chapelle Sport拉夏贝尔高级感收…
  25. </view>
  26. </view>
  27. <view class="inventory" v-if="productAndCommodity">
  28. <text>库存:</text>
  29. <text>222</text>
  30. </view>
  31. <view class="inventory" v-else>
  32. 咖啡伴侣|小巧便携|膳食纤维
  33. </view>
  34. <view class="commodity-price">
  35. <text style="font-size: 20rpx;">¥</text>
  36. <text>133</text>.
  37. <text style="font-size: 20rpx;">22</text>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="btn-list" v-if="!batch&&productAndCommodity=='product'">
  42. <button class="btn-1" v-if="status == 1">下架商品</button>
  43. <button class="btn-1" v-if="status == 2">查看详情</button>
  44. <button class="btn-2" v-if="status == 3">重新提交</button>
  45. <button class="btn-1" v-if="status == 4">编辑</button>
  46. <button class="btn-1" v-if="status == 4">上架商品</button>
  47. </view>
  48. <view class="btn-list" v-if="!batch&&productAndCommodity == 'commodity'">
  49. <button class="btn-1" v-if="status == 1" @click.stop="$emit('openDiscountsPopup',obj)">我要打折</button>
  50. <button class="btn-1" v-if="status == 1">下架</button>
  51. <button class="btn-1" v-if="status == 4">删除</button>
  52. <button class="btn-1" v-if="status == 4">商家</button>
  53. <button class="btn-2" v-if="status == 3">编辑</button>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. props: {
  60. status: {
  61. typeof: String,
  62. default: ""
  63. },
  64. productAndCommodity: {
  65. typeof: String,
  66. default: ""
  67. },
  68. batch: {
  69. typeof: Boolean,
  70. default: false
  71. }
  72. },
  73. data() {
  74. return {
  75. obj: {
  76. url: 'https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/136953/20/42322/162799/665e6a6cF32604c1e/b9586c7ae52dc284.jpg.avif',
  77. title: "La Chapelle Sport拉夏贝尔高…",
  78. price: "75.00"
  79. }
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss" scoped>
  85. .detail {
  86. background-color: #fff;
  87. border-radius: 16rpx;
  88. margin: 10rpx 0;
  89. width: 96%;
  90. .content {
  91. display: flex;
  92. position: relative;
  93. flex-shrink: 0;
  94. justify-content: flex-start;
  95. .content-img {
  96. width: 164rpx;
  97. height: 164rpx;
  98. border-radius: 12rpx;
  99. margin-right: 20rpx;
  100. flex-shrink: 0;
  101. }
  102. .mask {
  103. width: 164rpx;
  104. height: 164rpx;
  105. border-radius: 12rpx;
  106. position: absolute;
  107. background-color: rgba(255, 255, 255, .3);
  108. z-index: 100;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. .text-1 {
  113. width: 108rpx;
  114. height: 44rpx;
  115. text-align: center;
  116. line-height: 44rpx;
  117. color: #fff;
  118. background-color: rgba(0, 0, 0, .4);
  119. border-radius: 22rpx;
  120. font-size: 20rpx;
  121. }
  122. }
  123. .content-right {
  124. .goods-title {
  125. color: #333;
  126. margin-bottom: 20rpx;
  127. width: 88%;
  128. overflow: hidden;
  129. text-overflow: ellipsis;
  130. white-space: nowrap;
  131. word-break: break-word;
  132. display: flex;
  133. justify-content: flex-start;
  134. align-items: center;
  135. .title {
  136. width: 75%;
  137. overflow: hidden;
  138. text-overflow: ellipsis;
  139. white-space: nowrap;
  140. word-break: break-word;
  141. }
  142. ._label {
  143. color: #fff;
  144. background-color: #FFB111;
  145. width: 72rpx;
  146. height: 32rpx;
  147. text-align: center;
  148. line-height: 32rpx;
  149. height: 32rpx;
  150. border-radius: 4rpx;
  151. font-size: 20rpx;
  152. margin-right: 10rpx;
  153. }
  154. }
  155. .inventory {
  156. color: rgba(54, 54, 54, .5);
  157. font-size: 24rpx;
  158. margin-bottom: 30rpx;
  159. }
  160. .commodity-price {
  161. color: #f83224;
  162. font-size: 32rpx;
  163. font-weight: 600;
  164. }
  165. }
  166. }
  167. .btn-list {
  168. display: flex;
  169. justify-content: flex-end;
  170. .btn-1 {
  171. width: 152rpx;
  172. height: 60rpx;
  173. margin: 0;
  174. padding: 0;
  175. font-size: 26rpx;
  176. color: #333;
  177. border: 2rpx solid rgba(151, 151, 151, .3);
  178. border-radius: 30rpx;
  179. background-color: #fff;
  180. line-height: 60rpx;
  181. margin-left: 20rpx;
  182. }
  183. .btn-2 {
  184. width: 152rpx;
  185. height: 60rpx;
  186. margin: 0;
  187. padding: 0;
  188. font-size: 26rpx;
  189. color: #f83224;
  190. border: 2rpx solid #f83224;
  191. border-radius: 30rpx;
  192. background-color: #fff;
  193. line-height: 60rpx;
  194. }
  195. }
  196. }
  197. </style>