From 92ce7d104ce175cf869bdf9ee87ce4123805050e Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期三, 29 十月 2025 20:17:32 +0800
Subject: [PATCH] 班级考勤统计
---
src/views/rollCall/index.vue | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/views/rollCall/index.vue b/src/views/rollCall/index.vue
index 6f529cd..2641f14 100644
--- a/src/views/rollCall/index.vue
+++ b/src/views/rollCall/index.vue
@@ -18,7 +18,7 @@
</el-input>
</div>
</div>
- <div style="height: calc(100vh - 248px)">
+ <div style="height: calc(100vh - 208px)">
<el-table
v-loading="listLoading"
:data="list"
@@ -33,7 +33,7 @@
}}</el-link>
</template>
</el-table-column>
- <el-table-column label="璇惧寘/浼氬憳鍗�" width="">
+ <el-table-column label="璇惧寘" width="">
<template slot-scope="scope"
>{{ scope.row.voucher.name }}
</template>
@@ -80,7 +80,7 @@
</el-input>
</div>
</div>
- <div style="height: calc(100vh - 248px)">
+ <div style="height: calc(100vh - 208px)">
<el-table
v-loading="listLoading"
:data="list"
@@ -130,7 +130,7 @@
</el-input>
</div>
</div>
- <div style="height: calc(100vh - 248px)">
+ <div style="height: calc(100vh - 208px)">
<el-table
v-loading="listLoading"
:data="list"
@@ -198,7 +198,7 @@
activeName: "student",
total: 0,
data: {
- staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id,
+ staffId: JSON.parse(localStorage.getItem("selectStaff")).id,
keyword: "",
pageIn: {
//鍙�夛紝濡傛灉鏄垎椤垫煡璇紝闇�瑕佸姞涓娿��
@@ -242,7 +242,7 @@
this.listLoading = true;
let data = {
types: ["NORMAL"],
- staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id,
+ staffId: JSON.parse(localStorage.getItem("selectStaff")).id,
keyword: this.data.keyword,
pageIn: { ...this.data.pageIn },
};
@@ -259,7 +259,7 @@
this.listLoading = true;
let data = {
completeTypes: ["ROLL_CALL"],
- staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id,
+ staffId: JSON.parse(localStorage.getItem("selectStaff")).id,
keyword: this.data.keyword,
pageIn: { ...this.data.pageIn },
};
--
Gitblit v1.8.0