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,5 +1,5 @@
|
||||
<template>
|
||||
<view class="bg-white border-box rounded-12 p-12 mb-12">
|
||||
<view class="bg-white border-box rounded-12 p-[12px] mb-12">
|
||||
<view class="flex flex-items-center flex-justify-between">
|
||||
<view class="flex flex-items-center">
|
||||
<text class="font-size-16 color-171717 line-height-24 font-500">
|
||||
@@ -10,16 +10,11 @@
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<view
|
||||
v-if="orderData.orderStatus === '0'"
|
||||
class="font-size-11 color-99A0AE mt-4"
|
||||
>
|
||||
<view v-if="orderData.orderStatus === '0'" class="font-size-11 color-99A0AE mt-4">
|
||||
超时后,订单将自动取消
|
||||
</view>
|
||||
<view
|
||||
v-if="['1', '2'].includes(orderData.orderStatus)"
|
||||
class="border-box border-top flex flex-items-center flex-justify-between font-size-12 pt-12 mt-12"
|
||||
>
|
||||
<view v-if="['1', '2'].includes(orderData.orderStatus)"
|
||||
class="border-box border-top flex flex-items-center flex-justify-between font-size-12 pt-[12px] mt-12">
|
||||
<view class="color-525866">取消政策及说明</view>
|
||||
<view class="flex flex-items-center" @click="emit('click')">
|
||||
<text class="theme-color-500 mr-4">查看详情</text>
|
||||
|
||||
Reference in New Issue
Block a user