Commit bfdf1e08 authored by 黄奎's avatar 黄奎

页面修改

parent af9cc3b5
...@@ -78,12 +78,12 @@ ...@@ -78,12 +78,12 @@
<div class="StuCom_Inner">{{tItem.ClassContent}}</div> <div class="StuCom_Inner">{{tItem.ClassContent}}</div>
</div> </div>
<div>主讲老师:{{tItem.TeacherName}}</div> <div>主讲老师:{{tItem.TeacherName}}</div>
<div>课程名称:{{tItem.TrialLessonId}}</div> <div>课程名称:{{tItem.LessonName}}</div>
<div class="StuCom_Remark"> <div class="StuCom_Remark">
<span class="StuCom_Left">教室</span>{{tItem.RoomName}} <span class="StuCom_Left">教室</span>{{tItem.RoomName}}
</div> </div>
</div> </div>
<div @click="delFollow(tItem.Id)" style="margin-top:10px;" class="visit_delete text-negative">删除</div> <div @click="DeleteVisitorReserve(tItem.Id)" style="margin-top:10px;" class="visit_delete text-negative">删除</div>
</div> </div>
</template> </template>
<template v-slot:subtitle> <template v-slot:subtitle>
...@@ -270,17 +270,17 @@ ...@@ -270,17 +270,17 @@
this.getList(); this.getList();
}, },
//删除试听 //删除试听
delFollow(Id) { DeleteVisitorReserve(Id) {
let that = this let that = this
this.$q.dialog({ this.$q.dialog({
title: '提示信息', title: '提示信息',
message: '是否确定删除?', message: '是否确定此试听信息删除?',
cancel: true, cancel: true,
persistent: true, persistent: true,
ok: "确定", ok: "确定",
cancel: "取消", cancel: "取消",
}).onOk(() => { }).onOk(() => {
deleteStudentFollow({ RemoveVisitorReserve({
Id: Id Id: Id
}).then((res) => { }).then((res) => {
that.$q.notify({ that.$q.notify({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment