feat: 排班管理测试
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
fyy 2025-08-14 10:00:53 +08:00
parent 1db3c351e5
commit 578aa61082
2 changed files with 5 additions and 3 deletions

View File

@ -92,7 +92,7 @@ export interface ArrangementForm extends BaseEntity {
/** /**
* id * id
*/ */
scheduleId: string | number; scheduleId?: string | number;
} }
export interface ArrangementQuery extends PageQuery { export interface ArrangementQuery extends PageQuery {
@ -144,4 +144,6 @@ export interface ArrangementQuery extends PageQuery {
export interface arrangmentListQuery extends PageQuery { export interface arrangmentListQuery extends PageQuery {
currentDate: string; //某天的日期 currentDate: string; //某天的日期
} }
export interface AttendanceUserGroup {} export interface AttendanceUserGroup extends PageQuery {
currentDate: string; //某天的日期
}

View File

@ -87,7 +87,7 @@ async function handleClosed() {
:key="item.id" :key="item.id"
class="wrap-cell" class="wrap-cell"
> >
{{ item.employeeName }} {{ item.sysUser.userName }}
<span v-if="index !== row.userGroupList.length - 1"></span> <span v-if="index !== row.userGroupList.length - 1"></span>
</span> </span>
</template> </template>