Files
integral-shop/single_uniapp22miao/components/WaterfallsFlowItem/WaterfallsFlowItem.vue
apple 079076a70e miao33: 从 main 同步 single_uniapp22miao,dart-sass 兼容修复,DEPLOY.md 更新
- 从 main 获取 single_uniapp22miao 子项目
- dart-sass: /deep/ -> ::v-deep,calc 运算符加空格
- DEPLOY.md 采用 shccd159 版本(4 子项目架构说明)

Made-with: Cursor
2026-03-16 11:16:42 +08:00

236 lines
4.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class='list acea-row row-between-wrapper' :data-theme="theme">
<view class='item' hover-class='none' @click="goDetail(item)">
<view class='pictrue'>
<easy-loadimage mode="widthFix" :image-src="item.image"></easy-loadimage>
<view v-if="item.activityStyle" :style="{ backgroundImage: `url(${item.activityStyle})` }"
class="border-picture"></view>
</view>
<view class='texts'>
<view class='names line2'>
{{item.storeName}}
</view>
<view class='money mt-20'>
<view class="acea-row row-middle price">
<view>
<span class="num">{{item.price}}</span>
</view>
</view>
<view class="sold mt-18">
<text v-if="Math.floor(item.replyNum)>0" class="regular">{{item.replyNum}}条评论</text>
<text v-if="item.replyNum===0">暂无评论</text>
<text v-if="Number(item.positiveRatio)>0"
class="m-l-8">好评{{$util.$h.Mul(item.positiveRatio, 100)}}%</text>
</view>
<view class="sold">已售 {{ item.sales }} {{item.unitName}}
</view>
</view>
</view>
</view>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import easyLoadimage from '@/components/base/easy-loadimage.vue';
let app = getApp();
export default {
components: {
easyLoadimage,
},
props: {
item: {
type: Object,
require: true
},
type: {
type: Number,
default: 0
},
isStore: {
type: [String, Number],
default: '1'
},
isLogin: {
type: Boolean,
require: false
}
},
data() {
return {
theme: app.globalData.theme,
//普通价格
svipPriceStyle: {
svipBox: {
height: '26rpx',
borderRadius: '60rpx 56rpx 56rpx 20rpx',
},
icon: {
height: '26rpx',
fontSize: '18rpx',
borderRadius: '12rpx 0 12rpx 2rpx'
},
price: {
fontSize: '38rpx'
},
svipPrice: {
fontSize: '22rpx'
}
},
//svip价格
svipIconStyle: {
svipBox: {
height: '26rpx',
borderRadius: '24rpx 40rpx 40rpx 0.4rpx',
},
price: {
fontSize: '38rpx'
},
svipPrice: {
fontSize: '18rpx'
}
}
}
},
methods: {
// 去详情页
goDetail(item) {
uni.navigateTo({
url: `/pages/goods/goods_details/index?id=${item.id}`
})
},
authOpen() {
this.$emit('authOpen');
},
followToggle(item) {
this.$emit('followToggle', item);
}
},
}
</script>
<style lang="scss" scoped>
.tagSolid {
margin-bottom: 4rpx;
}
.merType {
@include main_bg_color(theme);
}
.list {
.item {
width: 100%;
.pictrue {
::v-deepimage,
::v-deep.easy-loadimage,
uni-image {
width: 100%;
height: 100%;
border-radius: 20rpx 20rpx 0 0;
overflow: hidden;
}
}
}
.texts {
padding: 16rpx;
font-size: 30rpx;
color: #222;
.names {
font-size: 28rpx;
font-weight: 400;
color: #333333;
}
.money {
.price {
@include price_color(theme);
}
.num {
font-size: 38rpx;
font-weight: 900;
}
.y-money {
font-size: 26rpx;
color: #888888;
text-decoration: line-through;
margin-left: 14rpx;
}
}
}
}
.company {
display: flex;
align-items: center;
font-size: 26rpx;
.name {
width: 210rpx;
display: inline-block;
color: #666 !important;
height: auto !important;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-bottom: 0 !important;
margin-right: 10rpx;
}
.flex {
display: flex;
align-items: center;
color: #282828 !important;
.iconfont {
font-size: 16rpx;
margin-top: 4rpx;
}
}
}
.sold {
font-size: 22rpx;
color: #666;
margin-bottom: 4rpx;
}
.m-l-8 {
margin-left: 8rpx;
}
.list .item .pictrue,
.easy-loadimage,
image,
uni-image {
position: relative;
width: 100%;
height: 330rpx;
border-radius: 16rpx 16rpx 0 0;
overflow: hidden;
::v-deep.easy-loadimage,
uni-image,
image {
height: 330rpx;
border-radius: 16rpx 16rpx 0 0;
}
margin: 0 !important;
}
</style>