refactor: replace rounded utility classes and clean up unused scss files
Removed unused text-align.scss, position.scss, and rounded.scss utility files along with their imports from scss/index.scss. Updated all existing uses of the rounded-* utility classes in vue components to use inline border-radius syntax like rounded-[10px] instead.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<!-- 选择数量 -->
|
||||
<view class="border-box bg-white p-[12px] rounded-12 flex flex-items-center mb-12">
|
||||
<view class="border-box bg-white p-[12px] rounded-[12px] flex flex-items-center mb-12">
|
||||
<view class="flex-full">
|
||||
<view class="font-size-16 font-500 text-[#000000] leading-[24px]">选择数量</view>
|
||||
<view class="font-size-12 text-[#a3a3a3] leading-[16px]">
|
||||
@@ -17,7 +17,7 @@
|
||||
v-model:selectedDate="reservationDate" />
|
||||
|
||||
<!-- 联系方式 -->
|
||||
<view class="bg-white rounded-12 overflow-hidden">
|
||||
<view class="bg-white rounded-[12px] overflow-hidden">
|
||||
<view class="border-box border-bottom font-size-16 font-500 text-[#000000] leading-[24px] p-[12px]">联系方式</view>
|
||||
<view class="flex flex-items-center p-[12px]">
|
||||
<view class="font-size-14 font-500 text-[#525866] mr-12"> 联系人姓名 </view>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<text class="font-size-12 text-[#a3a3a3] mr-4">明细</text>
|
||||
<uni-icons type="up" size="16" color="#A3A3A3" />
|
||||
</view> -->
|
||||
<view class="btn rounded-10 flex flex-items-center ml-auto pl-[8px]" @click="handleBooking">
|
||||
<view class="btn rounded-[10px] flex flex-items-center ml-auto pl-[8px]" @click="handleBooking">
|
||||
<image class="icon" src="https://oss.nianxx.cn/mp/static/version_101/common/btn.png" />
|
||||
<text class="font-size-16 font-500 text-white">立即支付</text>
|
||||
</view>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="bg-white rounded-12 overflow-hidden mb-12">
|
||||
<view class="bg-white rounded-[12px] overflow-hidden mb-12">
|
||||
<view class="flex flex-items-center p-[12px] border-bottom">
|
||||
<view class="font-size-16 font-500 text-[#000000] leading-[24px] flex-full">入住信息</view>
|
||||
<view class="right">
|
||||
|
||||
Reference in New Issue
Block a user