فهرست منبع

删除添加loading

SanHQin 10 ماه پیش
والد
کامیت
a226b662f3

+ 2 - 0
src/components/pages/classroomObservation/components/analysisItem.vue

@@ -364,6 +364,8 @@ export default {
 				type: "error",
 			}).then(() => {
 				this.$emit("delItem", this.data.id);
+			}).catch(_=>{
+				console.log("取消")
 			});
 		},
 		changeShowIndex(value) {

+ 5 - 1
src/components/pages/classroomObservation/components/messageArea.vue

@@ -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) {