Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
e8319834
Commit
e8319834
authored
May 09, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
24e6b65a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
index.js
src/api/studyabroad/index.js
+30
-0
stufollowlistNew.vue
src/components/school/student/stufollowlistNew.vue
+16
-0
No files found.
src/api/studyabroad/index.js
View file @
e8319834
...
@@ -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
})
}
/**
/**
* 获取已报名学员列表
* 获取已报名学员列表
...
...
src/components/school/student/stufollowlistNew.vue
View file @
e8319834
...
@@ -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
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment