|
@@ -21,7 +21,7 @@
|
|
|
<el-select
|
|
|
class="co_h2_l_t_select"
|
|
|
v-model="tid"
|
|
|
- placeholder="查看历史课程"
|
|
|
+ placeholder="查看历史课堂"
|
|
|
@change="changeTid"
|
|
|
>
|
|
|
<el-option
|
|
@@ -168,7 +168,7 @@ import chatArea from "./components/chatArea.vue";
|
|
|
import messageArea from "./components/messageArea.vue";
|
|
|
|
|
|
import sharePdf from "./components/sharePdf.vue";
|
|
|
-// 添加课程弹窗
|
|
|
+// 添加课堂弹窗
|
|
|
import addNewCourseDialog from "./components/addNewCourseDialog.vue";
|
|
|
export default {
|
|
|
components: {
|
|
@@ -213,7 +213,7 @@ export default {
|
|
|
let _data = res.data.FunctionResponse;
|
|
|
if (_data.message == "创建成功") {
|
|
|
this.tid = form.no;
|
|
|
- // 设置该课程的tid
|
|
|
+ // 设置该课堂的tid
|
|
|
this.ajax
|
|
|
.post("https://gpt4.cocorobo.cn/insert_classroom_observation", {
|
|
|
tid: this.tid,
|
|
@@ -237,7 +237,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
} else if (_data.message == "tid重复") {
|
|
|
- this.$message.error("该课程已存在");
|
|
|
+ this.$message.error("该课堂已存在");
|
|
|
this.loading = false;
|
|
|
} else {
|
|
|
this.$message.error("创建失败");
|
|
@@ -285,7 +285,7 @@ export default {
|
|
|
this.$message.info("主页");
|
|
|
},
|
|
|
delCourse(_value) {
|
|
|
- this.$confirm("此操作将永久删除该课程, 是否继续?", "提示", {
|
|
|
+ this.$confirm("此操作将永久删除该课堂, 是否继续?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
@@ -378,7 +378,7 @@ export default {
|
|
|
return {
|
|
|
label: item.jsonData.courseName
|
|
|
? item.jsonData.courseName
|
|
|
- : `${item.tId}课程`,
|
|
|
+ : `${item.tId}课堂`,
|
|
|
value: item.tId,
|
|
|
id:item.id
|
|
|
};
|