|
@@ -351,7 +351,7 @@
|
|
class="table"
|
|
class="table"
|
|
:data="list"
|
|
:data="list"
|
|
element-loading-text="Loading"
|
|
element-loading-text="Loading"
|
|
- height="calc(100vh - 320px)"
|
|
|
|
|
|
+ :height="getTableFixedHeight"
|
|
border
|
|
border
|
|
fit
|
|
fit
|
|
highlight-current-row
|
|
highlight-current-row
|
|
@@ -1563,6 +1563,9 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
|
|
+ getTableFixedHeight() {
|
|
|
|
+ return this.multipleChoice ? `calc(100vh - 350px)` : `calc(100vh - 320px)`
|
|
|
|
+ },
|
|
showImg() {
|
|
showImg() {
|
|
return (
|
|
return (
|
|
this.dialogType === 'artificial' ||
|
|
this.dialogType === 'artificial' ||
|