123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <template>
- <view class="detail" @click="$emit('toDetail')">
- <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">
- <view class="_label" v-if="!productAndCommodity">
- 供应商
- </view>
- <view class="title">
- La Chapelle Sport拉夏贝尔高级感收…
- </view>
- </view>
- <view class="inventory" v-if="productAndCommodity">
- <text>库存:</text>
- <text>222</text>
- </view>
- <view class="inventory" v-else>
- 咖啡伴侣|小巧便携|膳食纤维
- </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" v-if="!batch&&productAndCommodity=='product'">
- <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 class="btn-list" v-if="!batch&&productAndCommodity == 'commodity'">
- <button class="btn-1" v-if="status == 1" @click.stop="$emit('openDiscountsPopup',obj)">我要打折</button>
- <button class="btn-1" v-if="status == 1">下架</button>
- <button class="btn-1" v-if="status == 4">删除</button>
- <button class="btn-1" v-if="status == 4">商家</button>
- <button class="btn-2" v-if="status == 3">编辑</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- status: {
- typeof: String,
- default: ""
- },
- productAndCommodity: {
- typeof: String,
- default: ""
- },
- batch: {
- typeof: Boolean,
- default: false
- }
- },
- data() {
- return {
- obj: {
- url: 'https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/136953/20/42322/162799/665e6a6cF32604c1e/b9586c7ae52dc284.jpg.avif',
- title: "La Chapelle Sport拉夏贝尔高…",
- price: "75.00"
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .detail {
- background-color: #fff;
- border-radius: 16rpx;
- margin: 10rpx 0;
- width: 96%;
- .content {
- display: flex;
- position: relative;
- flex-shrink: 0;
- justify-content: flex-start;
- .content-img {
- width: 164rpx;
- height: 164rpx;
- border-radius: 12rpx;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .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;
- width: 88%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-break: break-word;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .title {
- width: 75%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-break: break-word;
- }
- ._label {
- color: #fff;
- background-color: #FFB111;
- width: 72rpx;
- height: 32rpx;
- text-align: center;
- line-height: 32rpx;
- height: 32rpx;
- border-radius: 4rpx;
- font-size: 20rpx;
- margin-right: 10rpx;
- }
- }
- .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>
|