zouyf_dev #97

Merged
zouyf merged 6 commits from zouyf_dev into main 2024-12-09 15:03:31 +08:00
3 changed files with 8 additions and 6 deletions
Showing only changes of commit e43c9fd038 - Show all commits

View File

@ -114,7 +114,7 @@
<Modal
v-model:visible="classWorkTaskVisible"
:width="880"
:width="1080"
>
<QuestToPPTist
class="class-work-task-modal"

View File

@ -68,7 +68,8 @@ defineExpose({
.page-resource {
user-select: none;
height: calc(100% - 55px);
// height: calc(100% - 55px);
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;

View File

@ -1,5 +1,5 @@
<template>
<div class="page">
<div class="page">
<!-- 习题筛选1 -->
<el-row style="width: 100%; height: 50px;">
<el-col :span="7">
@ -60,7 +60,7 @@
<div class="page-table" >
<el-table
:data="workResource.entpCourseWorkList"
style="width: 100%; height: calc(100% - 55px);"
style="width: 100%; height: calc(100% - 50px);"
v-loading="pageParams.loading"
>
<el-table-column type="index" width="60" />
@ -89,13 +89,13 @@
</el-table-column>
</el-table>
<!-- 分页-->
<div style="height: 55px;">
<div style="height: 50px;">
<el-pagination
v-show="pageParams.total > 0"
v-model:page="paginationParams.pageNum"
v-model:limit="paginationParams.pageSize"
:total="pageParams.total"
:style="{ position: 'relative', 'margin-top': '5px' }"
:style="{ position: 'relative', 'padding-top': '10px' }"
@change="getPaginationList" />
</div>
</div>
@ -188,6 +188,7 @@ const workResource = reactive({
}); //
onMounted(() => {
console.log('entpCourseWorkTypeList', entpCourseWorkTypeList);
debounceQueryData(); //
})