feat: 替换sass版本,定义全局样式,实现简单的页面布局操作,比如颜色、边距、圆角等

This commit is contained in:
duanshuwen
2025-10-06 13:13:16 +08:00
parent e0f0e90635
commit c8e51e4975
108 changed files with 366 additions and 517 deletions

View File

@@ -66,5 +66,5 @@ watch(
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -16,5 +16,5 @@ defineProps({
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -16,5 +16,5 @@ defineProps({
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -8,7 +8,7 @@
overflow-x: hidden; // ✅ 防止横向撑开
text {
font-size: 14px;
color: #333333;
font-size: $uni-font-size-base;
color: $uni-text-color;
}
}

View File

@@ -244,5 +244,5 @@ defineExpose({ focusInput });
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -2,7 +2,7 @@
display: flex;
align-items: center;
border-radius: 22px;
background-color: #ffffff;
background-color: $uni-bg-color;
box-shadow: 0px 0px 20px 0px rgba(52, 25, 204, 0.05);
margin: 0 12px;
margin-bottom: 8px;
@@ -29,12 +29,12 @@
.hold-to-talk-button {
width: 100%;
height: 44px;
color: #333333;
color: $uni-text-color;
font-size: 16px;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
background-color: $uni-bg-color;
transition: all 0.2s ease;
user-select: none;
-webkit-user-select: none;

View File

@@ -802,5 +802,5 @@ const resetConfig = () => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -39,5 +39,5 @@ const sendReply = (text) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -15,7 +15,7 @@
border-radius: 8px;
margin: 4px;
box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
background-color: $uni-bg-color;
padding: 2px 12px;
display: flex;
flex-direction: column;
@@ -25,7 +25,7 @@
.more-tips-item-title {
font-weight: 500;
font-size: 12px;
font-size: $uni-font-size-sm;
color: #00a6ff;
line-height: 24px;
text-align: center;

View File

@@ -96,5 +96,5 @@ const initData = () => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -50,7 +50,7 @@
text {
font-weight: 500;
font-size: 12px;
font-size: $uni-font-size-sm;
color: #201f32;
line-height: 16px;
}

View File

@@ -5,5 +5,5 @@
<script></script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -33,5 +33,5 @@ const closeDrawer = (e) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -49,5 +49,5 @@ const backgroundStyle = computed(() => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -50,5 +50,5 @@ onUnmounted(() => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -15,7 +15,7 @@
.title {
font-size: 18px;
text-align: center;
color: #333333;
color: $uni-text-color;
}
.close-icon {

View File

@@ -115,5 +115,5 @@ const handleLogout = () => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -32,7 +32,7 @@
.label {
font-size: 28rpx;
color: #333;
color: $uni-text-color;
}
.value {
@@ -59,7 +59,7 @@
height: 42px;
margin-top: 40px;
background-color: #fff;
color: #333;
color: $uni-text-color;
border-radius: 8rpx;
border: none;
}

View File

@@ -45,5 +45,5 @@ const handleClick = (item) => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -27,8 +27,8 @@
right: 12px;
bottom: 12px;
background-color: #ffeb00;
color: #333;
font-size: 14px;
color: $uni-text-color;
font-size: $uni-font-size-base;
font-weight: 500;
padding: 4px 12px;
border-radius: 20px;

View File

@@ -41,5 +41,5 @@ onMounted(() => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -5,7 +5,7 @@
}
.tag-item {
background-color: #ffffff;
background-color: $uni-bg-color;
border-radius: 8px;
padding: 4px 10px;
margin-right: 8px;
@@ -17,5 +17,5 @@
.tag-text {
color: #00a6ff; /* 蓝色文字,可根据设计调整 */
font-size: 14px;
font-size: $uni-font-size-base;
}

View File

@@ -26,5 +26,5 @@ const props = defineProps({
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -69,5 +69,5 @@ const placeOrderHandle = (item) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -15,7 +15,7 @@
flex-direction: column;
align-items: start;
width: 188px;
background-color: #ffffff;
background-color: $uni-bg-color;
border-radius: 10px;
margin-right: 8px;
padding-bottom: 12px;
@@ -26,7 +26,7 @@
left: 8px;
background: #ffe7b2;
color: #b97a00;
font-size: 12px;
font-size: $uni-font-size-sm;
padding: 2px 8px;
border-radius: 4px;
z-index: 2;

View File

@@ -33,5 +33,5 @@ onMounted(() => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -38,5 +38,5 @@ const sendReply = (item) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -11,7 +11,7 @@
align-items: start;
width: 188px;
height: 154px;
background-color: #ffffff;
background-color: $uni-bg-color;
border-radius: 10px;
margin-right: 8px;
position: relative;
@@ -25,8 +25,8 @@
padding: 12px;
text-align: center;
font-weight: 500;
font-size: 12px;
color: #333333;
font-size: $uni-font-size-sm;
color: $uni-text-color;
}
}
}

View File

@@ -71,5 +71,5 @@ onMounted(() => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -62,5 +62,5 @@ onMounted(() => {
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -67,5 +67,5 @@ const placeOrderHandle = (item) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -14,7 +14,7 @@
align-items: start;
width: 188px;
// height: 244px;
background-color: #ffffff;
background-color: $uni-bg-color;
border-radius: 10px;
margin-right: 8px;
padding-bottom: 12px;
@@ -25,7 +25,7 @@
left: 8px;
background: #ffe7b2;
color: #b97a00;
font-size: 12px;
font-size: $uni-font-size-sm;
padding: 2px 8px;
border-radius: 4px;
z-index: 2;

View File

@@ -22,5 +22,5 @@ const props = defineProps({
</script>
<style scoped lang="scss">
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -37,5 +37,5 @@ const sendReply = (item) => {
</script>
<style lang="scss" scoped>
@use "./styles/index.scss";
@import "./styles/index.scss";
</style>

View File

@@ -46,8 +46,8 @@
.overlay-text {
color: #fff;
font-weight: 500;
font-size: 12px;
font-size: $uni-font-size-sm;
text-align: left;
width: 100%;
}
}
}

View File

@@ -65,6 +65,6 @@ onUnmounted(() => {
.container {
width: 100vw;
height: 100vh;
background-color: #ffffff;
background-color: $uni-bg-color;
}
</style>