| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 | <template>	<view :class="type=='store'?'medicine-storeitem':'medicine-item'" @click="showProduct">		<view class="x-bc" style="margin-bottom: 16rpx;">			<view class="pro-name ellipsis" style="white-space: normal;">{{ item.productName || '' }}</view>			<view class="myotctxt" v-show="item.productType" :style="{background:_background(item.productType)}">{{$getDictLabelName("storeProductType",item.productType)}}</view>		</view>		<view class="x-f">			<view class="medicine">				<image :src="item.image" mode="aspectFill"></image>				<!-- {{$getDictLabelName("storeProductType",item.productType)}} -->				<!-- <view class="otc">处方药</view> -->				<!-- <image class="otc" src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/newImages/index/blue_lable_otc.svg" mode="aspectFill"></image> -->			</view>			<view class="medicine-r">				<view class="desc ellipsis">包装规格:{{ item.prescribeSpec || '--' }}</view>				<view class="desc ellipsis">批准文号:{{ item.batchNumber || '--' }}</view>				<view class="desc ellipsis">生产厂家:{{ item.mah || '--' }}</view>				<!-- <view class="desc"><text style="color: #2583EB;margin: 0 10rpx;">{{item.storeCount||0}}</text> 商家销售 </view> -->				<view class="price-box x-bc">					<view>						<text class="price-box-unit">¥</text>						<text class="price-box-integer">{{splitPrice(item.price || 0).intPart}}</text>						<text class="price-box-decimal">.{{splitPrice(item.price || 0).decPart}}</text>						<!-- <text class="price-box-text">/日</text> -->						<!-- <text class="old" v-show="item.price!=item.otPrice&&item.otPrice!==null&&item.otPrice!==undefined">¥{{item.otPrice.toFixed(2)}}</text> -->					</view>					<view class="desc" v-if="type!='store'"><text style="color: #2583EB;margin: 0 10rpx;">{{item.storeCount||0}}</text> 商家销售 </view>				</view>			</view>		</view>	</view></template><script>	export default {		props: ['item','type','storeId'],		data() {			return {							}		},		computed: {			_background() {				//productType: 1:OTC,2:Rx,3:非药品,4:器械				return (productType)=> {					switch (productType) {						case 1: return '#37E2EA' // OTC						case 2: return 'red'     // Rx						case 3: return '#2583EB' // 非药品						case 4: return '#999'    // 器械						default: return '#ccc'					}				}			}		},		methods: {			splitPrice(num) {			  const [intPart = '0', decPart = '00'] = String(num||0).split('.');			  return { intPart, decPart: decPart.padEnd(2, '0').slice(0, 2) };			},			showProduct() {				uni.navigateTo({					url: '/pages_shopping/productDetails?productId=' + this.item.productId+'&storeId='+this.storeId || ''				})			},		}	}</script><style scoped lang="scss">	.myotctxt {		background-color: #37E2EA;		font-family: PingFang SC, PingFang SC;		font-weight: 500;		font-size: 24rpx;		color: #FFFFFF;		padding: 4rpx 14rpx;		border-radius: 6rpx;	}	.pro-name {		flex: 1;		font-family: PingFang SC, PingFang SC;		font-weight: 500;		font-size: 32rpx;		color: #191A1B;		flex: 1;		overflow: hidden;	}	.old{		margin-left: 14rpx;		font-size: 26upx;		font-family: PingFang SC;		font-weight: 500;		text-decoration: line-through;		color: #BBBBBB;		line-height: 1.1;	}	.price-box {		font-family: Roboto, Roboto;		font-weight: bold;		font-size: 36rpx;		color: #FF5C03;		margin-top: 22rpx;			&-unit {			font-weight: 600;			font-size: 26rpx;		}			&-decimal {			font-weight: 600;			font-size: 26rpx;		}			&-text {			font-family: PingFang SC, PingFang SC;			font-weight: 500;			font-size: 26rpx;		}	}	.medicine {		width: 200rpx;		height: 200rpx;		flex-shrink: 0;		border-radius: 16rpx 16rpx 16rpx 16rpx;		overflow: hidden;		position: relative;		margin-right: 24rpx;		.otc {			position: absolute;			top: 0;			left: 0;			width: 96rpx;			height: 40rpx;			border-radius: 0;		}			image {			width: 100%;			height: 100%;			border-radius: 16rpx 16rpx 16rpx 16rpx;		}			&-r {			font-family: PingFang SC, PingFang SC;			font-weight: 500;			font-size: 32rpx;			color: #191A1B;			flex: 1;			overflow: hidden;		}			&-item {			align-items: flex-start !important;			padding: 20rpx 0;		}		&-storeitem {			align-items: flex-start !important;			background: #FFF;			padding: 20rpx;			border-radius: 16upx;			margin-bottom: 20upx;		}	}		.desc {		display: block;		margin-top: 12rpx;		font-family: PingFang SC, PingFang SC;		font-weight: 400;		font-size: 24rpx;		color: #939599;	}</style>
 |