From 0883d2b9c9fba669376584f2b9af6da91a46647d Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Fri, 24 Jul 2026 21:46:42 +0800 Subject: [PATCH] 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. --- src/components/CreateServiceOrder/index.vue | 16 +++--- src/components/DateRangeSection/index.vue | 2 +- src/components/DetailPopup/index.vue | 2 +- src/components/Feedback/index.vue | 8 +-- src/components/RefundPopup/index.vue | 2 +- src/components/Stepper/index.vue | 2 +- src/components/SurveyQuestionnaire/index.vue | 4 +- src/components/UseDateRange/index.vue | 2 +- .../components/ConactSection/index.vue | 4 +- .../components/FooterSection/index.vue | 2 +- .../components/UserSection/index.vue | 2 +- src/pages-booking/index.vue | 5 +- .../order/components/AmtSection/index.vue | 2 +- .../order/components/FooterSection/index.vue | 4 +- .../order/components/GoodsInfo/index.vue | 6 +-- .../order/components/OrderCard/index.vue | 4 +- .../order/components/OrderInfo/index.vue | 2 +- .../order/components/OrderQrcode/index.vue | 18 ++++--- .../order/components/UserInfo/index.vue | 2 +- .../order/components/VoucherList/index.vue | 10 ++-- src/pages-quick/components/Card/index.vue | 6 +-- src/pages-quick/list.vue | 2 +- .../order/components/OrderCard/index.vue | 7 +-- src/pages/ChatMain/ChatQuickAccess/index.vue | 2 +- src/pages/ChatMain/ChatTopWelcome/index.vue | 2 +- src/pages/ChatModule/AigcPhotoCard/index.vue | 4 +- .../ChatModule/AnswerComponent/index.vue | 2 +- src/pages/ChatModule/CallMobile/index.vue | 2 +- .../ChatModule/FacilityLocationCard/index.vue | 4 +- src/pages/ChatModule/FaqHelpCard/index.vue | 2 +- .../GeneratorPhotoComponent/index.vue | 10 ++-- .../ChatModule/LongTextGuideCard/index.vue | 10 ++-- .../LongTextGuideCardPreview/index.vue | 2 +- .../ChatModule/MapNavigationCard/index.vue | 2 +- src/pages/ChatModule/NoticeCard/index.vue | 4 +- .../ChatModule/OpenMapComponent/index.vue | 4 +- src/pages/ChatModule/PoiCompareCard/index.vue | 4 +- src/pages/ChatModule/PoiDetailCard/index.vue | 4 +- .../ChatModule/RecommendPostsList/index.vue | 6 +-- .../RecommendationListCard/index.vue | 2 +- src/pages/ChatModule/RoutePlanCard/index.vue | 8 +-- .../ChatModule/ScenicImageCard/index.vue | 2 +- .../ChatModule/SharedVisual/ActionRow.vue | 4 +- .../ChatModule/SharedVisual/BadgePill.vue | 4 +- .../ChatModule/SharedVisual/CardShell.vue | 2 +- .../ChatModule/SharedVisual/MediaFrame.vue | 2 +- src/pages/ChatModule/ZModuleBase/index.vue | 4 +- .../components/QuickQuestions/index.vue | 4 +- src/pages/goods/index.vue | 2 +- src/static/scss/index.scss | 3 -- src/static/scss/position.scss | 24 --------- src/static/scss/rounded.scss | 52 ------------------- src/static/scss/text-align.scss | 12 ----- 53 files changed, 110 insertions(+), 193 deletions(-) delete mode 100644 src/static/scss/position.scss delete mode 100644 src/static/scss/rounded.scss delete mode 100644 src/static/scss/text-align.scss diff --git a/src/components/CreateServiceOrder/index.vue b/src/components/CreateServiceOrder/index.vue index f81199e..da16450 100644 --- a/src/components/CreateServiceOrder/index.vue +++ b/src/components/CreateServiceOrder/index.vue @@ -1,6 +1,6 @@