goodsInformation.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="detail" @click="$emit('toDetail')" :style="isPadding">
  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. computed:{
  83. isPadding(){
  84. if(this.productAndCommodity == 'product'){
  85. return "padding: 28rpx 20rpx 20rpx;"
  86. }
  87. }
  88. }
  89. }
  90. </script>
  91. <style lang="scss" scoped>
  92. .detail {
  93. background-color: #fff;
  94. border-radius: 16rpx;
  95. margin: 10rpx 0;
  96. width: 96%;
  97. .content {
  98. display: flex;
  99. position: relative;
  100. flex-shrink: 0;
  101. justify-content: flex-start;
  102. .content-img {
  103. width: 164rpx;
  104. height: 164rpx;
  105. border-radius: 12rpx;
  106. margin-right: 20rpx;
  107. flex-shrink: 0;
  108. }
  109. .mask {
  110. width: 164rpx;
  111. height: 164rpx;
  112. border-radius: 12rpx;
  113. position: absolute;
  114. background-color: rgba(255, 255, 255, .3);
  115. z-index: 100;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. .text-1 {
  120. width: 108rpx;
  121. height: 44rpx;
  122. text-align: center;
  123. line-height: 44rpx;
  124. color: #fff;
  125. background-color: rgba(0, 0, 0, .4);
  126. border-radius: 22rpx;
  127. font-size: 20rpx;
  128. }
  129. }
  130. .content-right {
  131. .goods-title {
  132. color: #333;
  133. margin-bottom: 20rpx;
  134. width: 88%;
  135. overflow: hidden;
  136. text-overflow: ellipsis;
  137. white-space: nowrap;
  138. word-break: break-word;
  139. display: flex;
  140. justify-content: flex-start;
  141. align-items: center;
  142. .title {
  143. width: 75%;
  144. overflow: hidden;
  145. text-overflow: ellipsis;
  146. white-space: nowrap;
  147. word-break: break-word;
  148. }
  149. ._label {
  150. color: #fff;
  151. background-color: #FFB111;
  152. width: 72rpx;
  153. height: 32rpx;
  154. text-align: center;
  155. line-height: 32rpx;
  156. height: 32rpx;
  157. border-radius: 4rpx;
  158. font-size: 20rpx;
  159. margin-right: 10rpx;
  160. }
  161. }
  162. .inventory {
  163. color: rgba(54, 54, 54, .5);
  164. font-size: 24rpx;
  165. margin-bottom: 30rpx;
  166. }
  167. .commodity-price {
  168. color: #f83224;
  169. font-size: 32rpx;
  170. font-weight: 600;
  171. }
  172. }
  173. }
  174. .btn-list {
  175. display: flex;
  176. justify-content: flex-end;
  177. .btn-1 {
  178. width: 152rpx;
  179. height: 60rpx;
  180. margin: 0;
  181. padding: 0;
  182. font-size: 26rpx;
  183. color: #333;
  184. border: 2rpx solid rgba(151, 151, 151, .3);
  185. border-radius: 30rpx;
  186. background-color: #fff;
  187. line-height: 60rpx;
  188. margin-left: 20rpx;
  189. }
  190. .btn-2 {
  191. width: 152rpx;
  192. height: 60rpx;
  193. margin: 0;
  194. padding: 0;
  195. font-size: 26rpx;
  196. color: #f83224;
  197. border: 2rpx solid #f83224;
  198. border-radius: 30rpx;
  199. background-color: #fff;
  200. line-height: 60rpx;
  201. }
  202. }
  203. }
  204. </style>