goodsInformation.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="detail">
  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. La Chapelle Sport拉夏贝尔高级感收…
  21. </view>
  22. <view class="inventory">
  23. <text>库存:</text>
  24. <text>222</text>
  25. </view>
  26. <view class="commodity-price">
  27. <text style="font-size: 20rpx;">¥</text>
  28. <text>133</text>.
  29. <text style="font-size: 20rpx;">22</text>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="btn-list">
  34. <button class="btn-1" v-if="status == 1">下架商品</button>
  35. <button class="btn-1" v-if="status == 2">查看详情</button>
  36. <button class="btn-2" v-if="status == 3">重新提交</button>
  37. <button class="btn-1" v-if="status == 4">编辑</button>
  38. <button class="btn-1" v-if="status == 4">上架商品</button>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. props:{
  45. status:{
  46. typeof:String,
  47. default:""
  48. }
  49. },
  50. data() {
  51. return {}
  52. }
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. .detail{
  57. padding: 24rpx 20rpx;
  58. background-color: #fff;
  59. border-radius: 16rpx;
  60. .content{
  61. display: flex;
  62. position: relative;
  63. .content-img{
  64. width: 164rpx;
  65. height: 164rpx;
  66. border-radius: 12rpx;
  67. margin-right: 20rpx;
  68. }
  69. .mask{
  70. width: 164rpx;
  71. height: 164rpx;
  72. border-radius: 12rpx;
  73. position: absolute;
  74. background-color: rgba(255, 255, 255, .3);
  75. z-index: 100;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. .text-1{
  80. width: 108rpx;
  81. height: 44rpx;
  82. text-align: center;
  83. line-height: 44rpx;
  84. color: #fff;
  85. background-color: rgba(0, 0, 0, .4);
  86. border-radius: 22rpx;
  87. font-size: 20rpx;
  88. }
  89. }
  90. .content-right{
  91. .goods-title{
  92. color: #333;
  93. margin-bottom: 20rpx;
  94. }
  95. .inventory{
  96. color: rgba(54,54,54,.5);
  97. font-size: 24rpx;
  98. margin-bottom: 30rpx;
  99. }
  100. .commodity-price{
  101. color: #f83224;
  102. font-size: 32rpx;
  103. font-weight: 600;
  104. }
  105. }
  106. }
  107. .btn-list{
  108. display: flex;
  109. justify-content: flex-end;
  110. .btn-1{
  111. width: 152rpx;
  112. height: 60rpx;
  113. margin: 0;
  114. padding: 0;
  115. font-size: 26rpx;
  116. color: #333;
  117. border: 2rpx solid rgba(151,151,151,.3);
  118. border-radius: 30rpx;
  119. background-color: #fff;
  120. line-height: 60rpx;
  121. margin-left: 20rpx;
  122. }
  123. .btn-2{
  124. width: 152rpx;
  125. height: 60rpx;
  126. margin: 0;
  127. padding: 0;
  128. font-size: 26rpx;
  129. color: #f83224;
  130. border: 2rpx solid #f83224;
  131. border-radius: 30rpx;
  132. background-color: #fff;
  133. line-height: 60rpx;
  134. }
  135. }
  136. }
  137. </style>