123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <view class="detail" @click="$emit('toDetail', itemInfo)" :style="isPadding">
- <view class="content">
- <image :src="itemInfo.image" mode="" class="content-img"></image>
- <view
- class="mask"
- v-if="
- productAndCommodity == 'product' &&
- (itemInfo.review_status != 1 || itemInfo.status != 'normal')
- "
- >
- <view class="text-1" v-if="itemInfo.review_status == 0"> 审核中 </view>
- <view class="text-1" v-else-if="itemInfo.review_status == 2">
- 审核失败
- </view>
- <view class="text-1" v-else-if="itemInfo.status == 'down'">
- 已下架
- </view>
- </view>
- <view class="content-right">
- <view class="goods-title">
- <view
- class="_label"
- v-if="!productAndCommodity && itemInfo.source == 2"
- >
- 供应商
- </view>
- <view
- class="_label"
- style="background-color: #f83224"
- v-if="!productAndCommodity && itemInfo.source == 1"
- >
- 自营
- </view>
- <view
- class="_label"
- v-if="!productAndCommodity && itemInfo.source == 0"
- >
- 团长
- </view>
- <view class="title" v-if="productAndCommodity == 'product'">
- {{ itemInfo.name_cn }}
- </view>
- <view class="title" v-else>{{ itemInfo.name_cn }}</view>
- </view>
- <view class="inventory" v-if="productAndCommodity">
- <text>库存:</text>
- <text>222</text>
- </view>
- <view class="inventory" v-else>
- <text>{{ itemInfo.labels.join(" | ") }} </text>
- </view>
- <view class="commodity-price" v-if="productAndCommodity == 'product'">
- <text style="font-size: 20rpx">¥</text>
- <text>{{ itemInfo.discount_price.split(".")[0] }}</text
- >.
- <text style="font-size: 20rpx">{{
- itemInfo.discount_price.split(".")[1]
- }}</text>
- <text
- style="
- font-size: 24rpx;
- color: #ccc;
- text-decoration-line: line-through;
- "
- >¥{{ itemInfo.price }}</text
- >
- </view>
- <view v-else class="commodity-price">
- <text style="font-size: 20rpx">¥</text>
- <text>{{ itemInfo.price.split(".")[0] }}</text
- >.
- <text style="font-size: 20rpx">{{
- itemInfo.price.split(".")[1]
- }}</text>
- </view>
- </view>
- </view>
- <view class="btn-list" v-if="!batch && productAndCommodity == 'product'">
- <button
- class="btn-1"
- v-if="itemInfo.review_status == 1 && itemInfo.status == 'normal'"
- >
- 下架商品
- </button>
- <button class="btn-1" v-if="itemInfo.review_status == 0">查看详情</button>
- <!-- <button class="btn-2" v-if="itemInfo.review_status == 2">重新提交</button> -->
- <!-- <button class="btn-1" v-if="itemInfo.status == 'down'">编辑</button> -->
- <button
- class="btn-1"
- v-if="
- itemInfo.review_status != '0' &&
- itemInfo.review_status != '2' &&
- itemInfo.status == 'down'
- "
- >
- 上架商品
- </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: "",
- },
- itemInfo: {
- typeof: Object,
- default: () => {
- return {};
- },
- },
- productAndCommodity: {
- typeof: String,
- default: "",
- },
- batch: {
- typeof: Boolean,
- default: false,
- },
- },
- watch: {},
- 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",
- },
- lebelList: [],
- };
- },
- computed: {
- isPadding() {
- if (this.productAndCommodity == "product") {
- return "padding: 28rpx 20rpx 20rpx;";
- }
- },
- },
- };
- </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;
- width: 100%;
- .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, 0.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, 0.4);
- border-radius: 22rpx;
- font-size: 20rpx;
- }
- }
- .content-right {
- width: 80%;
- .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, 0.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, 0.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>
|