feat: 新增考勤排班管理页面

This commit is contained in:
admin
2026-01-24 19:07:34 +08:00
parent 8c1224999d
commit c89af4c6a3
99 changed files with 13547 additions and 14 deletions

View File

@@ -0,0 +1,23 @@
@mixin flex($direction: row) {
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
flex-direction: $direction;
}
/* #ifndef APP-NVUE */
// 由于wuui是基于nvue环境进行开发的此环境中普通元素默认为flex-direction: column;
// 所以在非nvue中需要对元素进行重置为flex-direction: column; 否则可能会表现异常
$wuui-nvue-style: true !default;
@if $wuui-nvue-style == true {
view, scroll-view, swiper-item {
display: flex;
flex-direction: column;
flex-shrink: 0;
flex-grow: 0;
flex-basis: auto;
align-items: stretch;
align-content: flex-start;
}
}
/* #endif */