fix:修改上传文件文字超出样式、项目列表撤回编辑样式、评估管理学员列表分页查询及样式

This commit is contained in:
wyx
2023-01-12 20:17:03 +08:00
parent d30bd12d79
commit 14938f8532
3 changed files with 21 additions and 14 deletions

View File

@@ -80,7 +80,7 @@
<div class="img"></div> <div class="img"></div>
<div class="timebox"> <div class="timebox">
<div class="timetop"> <div class="timetop">
<div class="tit">{{ fileName }}</div> <div class="tit" :title="fileName">{{ fileName }}</div>
<div <div
v-if="uploadErr" v-if="uploadErr"
class="stateloading" class="stateloading"
@@ -503,6 +503,11 @@ export default {
font-size: 14px; font-size: 14px;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
width: 200px;
height: 21px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
} }
.stateloading { .stateloading {
font-size: 14px; font-size: 14px;

View File

@@ -1502,7 +1502,7 @@ export default {
onClick={() => { onClick={() => {
showBackModal(value.record.projectId); showBackModal(value.record.projectId);
}} }}
style="cursor:pointer" style="cursor:pointer; margin-left: 21px; width:70px;"
class="operation3" class="operation3"
> >
撤回发布 撤回发布

View File

@@ -72,17 +72,19 @@
</div> </div>
<!-- 表格 --> <!-- 表格 -->
<!-- 分页 --> <!-- 分页 -->
<a-pagination <div style="width:100%;display:flex;justify-content:center;align-items:center;">
v-if="evalStuListDataTotal > 10" <a-pagination
:showSizeChanger="false" v-if="evalStuListDataTotal > 10"
showQuickJumper="true" :showSizeChanger="false"
hideOnSinglePage="true" showQuickJumper="true"
:pageSize="pageSize" hideOnSinglePage="true"
:current="evalCurrentPage" :pageSize="pageSize"
:total="evalStuListDataTotal" :current="evalCurrentPage"
class="pagination" :total="evalStuListDataTotal"
@change="changePaginationStu" class="pagination"
/> @change="changePaginationStu"
/>
</div>
<!-- 分页 --> <!-- 分页 -->
</div> </div>
</div> </div>
@@ -133,7 +135,7 @@ export default {
state.evalStuListLoading = true; state.evalStuListLoading = true;
api.QueryAssessmentManageMessage({ api.QueryAssessmentManageMessage({
"assessmentId": router.currentRoute.value.params.id, "assessmentId": router.currentRoute.value.params.id,
"pageNo": state.currentPage, "pageNo": state.evalCurrentPage,
"pageSize": state.pageSize "pageSize": state.pageSize
}).then(res=>{ }).then(res=>{
console.log('获取学员信息',res) console.log('获取学员信息',res)