Commit 036c178e authored by zhengke's avatar zhengke

修改

parent b45d3977
......@@ -16,11 +16,11 @@
<div class="col-4 Sysuser_Date">
<q-field filled>
 <template v-slot:control>
<el-date-picker v-model="msg.StartTime" type="date" placeholder="开学日期" value-format="yyyy-MM-dd" size="small" style="width:47%;"
@change="getList" clear-icon="iconfont icon-guanbi">
<el-date-picker v-model="msg.StartTime" type="date" placeholder="开始日期" value-format="yyyy-MM-dd"
size="small" style="width:47%;" @change="getList" clear-icon="iconfont icon-guanbi">
</el-date-picker>
<el-date-picker v-model="msg.EndTime" type="date" placeholder="结束日期" value-format="yyyy-MM-dd" size="small" style="width:47%;"
@change="getList" clear-icon="iconfont icon-guanbi">
<el-date-picker v-model="msg.EndTime" type="date" placeholder="结束日期" value-format="yyyy-MM-dd"
size="small" style="width:47%;" @change="getList" clear-icon="iconfont icon-guanbi">
</el-date-picker>
</template>
</q-field>
......@@ -28,8 +28,9 @@
</div>
</div>
<div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table no-bottom-table"
separator="none" title="" :data="dataList" :columns="columns" row-key="name">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat
class="sticky-column-table no-bottom-table" separator="none" title="" :data="dataList" :columns="columns"
row-key="name">
<template v-slot:top="props">
<div class="col-2 q-table__title">课时统计</div>
<q-space />
......@@ -37,7 +38,7 @@
<template v-slot:body-cell-TeacherId="props">
<q-td :props="props">
<q-btn flat size="xs" icon="iconfont icon-View" color="accent" @click="goStatic(props.row)"
style="font-weight:400" label="查看" />
style="font-weight:400" label="查看" />
</q-td>
</template>
<template v-slot:bottom>
......@@ -82,7 +83,7 @@
label: '课时',
align: 'left',
},
{
{
name: 'TeacherId',
label: '操作',
field: 'TeacherId'
......@@ -92,6 +93,15 @@
}
},
created() {
var now = new Date(); //当前日期
var nowMonth = now.getMonth()+1; //当前月
var nowYear = now.getFullYear(); //当前年
var StartTime = nowYear + '-' + nowMonth + '-01';
var day = new Date(nowYear,nowMonth,0);
var EndTime = nowYear + '-' + nowMonth + '-' + day.getDate();//获取当月最后一天日期
this.msg.StartTime = StartTime;
this.msg.EndTime = EndTime;
this.getList();
this.GetTeacherList()
},
......@@ -103,7 +113,6 @@
if (res.Code == 1) {
this.dataList = res.Data;
}
console.log(res, '数据');
}).catch(() => {
this.loading = false
})
......@@ -122,7 +131,7 @@
})
},
//去查看哈
goStatic(item){
goStatic(item) {
// let obj = {
// StartTime: this.msg.StartTime,
// EndTime: this.msg.EndTime,
......@@ -132,8 +141,8 @@
path: "/course/classPlan",
query: {
StartTime: this.msg.StartTime,
EndTime:this.msg.EndTime,
TeacherId:item.TeacherId
EndTime: this.msg.EndTime,
TeacherId: item.TeacherId
}
});
window.open(routeUrl.href, '_blank');
......
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