样式调整
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
7f260799d8
commit
7dd02e84aa
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="table-list-container">
|
||||
<div class="table-list-container" v-loading="loading">
|
||||
<h3 v-if="isReadingShowSubjectInfo">
|
||||
<span v-if="subjectCode">{{ subjectCode }} </span>
|
||||
<span style="margin-left:5px;">{{ taskBlindName }}</span>
|
||||
|
|
@ -14,7 +14,6 @@
|
|||
v-if="tableQuestion && tableQuestion.Type === 'basicTable' && tableQuestion.TableQuestions"
|
||||
:ref="tableQuestion.Id"
|
||||
:data="tableQuestion.TableQuestions.Answers"
|
||||
v-loading="loading"
|
||||
height="100%"
|
||||
>
|
||||
<el-table-column
|
||||
|
|
@ -100,6 +99,17 @@ export default {
|
|||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.table-list-container {
|
||||
padding: 10px;
|
||||
height: 100%;
|
||||
padding: 0 10px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
h3, h4 {
|
||||
flex-shrink: 0;
|
||||
margin: 10px 0 10px;
|
||||
}
|
||||
|
||||
</style>
|
||||
Loading…
Reference in New Issue