Commit 0903781a authored by zhengke's avatar zhengke

修改

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