面授结业修改

This commit is contained in:
zhangsir
2024-10-11 13:57:42 +08:00
parent 3d8aa89fa1
commit a4d43c8838

View File

@@ -1361,6 +1361,7 @@
:visable="sm_hs" :visable="sm_hs"
:permissions="permissions" :permissions="permissions"
:isgetStudent="isgetStudent" :isgetStudent="isgetStudent"
ref="tableStudentChange"
> >
<!-- <template #extension="{ data: { record } }"> <!-- <template #extension="{ data: { record } }">
<a-button <a-button
@@ -2323,6 +2324,7 @@ export default defineComponent({
const durationText = computed(() => state.xjkkinputV3?.length==2?dayjs(state.xjkkinputV3[1]).diff(dayjs(state.xjkkinputV3[0]),'minute')|| '请输入持续时间':'请输入持续时间'); const durationText = computed(() => state.xjkkinputV3?.length==2?dayjs(state.xjkkinputV3[1]).diff(dayjs(state.xjkkinputV3[0]),'minute')|| '请输入持续时间':'请输入持续时间');
const state = reactive({ const state = reactive({
tableStudentChange: null,
isAssessmentId: null, isAssessmentId: null,
isHomeWorkId: null, isHomeWorkId: null,
tableCoursePlanLoading: false, tableCoursePlanLoading: false,
@@ -4332,7 +4334,7 @@ function onFocusEnd(){
return ( return (
<div> <div>
{ {
record.signStatus == 1 ? ( record.signStatus == 1 && record.completionStatus != 1 ? (
<div <div
style={{ color: "#4EA6FF", cursor: "pointer" }} style={{ color: "#4EA6FF", cursor: "pointer" }}
onClick={() => { onClick={() => {
@@ -4504,7 +4506,8 @@ function onFocusEnd(){
}) })
.then((res) => { .then((res) => {
if (res.data.code === 200) { if (res.data.code === 200) {
getTableDate2(); // getTableDate2();
state.tableStudentChange.getStuList()
delete_exit1(); delete_exit1();
} }
}); });