feat: 添加uni-scss和uni-icons模块并更新页面配置

style: 修复index.vue页面样式注释问题
refactor: 优化pages.json中的tabbar图标配置
docs: 更新相关模块的README和changelog文件
This commit is contained in:
feige996
2025-08-04 14:19:54 +08:00
parent edbccb36b3
commit c582bac0ee
26 changed files with 3054 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
@mixin get-styles($k,$c) {
@if $k == size or $k == weight{
font-#{$k}:#{$c}
}@else{
#{$k}:#{$c}
}
}
@each $key, $child in $uni-headings {
/* #ifndef APP-NVUE */
.uni-#{$key} {
@each $k, $c in $child {
@include get-styles($k,$c)
}
}
/* #endif */
/* #ifdef APP-NVUE */
.container .uni-#{$key} {
@each $k, $c in $child {
@include get-styles($k,$c)
}
}
/* #endif */
}