mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-19 15:56:47 +08:00
面授结业状态新增不结业状态
This commit is contained in:
@@ -4333,7 +4333,7 @@ function onFocusEnd(){
|
||||
return (
|
||||
<div>
|
||||
{
|
||||
record.signStatus == 1 && record.completionStatus != 1 ? (
|
||||
record.signStatus == 1 && record.completionStatus != 1 && record.completionStatus != 2 ? (
|
||||
<div
|
||||
style={{ color: "#4EA6FF", cursor: "pointer" }}
|
||||
onClick={() => {
|
||||
@@ -4344,6 +4344,8 @@ function onFocusEnd(){
|
||||
</div>
|
||||
) : record.completionStatus == 1 ? (
|
||||
<div>已结业</div>
|
||||
) : record.completionStatus == 2 ?(
|
||||
<div>不结业</div>
|
||||
) : (
|
||||
<div>-</div>
|
||||
)}
|
||||
@@ -4495,12 +4497,12 @@ function onFocusEnd(){
|
||||
}
|
||||
};
|
||||
const handleJie = async () => {
|
||||
if (state.graduate_hs && state.jyradioV1 == 1) {
|
||||
if (state.graduate_hs) {
|
||||
// state.studentItem.id
|
||||
// console.log("state.studentItem.id", state.studentItem.id);
|
||||
api1
|
||||
.batchUpdateStatus({
|
||||
completionStatus: 1,
|
||||
completionStatus: state.jyradioV1,
|
||||
ids: [state.studentItem?.id],
|
||||
// status: 1,
|
||||
})
|
||||
@@ -4511,8 +4513,6 @@ function onFocusEnd(){
|
||||
delete_exit1();
|
||||
}
|
||||
});
|
||||
}else{
|
||||
graduate_exit()
|
||||
}
|
||||
};
|
||||
//确认复制
|
||||
|
||||
Reference in New Issue
Block a user