style: replace legacy typography classes with modern utilities

Convert all legacy font-size-*, font-weight-*, and line-height-* CSS utility classes to modern inline utility formats (text-[Xpx], font-{weight}, leading-[Xpx]). Also remove unused GoodsInfo component SCSS file, its associated image asset, and clean up the stale style import in GoodsInfo.vue.
This commit is contained in:
DEV_DSW
2026-05-29 09:48:59 +08:00
parent 7f68ee06b7
commit a131531a81
42 changed files with 100 additions and 104 deletions

View File

@@ -2,7 +2,7 @@
<!-- 选择数量 -->
<div class=" bg-white p-[12px] rounded-[12px] flex flex-items-center mb-12">
<div class="flex-full">
<div class="font-size-16 font-500 color-000 line-height-24">选择数量</div>
<div class="text-[16px] font-medium color-000 leading-[24px]">选择数量</div>
<div class="text-[12px] color-A3A3A3 line-height-16">请选择套餐数量</div>
</div>
<div class="right">
@@ -16,21 +16,21 @@
<!-- 联系方式 -->
<div class="bg-white rounded-[12px] overflow-hidden">
<div class=" border-bottom font-size-16 font-500 color-000 line-height-24 p-[12px]">
<div class=" border-bottom text-[16px] font-medium color-000 leading-[24px] p-[12px]">
联系方式
</div>
<div class="flex flex-items-center p-[12px]">
<div class="text-[14px] font-500 text-ink-600 mr-12">联系人姓名</div>
<div class="text-[14px] font-medium text-ink-600 mr-12">联系人姓名</div>
<div class="right">
<input class=" px-4 py-2 font-size-15 color-000 leading-[20px]" v-model.trim="userFormList[0].visitorName"
<input class=" px-4 py-2 text-[15px] color-000 leading-[20px]" v-model.trim="userFormList[0].visitorName"
placeholder="请输入联系人" maxlength="20" />
</div>
</div>
<div class="flex flex-items-center p-[12px]">
<div class="text-[14px] font-500 text-ink-600 mr-12">手机号码</div>
<div class="text-[14px] font-medium text-ink-600 mr-12">手机号码</div>
<div class="right">
<input class=" px-4 py-2 font-size-15 color-000 leading-[20px]" v-model.trim="userFormList[0].contactPhone"
<input class=" px-4 py-2 text-[15px] color-000 leading-[20px]" v-model.trim="userFormList[0].contactPhone"
placeholder="请输入联系手机" maxlength="11" />
</div>
</div>