feat: add new features, update theme and build config

- Add 40+ new UI components including chat modules, discovery cards, photo galleries, FAQ and booking tools
- Standardize brand color across all styles by replacing $theme-color-500 SCSS variables with #0ccd58
- Add sass 1.58.3 dependency and update vite config for modern scss compiler support
- Refactor existing components (AddCarCrad, login page) and remove unused /quick/list router route
- Add utility functions for URL parameter handling
- Add static assets including custom znicons font, component images and icons
- Fix scss syntax issues and deprecation warnings
This commit is contained in:
duanshuwen
2026-05-26 22:49:52 +08:00
parent 548df7020c
commit ac8f5b5f64
159 changed files with 12439 additions and 629 deletions

View File

@@ -1,15 +1,10 @@
<template>
<div class="recording-wave-btn">
<div class="audio-visualizer">
<div
v-for="(bar, index) in audioBars"
:key="index"
class="audio-bar"
:style="{
height: bar.height + 'px',
transition: 'height 0.1s ease-out',
}"
></div>
<div v-for="(bar, index) in audioBars" :key="index" class="audio-bar" :style="{
height: bar.height + 'px',
transition: 'height 0.1s ease-out',
}"></div>
</div>
</div>
</template>
@@ -107,7 +102,7 @@ defineExpose({
display: flex;
justify-content: center;
align-items: center;
background-color: $theme-color-500;
background-color: #0CCD58;
height: 44px;
border-radius: $uni-border-radius-50px;
}