style: replace legacy padding classes with inline pixel values
Remove the unused padding.scss stylesheet and its import from the main SCSS entrypoint. Update all legacy padding utility class names across every Vue component to use inline pixel-based utility classes (such as replacing `pl-12` with `pl-[12px]`). Also clean up extraneous whitespace and line breaks in component templates for improved readability.
This commit is contained in:
@@ -1,24 +1,17 @@
|
||||
<template>
|
||||
<view class="card border-box pb-12 relative mt-12">
|
||||
<view
|
||||
class="card-item absolute overflow-hidden"
|
||||
v-for="(card, index) in list"
|
||||
:key="card.__uid"
|
||||
:style="[itemStyle(index, card), transformStyle(index, card)]"
|
||||
@touchstart.stop="touchStart($event, index)"
|
||||
@touchmove.stop.prevent="touchMove($event, index)"
|
||||
@touchend.stop="touchEnd(index)"
|
||||
@touchcancel.stop="touchCancel(index)"
|
||||
@transitionend="onTransitionEnd(index)"
|
||||
>
|
||||
<view class="card border-box pb-[12px] relative mt-12">
|
||||
<view class="card-item absolute overflow-hidden" v-for="(card, index) in list" :key="card.__uid"
|
||||
:style="[itemStyle(index, card), transformStyle(index, card)]" @touchstart.stop="touchStart($event, index)"
|
||||
@touchmove.stop.prevent="touchMove($event, index)" @touchend.stop="touchEnd(index)"
|
||||
@touchcancel.stop="touchCancel(index)" @transitionend="onTransitionEnd(index)">
|
||||
<view class="inner-card bg-white">
|
||||
<!-- 商品大图部分:自适应剩余空间 -->
|
||||
<view class="goods-image-wrapper relative">
|
||||
<image class="w-full h-full" :src="card.commodityPhoto" mode="aspectFill"/>
|
||||
<image class="w-full h-full" :src="card.commodityPhoto" mode="aspectFill" />
|
||||
</view>
|
||||
|
||||
<!-- 底部:价格 + 购买按钮 -->
|
||||
<view class="card-footer border-box p-12 flex flex-justify-between flex-items-center">
|
||||
<view class="card-footer border-box p-[12px] flex flex-justify-between flex-items-center">
|
||||
<view class="border-box">
|
||||
<view class="font-size-14 font-500 color-333 ellipsis-1">
|
||||
{{ card.commodityName }}
|
||||
|
||||
Reference in New Issue
Block a user