|
@@ -337,7 +337,7 @@ export default {
|
|
|
{
|
|
|
title: "科学教育目标分析",
|
|
|
brief: "分析四类科学教育目标的情况",
|
|
|
- value: "b13a98de-0125-11ef-aaca-12e77c4cb76b",
|
|
|
+ value: "d6cd48ab-0125-11ef-aaca-12e77c4cb76b",
|
|
|
subject:"科学",
|
|
|
type: 1,
|
|
|
sum:513
|
|
@@ -519,17 +519,21 @@ export default {
|
|
|
type: _data.Type,
|
|
|
tid: this.tid,
|
|
|
};
|
|
|
+ this.loading = true;
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/delete_classroom_observation", params)
|
|
|
.then((res) => {
|
|
|
this.dataList.splice(_index, 1);
|
|
|
this.$message.success("删除成功");
|
|
|
+ this.loading = false;
|
|
|
})
|
|
|
.catch((e) => {
|
|
|
this.$message.error("删除失败");
|
|
|
+ this.loading = false;
|
|
|
});
|
|
|
} else {
|
|
|
this.$message.error("删除失败");
|
|
|
+ this.loading = false;
|
|
|
}
|
|
|
},
|
|
|
editAnalysisItem(id, _data) {
|