Commit f52f0f54 authored by 吴春's avatar 吴春

1

parent aa4106f1
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
<div style="margin-top:10px;width:150px;" class="visit_delete text-negative"> <div style="margin-top:10px;width:150px;" class="visit_delete text-negative">
<span @click="DeleteVisitorReserve(tItem.Id)" style="margin-right:10px;">删除</span> <span @click="DeleteVisitorReserve(tItem.Id)" style="margin-right:10px;">删除</span>
<span v-if="tItem.ReserveClassId>0" style="margin-right:10px;" <span v-if="tItem.ReserveClassId>0" style="margin-right:10px;"
@click="fabkuiMsg.IsShow=true,fabkuiMsg.Id=tItem.Id,fabkuiMsg.Feedback=tItem.Feedback">反馈</span> @click="fabkuiMsg.IsShow=true,fabkuiMsg.Id=tItem.Id,fabkuiMsg.Feedback=tItem.Feedback&&tItem.Feedback?tItem.Feedback:''">反馈</span>
<!-- <span v-if="tItem.ReserveClassId==0" @click="ShitingKaiKe(tItem)">试听课开课</span> --> <!-- <span v-if="tItem.ReserveClassId==0" @click="ShitingKaiKe(tItem)">试听课开课</span> -->
</div> </div>
</div> </div>
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<template v-slot:body-cell-Id="props"> <template v-slot:body-cell-Id="props">
<q-td :props="props"> <q-td :props="props">
<span v-if="props.row.ReserveClassId>0" style="margin-right:10px; cursor: pointer;" <span v-if="props.row.ReserveClassId>0" style="margin-right:10px; cursor: pointer;"
@click="fabkuiMsg.IsShow=true,fabkuiMsg.Id=props.row.Id,fabkuiMsg.Feedback=props.row.Feedback">反馈</span> @click="fabkuiMsg.IsShow=true,fabkuiMsg.Id=props.row.Id,fabkuiMsg.Feedback=props.row.Feedback&&props.row.Feedback.length>0?props.row.Feedback:''">反馈</span>
</q-td> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
...@@ -312,10 +312,6 @@ ...@@ -312,10 +312,6 @@
this.fabkuiMsg.Feedback = ''; this.fabkuiMsg.Feedback = '';
}); });
}, },
closeReserveForm() {
this.isShowAdd = false;
this.getList();
},
//新增访客 //新增访客
editVisitor(obj) { editVisitor(obj) {
if (obj) { if (obj) {
......
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