123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <view class="detail">
- <view class="content">
- <image
- src="https://img14.360buyimg.com/jdcms/s460x460_jfs/t1/229465/15/14432/86913/6631bc7cF31d5200b/63dd6b0e1dc4e73c.jpg.webp"
- mode="" class="content-img"></image>
- <view class="mask" v-if="status!=1">
- <view class="text-1" v-if="status == 2">
- 审核中
- </view>
- <view class="text-1" v-if="status == 3">
- 审核失败
- </view>
- <view class="text-1" v-if="status == 4">
- 已下架
- </view>
- </view>
- <view class="content-right">
- <view class="goods-title">
- La Chapelle Sport拉夏贝尔高级感收…
- </view>
- <view class="inventory">
- <text>库存:</text>
- <text>222</text>
- </view>
- <view class="commodity-price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- </view>
- <view class="btn-list">
- <button class="btn-1" v-if="status == 1">下架商品</button>
- <button class="btn-1" v-if="status == 2">查看详情</button>
- <button class="btn-2" v-if="status == 3">重新提交</button>
- <button class="btn-1" v-if="status == 4">编辑</button>
- <button class="btn-1" v-if="status == 4">上架商品</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- props:{
- status:{
- typeof:String,
- default:""
- }
- },
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .detail{
- padding: 24rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- .content{
- display: flex;
- position: relative;
- .content-img{
- width: 164rpx;
- height: 164rpx;
- border-radius: 12rpx;
- margin-right: 20rpx;
- }
- .mask{
- width: 164rpx;
- height: 164rpx;
- border-radius: 12rpx;
- position: absolute;
- background-color: rgba(255, 255, 255, .3);
- z-index: 100;
- display: flex;
- justify-content: center;
- align-items: center;
- .text-1{
- width: 108rpx;
- height: 44rpx;
- text-align: center;
- line-height: 44rpx;
- color: #fff;
- background-color: rgba(0, 0, 0, .4);
- border-radius: 22rpx;
- font-size: 20rpx;
- }
- }
- .content-right{
- .goods-title{
- color: #333;
- margin-bottom: 20rpx;
- }
- .inventory{
- color: rgba(54,54,54,.5);
- font-size: 24rpx;
- margin-bottom: 30rpx;
- }
- .commodity-price{
- color: #f83224;
- font-size: 32rpx;
- font-weight: 600;
- }
- }
- }
- .btn-list{
- display: flex;
- justify-content: flex-end;
- .btn-1{
- width: 152rpx;
- height: 60rpx;
- margin: 0;
- padding: 0;
- font-size: 26rpx;
- color: #333;
- border: 2rpx solid rgba(151,151,151,.3);
- border-radius: 30rpx;
- background-color: #fff;
- line-height: 60rpx;
- margin-left: 20rpx;
- }
- .btn-2{
- width: 152rpx;
- height: 60rpx;
- margin: 0;
- padding: 0;
- font-size: 26rpx;
- color: #f83224;
- border: 2rpx solid #f83224;
- border-radius: 30rpx;
- background-color: #fff;
- line-height: 60rpx;
- }
- }
- }
- </style>
|