Commit e5bd1783 authored by 黄奎's avatar 黄奎

页面修改

parent 694608a6
...@@ -212,7 +212,6 @@ ...@@ -212,7 +212,6 @@
<tr v-for=" ( item , index ) in dataList.RList " :key="index" <tr v-for=" ( item , index ) in dataList.RList " :key="index"
v-if='dataList.RList && dataList.RList.length>0'> v-if='dataList.RList && dataList.RList.length>0'>
<td style=" border: 1px solid #d2d2d2;"> <td style=" border: 1px solid #d2d2d2;">
<!-- <span>{{ item.StuName }}</span> -->
<div class="text-blue cursor-pointer" @click="getStuRight(item)"> <div class="text-blue cursor-pointer" @click="getStuRight(item)">
{{ item.StuName }} {{ item.StuName }}
</div> </div>
...@@ -337,6 +336,9 @@ ...@@ -337,6 +336,9 @@
getSchoolDropdown, getSchoolDropdown,
getStudentDorpDownList getStudentDorpDownList
} from "../../api/school/index"; } from "../../api/school/index";
import {
EduDownLoad
} from "../../api/common/common";
import studentRightForm from "../../components/school/student/studentRight-form"; import studentRightForm from "../../components/school/student/studentRight-form";
import studentFUForm from "../../components/school/student/studentFu-form"; import studentFUForm from "../../components/school/student/studentFu-form";
...@@ -475,8 +477,20 @@ ...@@ -475,8 +477,20 @@
this.getEmployeeList(); this.getEmployeeList();
this.getStudentDorpDown(); this.getStudentDorpDown();
this.queryGoalsList(); this.queryGoalsList();
// this.downloadStudentFollow();
}, },
methods: { methods: {
downloadStudentFollow() {
var msg = JSON.parse(JSON.stringify(this.msg));
this.loading = true;
EduDownLoad(
"/StudentStat/DownLoadStudentFollowUp",
msg,
"学员跟踪.xls", res => {
this.loading = false;
}
);
},
//获取学习目的列表 //获取学习目的列表
queryGoalsList() { queryGoalsList() {
getGuestLearningGoalsEnumList({}).then(res => { getGuestLearningGoalsEnumList({}).then(res => {
......
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