refactor: remove unused border.scss and update styles
Remove the deprecated border.scss stylesheet and its import from the main SCSS entry file. Replace all legacy border utility class usages with explicit border classes: - Replace border-ff with border border-white - Replace border-F1F5F9 with border border-[#f1f5f9] - Replace border-bottom with border-b border-[#e5e8ee] - Replace border-top-8 with border-t-8 border-[#f5f5f5] - Update border-none button styles to add after:!hidden to retain original pseudo-element hiding behavior
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
|
||||
<view class="w-full bg-white border border-white overflow-hidden rounded-[20px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<view v-if="shouldRenderCard" class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
|
||||
<view v-if="shouldRenderCard"
|
||||
class="w-full bg-white border border-white overflow-hidden rounded-[20px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
<view class="flex flex-col px-[16px] pt-[16px] pb-[12px] border-box" @click="lookDetailAction">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="container w-full border-ff overflow-hidden rounded-[24px] flex flex-col">
|
||||
<view class="container w-full border border-white overflow-hidden rounded-[24px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
<view class="content flex flex-col m-[4px] rounded-[24px]">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
|
||||
<view class="w-full bg-white border border-white overflow-hidden rounded-[20px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
<view class="flex flex-col px-[16px] pt-[16px] pb-[12px] border-box" @click="openDetail(item)">
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
</view>
|
||||
|
||||
<view class="list bg-white pl-[20px] pr-[20px]">
|
||||
<view class="item border-bottom pt-[20px] pb-[20px]" v-for="(item, index) in list" :key="index">
|
||||
<view class="item border-b border-[#e5e8ee] pt-[20px] pb-[20px]" v-for="(item, index) in list" :key="index">
|
||||
<view class="flex items-center justify-center">
|
||||
<image v-if="item.icon" class="left" :src="item.icon" />
|
||||
<view class="center flex-1">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="w-full bg-white border-ff overflow-hidden rounded-[20px] flex flex-col">
|
||||
<view class="w-full bg-white border border-white overflow-hidden rounded-[20px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
<view class="flex items-center justify-between p-[12px] border-box" @click="openMap">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="visual-card-shell w-full bg-white border-F1F5F9 rounded-[24px] overflow-hidden"
|
||||
<view class="visual-card-shell w-full bg-white border border-[#f1f5f9] rounded-[24px] overflow-hidden"
|
||||
:class="[{ 'is-pressable': pressable, 'is-disabled': disabled }, variantClass]" @click="handleClick">
|
||||
<slot />
|
||||
</view>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="container w-full border-ff overflow-hidden rounded-[24px] flex flex-col">
|
||||
<view class="container w-full border border-white overflow-hidden rounded-[24px] flex flex-col">
|
||||
<!-- 占位撑开 -->
|
||||
<view class="w-screen"></view>
|
||||
<view class="flex flex-col m-[4px] rounded-[24px]">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="border-box border-top-8 pl-[12px] pr-[12px] pt-[6px] pb-[12px]">
|
||||
<view class="border-box border-t-8 border-[#f5f5f5] pl-[12px] pr-[12px] pt-[6px] pb-[12px]">
|
||||
<ModuleTitle v-if="showTitle" title="套餐包含内容" />
|
||||
<view class="flex flex-items-start flex-col" v-for="(item, index) in goodsData.commodityPackageConfig" :key="index">
|
||||
<view class="title-row py-[4px] ml-[4px]">
|
||||
|
||||
Reference in New Issue
Block a user