mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 19:36:46 +08:00
1. 线上 BUG
This commit is contained in:
@@ -4104,6 +4104,7 @@ function onFocusEnd(){
|
|||||||
let editBeginClass = ref(false)
|
let editBeginClass = ref(false)
|
||||||
//编辑开课
|
//编辑开课
|
||||||
const handelEditStu = async (item) => {
|
const handelEditStu = async (item) => {
|
||||||
|
console.log("gx handelEditStu item",item)
|
||||||
nums.value = 0
|
nums.value = 0
|
||||||
editBeginClass.value = false
|
editBeginClass.value = false
|
||||||
if (item.expenseStatus && item.expenseStatus !== 'A10' && item.expenseStatus !== 'S00') {
|
if (item.expenseStatus && item.expenseStatus !== 'A10' && item.expenseStatus !== 'S00') {
|
||||||
@@ -4116,12 +4117,18 @@ function onFocusEnd(){
|
|||||||
|
|
||||||
if (item.homeWorkId) {
|
if (item.homeWorkId) {
|
||||||
queryWorkDetailById({ workId: item.homeWorkId }).then(
|
queryWorkDetailById({ workId: item.homeWorkId }).then(
|
||||||
(res) => (state.workInfo = res.data.data)
|
(res) => {state.workInfo = res.data.data}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (item.testId) {
|
if (item.testId) {
|
||||||
|
console.log("queryExaminationDetailById res.data.data",item.testId);
|
||||||
|
|
||||||
queryExaminationDetailById({ examinationId: item.testId }).then(
|
queryExaminationDetailById({ examinationId: item.testId }).then(
|
||||||
(res) => (state.examInfo = res.data.data)
|
(res) => {
|
||||||
|
console.log("queryExaminationDetailById res.data.data",res.data.data)
|
||||||
|
state.examInfo = res.data.data
|
||||||
|
console.log("queryExaminationDetailById state.examInfo",state.examInfo)
|
||||||
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// if(item.evalFlag){
|
// if(item.evalFlag){
|
||||||
|
|||||||
Reference in New Issue
Block a user