Commit 7e982163 authored by zhengke's avatar zhengke

1

parent 155e0ae8
......@@ -17,20 +17,21 @@
<q-timeline-entry v-for="(tItem,tIndex) in dataList" :key="tIndex">
<template v-slot:title>
<div class="visit_Cont">
<div v-html="tItem.Remark"></div>
<div @click="delFollow(tItem.Id)" class="visit_delete">删除</div>
<div class="Log_Content" v-html="tItem.Remark"></div>
<div @click="delFollow(tItem.Id)" style="margin-top:10px;" class="visit_delete text-negative">删除</div>
</div>
</template>
<template v-slot:subtitle>
<div class="Time_TopList">
<div>{{ tItem.CreateTime }}</div>
<div>{{ tItem.CreateByName }}</div>
</div>
</template>
</q-timeline-entry>
</q-timeline>
</div>
</div>
<div style="margin:20px 0;">
<div style="margin-bottom:20px;">
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="page_Count" input
@input="changePage" />
</div>
......@@ -65,6 +66,7 @@
initialFrameHeight: 90
},
flowMsg:{
StuId:0,
Remark:''
},
msg: {
......@@ -79,6 +81,7 @@
created() {
if (this.saveObj && this.saveObj.StuId) {
this.msg.StuId = this.saveObj.StuId;
this.flowMsg.StuId = this.saveObj.StuId;
}
},
......
......@@ -69,11 +69,18 @@
<q-timeline-entry v-for="(tItem,tIndex) in dataList" :key="tIndex">
<template v-slot:title>
<div class="visit_Cont">
<div class="Log_Content">
<div>预约时间:{{tItem.ClassDateStr}} {{tItem.ClassTime}}-{{tItem.EndTime}}</div>
<div>主讲内容:{{tItem.ClassContent}}</div>
<div class="StuCom_Remark">
<div style="flex-shrink:0">主讲内容:</div>
<div class="StuCom_Inner">{{tItem.ClassContent}}</div>
</div>
<div>主讲老师:{{tItem.TeacherName}}</div>
<div>教室:{{tItem.RoomName}}</div>
<div @click="delFollow(tItem.Id)" class="visit_delete">删除</div>
<div>
<span style="display:inline-block;width:71px;text-align:right;">教室:</span>{{tItem.RoomName}}
</div>
</div>
<div @click="delFollow(tItem.Id)" style="margin-top:10px;" class="visit_delete text-negative">删除</div>
</div>
</template>
<template v-slot:subtitle>
......
......@@ -118,6 +118,7 @@
})
},
refreshPage() {
console.log('进入');
this.getStudent()
},
},
......
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