mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-14 05:16:45 +08:00
feat:增加考勤查询学员
This commit is contained in:
@@ -458,7 +458,7 @@
|
||||
:style="{
|
||||
display: item.type === 2 ? 'flex' : 'none',
|
||||
}"
|
||||
@click="showFS"
|
||||
@click="showFS(item)"
|
||||
>
|
||||
学员
|
||||
</div>
|
||||
@@ -908,7 +908,7 @@
|
||||
v-model:studentId="studentId"
|
||||
/>
|
||||
<!-- 面授学员抽屉 -->
|
||||
<face-stu v-model:FSvisible="FSvisible" />
|
||||
<face-stu v-model:FSvisible="FSvisible" :datasource="studentData" />
|
||||
<!-- 活动考勤抽屉 -->
|
||||
<active-attendance
|
||||
v-model:AAvisible="AAvisible"
|
||||
@@ -1395,6 +1395,8 @@ export default {
|
||||
commonLevelName: "",
|
||||
examLevelName: "",
|
||||
evaluationLevelName: "",
|
||||
|
||||
studentData: "",
|
||||
});
|
||||
|
||||
const levelList = reactive({
|
||||
@@ -1602,8 +1604,10 @@ export default {
|
||||
state.copyModal = false;
|
||||
};
|
||||
//面授学员的弹窗
|
||||
const showFS = () => {
|
||||
const showFS = (item) => {
|
||||
state.FSvisible = true;
|
||||
state.studentData = item;
|
||||
console.log("studentData", state.studentData);
|
||||
};
|
||||
//考勤的抽屉
|
||||
const showAA = (course) => {
|
||||
|
||||
Reference in New Issue
Block a user