Commit c5ed1663 authored by 黄奎's avatar 黄奎

页面修改

parent 1510bfbc
......@@ -135,5 +135,13 @@ export function addClassCheck(data) {
});
}
/**
* 获取班级日志
*/
export function queryClassPlanLogPage(data) {
return request({
url: '/class/GetClassPlanLogPageList',
method: 'post',
data
});
}
\ No newline at end of file
<template>
<div class="classLog">
</div>
</template>
<script>
import {
queryClassPlanLogPage
} from '../../api/course/class'
export default {
props: {
setingObj: {
type: Object,
default: null
}
},
components: {
},
data() {
return {
msg: {
PageIndex: 1,
PageSize: 12,
School_Id: 0,
ClassId: 0
},
dataList: [],
}
},
created() {
this.msg.School_Id = this.setingObj.School_Id;
this.msg.ClassId = this.setingObj.ClassId;
this.getClassLog();
},
mounted() {
},
methods: {
getClassLog() {
queryClassPlanLogPage(this.msg).then(res => {
if (res.Code == 1) {
console.log("res",res.Data);
this.dataList = res.Data.PageData;
}
})
},
},
}
</script>
<style lang="sass">
@import url('~assets/css/table.sass');
</style>
\ No newline at end of file
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