Commit 76b27131 authored by 黄奎's avatar 黄奎

页面修改

parent 5dda09f6
...@@ -198,7 +198,6 @@ export function getFileExt(filename) { ...@@ -198,7 +198,6 @@ export function getFileExt(filename) {
*/ */
export function EduDownLoad(cmd, msg, fileName, callBack) { export function EduDownLoad(cmd, msg, fileName, callBack) {
console.log("callBack", callBack);
return request({ return request({
url: cmd, url: cmd,
method: 'post', method: 'post',
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
</q-td> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
</template> </template>
</q-table> </q-table>
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-tow-column-table" <q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-tow-column-table"
...@@ -36,7 +35,6 @@ ...@@ -36,7 +35,6 @@
<template v-slot:top="props"> <template v-slot:top="props">
<div class="col-2 q-table__title">教师课时费汇总</div> <div class="col-2 q-table__title">教师课时费汇总</div>
<q-space /> <q-space />
</template> </template>
<template v-slot:body-cell-Type="props"> <template v-slot:body-cell-Type="props">
<q-td :props="props"> <q-td :props="props">
...@@ -44,10 +42,8 @@ ...@@ -44,10 +42,8 @@
</q-td> </q-td>
</template> </template>
<template v-slot:bottom> <template v-slot:bottom>
</template> </template>
</q-table> </q-table>
</div> </div>
</div> </div>
</template> </template>
...@@ -187,7 +183,10 @@ ...@@ -187,7 +183,10 @@
methods: { methods: {
Export() { Export() {
var msg = JSON.parse(JSON.stringify(this.msg)); var msg = JSON.parse(JSON.stringify(this.msg));
EduDownLoad("/TeachingRewards/GetTeachingBonusDetailToExcel", msg, "课时奖励.xls"); this.loading = true;
EduDownLoad("/TeachingRewards/GetTeachingBonusDetailToExcel", msg, "课时奖励.xls", res => {
this.loading = false;
});
}, },
//获取教师下拉 //获取教师下拉
GetTeacherList() { GetTeacherList() {
......
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