Commit 0903781a authored by zhengke's avatar zhengke

修改

parent d4ab1fc5
......@@ -254,7 +254,9 @@
methods: {
//获取数据
getList() {
this.loading=true;
GetStudentStaticMonth(this.msg).then(res => {
this.loading=false;
if (res.Code == 1) {
this.dataList = res.Data;
}
......
......@@ -41,6 +41,8 @@
return {
tabCheck: 1,
dataList: [],
loading:false,
tableHeight:500,
msg: {
YearStr: '',
rowsPerPage:0
......@@ -142,7 +144,9 @@
},
methods: {
getList() {
this.loading=true;
GetStudentStaticRateMonth(this.msg).then(res => {
this.loading=false;
if (res.Code == 1) {
this.dataList = res.Data;
}
......
......@@ -264,7 +264,9 @@
},
//获取数据
getList() {
this.loading=true;
GetStudentStatic(this.msg).then(res => {
this.loading=false;
if (res.Code == 1) {
this.dataList = res.Data;
}
......
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