修改618图标间距

This commit is contained in:
tangxinyue 2026-05-30 15:47:31 +08:00
parent 788f4e6b5e
commit 7eb68e8c15
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,6 @@
<template> <template>
<view class="list-card-container" v-if="item" @click="handleCardClick(item.id)" @touchstart="handleTouchStart" @touchmove="handleTouchMove" @touchend="handleTouchEnd" @touchcancel="handleTouchEnd"> <view class="list-card-container" v-if="item" @click="handleCardClick(item.id)" @touchstart="handleTouchStart"
@touchmove="handleTouchMove" @touchend="handleTouchEnd" @touchcancel="handleTouchEnd">
<!-- 头部店铺信息和状态 --> <!-- 头部店铺信息和状态 -->
<view class="header-box flex-between flex-align-center"> <view class="header-box flex-between flex-align-center">
<view class="shop-info flex-align-center"> <view class="shop-info flex-align-center">
@ -242,18 +243,19 @@ const handleCardClick = (id) => {
font-size: 28rpx; font-size: 28rpx;
color: #1A1A1A; color: #1A1A1A;
line-height: 24rpx; line-height: 24rpx;
margin-right: 8rpx; // margin-right: 8rpx;
} }
.brand-img { .brand-img {
width: 94rpx; width: 94rpx;
height: 28rpx; height: 28rpx;
margin-right: 10rpx; margin-left: 8rpx;
} }
.flag-img { .flag-img {
width: 74rpx; width: 74rpx;
height: 28rpx; height: 28rpx;
margin-left: 8rpx;
} }
.status-text { .status-text {

View File

@ -89,7 +89,7 @@
</image> </image>
<image v-if="order.shop.hasFlagship" class="flagship-tag" <image v-if="order.shop.hasFlagship" class="flagship-tag"
src="/static/image/shopping/pdd/qijiandian.png" mode="heightFix"></image> src="/static/image/shopping/pdd/qijiandian.png" mode="heightFix"></image>
<image v-if="order.shop.has618" style="margin-left: 12rpx;height: 28rpx;" class="flagship-tag" <image v-if="order.shop.has618" style="margin-left: 8rpx;height: 28rpx;" class="flagship-tag"
src="/static/image/shopping/pdd/618.png" mode="heightFix"></image> src="/static/image/shopping/pdd/618.png" mode="heightFix"></image>
</view> </view>
@ -606,16 +606,16 @@ const selectPayMethod = (index) => {
font-size: 28rpx; font-size: 28rpx;
color: #1A1A1A; color: #1A1A1A;
line-height: 24rpx; line-height: 24rpx;
margin-right: 8rpx;
} }
.brand-auth-tag { .brand-auth-tag {
height: 28rpx; height: 28rpx;
margin-right: 10rpx; margin-left: 8rpx;
} }
.flagship-tag { .flagship-tag {
height: 28rpx; height: 28rpx;
margin-left: 8rpx;
} }
} }