fix: 修复c端页面报错 (#448)
This commit is contained in:
parent
e6645c12a8
commit
c5fc734bb1
@ -73,6 +73,7 @@ const handleChange = (name: any) => {
|
|||||||
:deep(.el-tabs__content) {
|
:deep(.el-tabs__content) {
|
||||||
height: calc(100% - 10px);
|
height: calc(100% - 10px);
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
overflow-y: auto;
|
||||||
:deep(el-tab-pane) {
|
:deep(el-tab-pane) {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
@ -103,7 +103,7 @@ export const useQuestionStore = defineStore('question', () => {
|
|||||||
const pageIndex = ref(1) // 当前分页的索引
|
const pageIndex = ref(1) // 当前分页的索引
|
||||||
const changeField = ref(null)
|
const changeField = ref(null)
|
||||||
const changeIndex = computed(() => {
|
const changeIndex = computed(() => {
|
||||||
return questionData.value[changeField.value].index
|
return questionData.value[changeField.value]?.index
|
||||||
})
|
})
|
||||||
const needHideFields = ref([])
|
const needHideFields = ref([])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user