Commit e8319834 authored by 吴春's avatar 吴春

1

parent 24e6b65a
...@@ -250,6 +250,36 @@ export function GetStudentFollowUpPageNewList(data) { ...@@ -250,6 +250,36 @@ export function GetStudentFollowUpPageNewList(data) {
}) })
} }
/**
* 获取学员学习情况列表
*/
export function GetStuStudyList(data) {
return request({
url: '/Scroll/GetStuStudyList',
method: 'post',
data
})
}
/**
* 获取学员学习月度总价列表
*/
export function GetStuStudyMonthList(data) {
return request({
url: '/Scroll/GetStuStudyMonthList',
method: 'post',
data
})
}
/**
* 保存学员学校情况
*/
export function SetStuStudyInfo(data) {
return request({
url: '/Scroll/SetStuStudyInfo',
method: 'post',
data
})
}
/** /**
* 获取已报名学员列表 * 获取已报名学员列表
......
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
<th width="80">续费金额</th> <th width="80">续费金额</th>
<th width="80">最新进度</th> <th width="80">最新进度</th>
<th width="90">负责人</th> <th width="90">负责人</th>
<th width="90">学习情况</th>
</tr> </tr>
<template v-if='dataObj&&dataObj.RList && dataObj.RList.length>0'> <template v-if='dataObj&&dataObj.RList && dataObj.RList.length>0'>
<tr v-for=" ( item , index ) in dataObj.RList " :key="index"> <tr v-for=" ( item , index ) in dataObj.RList " :key="index">
...@@ -170,6 +171,11 @@ ...@@ -170,6 +171,11 @@
<td> <td>
{{ item.CreateByName?item.CreateByName:'-' }} {{ item.CreateByName?item.CreateByName:'-' }}
</td> </td>
<td >
<div class="text-blue cursor-pointer" @click="getStudentStudy(item)">
学习情况
</div>
</td>
</tr> </tr>
</template> </template>
</table> </table>
...@@ -330,6 +336,16 @@ ...@@ -330,6 +336,16 @@
this.BelongType = 3; this.BelongType = 3;
} }
this.isShowStuRight = true; this.isShowStuRight = true;
},
//点击学生跳转到学习情况
getStudentStudy(obj) {
var qObj = {
StuId: obj.StuId,
StuName: obj.StuName,
GuestId:obj.GuestId,
CourseRateName:obj.CourseRateName,
};
this.OpenNewUrl('/teacher/studentStudy', qObj)
}, },
//清除 //清除
clearMsg() { clearMsg() {
......
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