|
@@ -8440,6 +8440,22 @@ export default {
|
|
|
}
|
|
|
this.$refs.stepBox.scrollTop = 0;
|
|
|
},
|
|
|
+ setTipsIndex(){
|
|
|
+ // 使用 setTimeout 确保对话框已经渲染完成
|
|
|
+ this.$nextTick(() => {
|
|
|
+ const dialog = document.querySelector('.custom-confirm-box');
|
|
|
+ if (dialog) {
|
|
|
+ const parent = dialog.parentElement;
|
|
|
+ if (parent) {
|
|
|
+ parent.style.zIndex = 9999999;
|
|
|
+ const adjacentElement = parent.nextElementSibling;
|
|
|
+ if (adjacentElement) {
|
|
|
+ adjacentElement.style.zIndex = 9999998;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
nextSteps(clickType, ttype) {
|
|
|
if(!this.time()){
|
|
|
return
|
|
@@ -8591,7 +8607,8 @@ export default {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
distinguishCancelAndClose: true,
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
+ customClass: 'custom-confirm-box'
|
|
|
})
|
|
|
.then(() => {
|
|
|
if(this.isTeacherTaskCancelToken2){
|
|
@@ -8621,6 +8638,9 @@ export default {
|
|
|
}).catch((v) => {
|
|
|
console.log(v);
|
|
|
})
|
|
|
+ setTimeout(() => {
|
|
|
+ this.setTipsIndex()
|
|
|
+ }, 500)
|
|
|
}
|
|
|
return;
|
|
|
}
|
|
@@ -16834,6 +16854,7 @@ export default {
|
|
|
cancelButtonText: "取消",
|
|
|
distinguishCancelAndClose: true,
|
|
|
type: "warning",
|
|
|
+ customClass: 'custom-confirm-box'
|
|
|
})
|
|
|
.then(() => {
|
|
|
|
|
@@ -16856,6 +16877,9 @@ export default {
|
|
|
}).catch((v) => {
|
|
|
console.log(v);
|
|
|
})
|
|
|
+ setTimeout(() => {
|
|
|
+ this.setTipsIndex()
|
|
|
+ }, 500)
|
|
|
return;
|
|
|
}else {
|
|
|
this.aitype = "teacherDetail2"
|
|
@@ -21739,7 +21763,8 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
distinguishCancelAndClose: true,
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
+ customClass: 'custom-confirm-box'
|
|
|
})
|
|
|
.then(() => {
|
|
|
_this.aiDetail52(msg, index, callback)
|
|
@@ -21747,6 +21772,9 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
console.log(v);
|
|
|
callback ? callback() : ''
|
|
|
})
|
|
|
+ setTimeout(() => {
|
|
|
+ _this.setTipsIndex()
|
|
|
+ }, 500)
|
|
|
}
|
|
|
console.log(error);
|
|
|
});
|
|
@@ -21771,7 +21799,8 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
distinguishCancelAndClose: true,
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
+ customClass: 'custom-confirm-box'
|
|
|
})
|
|
|
.then(() => {
|
|
|
_this.aiDetail52(msg, _tindex2, callback)
|
|
@@ -21779,6 +21808,9 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
console.log(v);
|
|
|
callback ? callback() : ''
|
|
|
})
|
|
|
+ setTimeout(() => {
|
|
|
+ _this.setTipsIndex()
|
|
|
+ }, 500)
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -21848,7 +21880,8 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
distinguishCancelAndClose: true,
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
+ customClass: 'custom-confirm-box'
|
|
|
})
|
|
|
.then(() => {
|
|
|
_this.aiDetail52(msg, _tindex2, callback)
|
|
@@ -21856,6 +21889,9 @@ ${(_this.templateid == "4480d65a-1e48-11ef-bee5-005056b86db5" || _this.templatei
|
|
|
console.log(v);
|
|
|
callback ? callback() : ''
|
|
|
})
|
|
|
+ setTimeout(() => {
|
|
|
+ _this.setTipsIndex()
|
|
|
+ }, 500)
|
|
|
};
|
|
|
},
|
|
|
aiDetail52getAiContentText(_e, loading, _tindex2, _source){
|