|
@ -89,6 +89,8 @@ |
|
|
<TableForm |
|
|
<TableForm |
|
|
ref="tableFormRef" |
|
|
ref="tableFormRef" |
|
|
class="w-[100%]" |
|
|
class="w-[100%]" |
|
|
|
|
|
:fixedScrollHieght="fixedScrollHieght" |
|
|
|
|
|
:maxHeight="fixedScrollHieght?'auto':490" |
|
|
:tableFields="tableAllSchemas.tableFormColumns" |
|
|
:tableFields="tableAllSchemas.tableFormColumns" |
|
|
:tableData="tableData" |
|
|
:tableData="tableData" |
|
|
:tableFormRules="tableFormRules" |
|
|
:tableFormRules="tableFormRules" |
|
@ -137,6 +139,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="includeCollectionTable&&formType=='create'&&tableAllSchemas&&tableAllSchemas.tableFormColumns.find(item=>item.field == 'itemCode')" v-show="tabSheet=='CollectionTable'"> |
|
|
<div v-if="includeCollectionTable&&formType=='create'&&tableAllSchemas&&tableAllSchemas.tableFormColumns.find(item=>item.field == 'itemCode')" v-show="tabSheet=='CollectionTable'"> |
|
|
<CollectionTable |
|
|
<CollectionTable |
|
|
|
|
|
:fixedScrollHieght="fixedScrollHieght" |
|
|
:tableFields="tableAllSchemas?tableAllSchemas.tableFormColumns:[]" |
|
|
:tableFields="tableAllSchemas?tableAllSchemas.tableFormColumns:[]" |
|
|
:tableData="tableData" |
|
|
:tableData="tableData" |
|
|
></CollectionTable> |
|
|
></CollectionTable> |
|
@ -381,6 +384,11 @@ const props = defineProps({ |
|
|
type:Boolean, |
|
|
type:Boolean, |
|
|
default:false |
|
|
default:false |
|
|
}, |
|
|
}, |
|
|
|
|
|
//滚动高度 |
|
|
|
|
|
fixedScrollHieght:{ |
|
|
|
|
|
type:Boolean, |
|
|
|
|
|
default:false |
|
|
|
|
|
} |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化 |
|
|
const { t } = useI18n() // 国际化 |
|
@ -394,13 +402,24 @@ if (props.basicFormWidth) { |
|
|
|
|
|
|
|
|
const collectionRef = ref() |
|
|
const collectionRef = ref() |
|
|
const updateFullscreen = (isFullscreen) => { |
|
|
const updateFullscreen = (isFullscreen) => { |
|
|
formHeight.value.height = isFullscreen ? 'auto' : '60vh' |
|
|
if(props.fixedScrollHieght){ |
|
|
nextTick(()=>{ |
|
|
formHeight.value.height = isFullscreen ? 'auto' : '60vh' |
|
|
tableFormRef.value?.reloadFullscreen(isFullscreen) |
|
|
nextTick(()=>{ |
|
|
collectionRef.value?.reloadFullscreen(isFullscreen) |
|
|
tableFormRef.value?.reloadFullscreen(isFullscreen) |
|
|
|
|
|
collectionRef.value?.reloadFullscreen(isFullscreen) |
|
|
}) |
|
|
}) |
|
|
|
|
|
}else{ |
|
|
|
|
|
if(isFullscreen){ |
|
|
|
|
|
formHeight.value = { |
|
|
|
|
|
'max-height':'100%', |
|
|
|
|
|
} |
|
|
|
|
|
}else{ |
|
|
|
|
|
formHeight.value = { |
|
|
|
|
|
'max-height': '60vh' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const dialogVisible = ref(false) // 弹窗的是否展示 |
|
|
const dialogVisible = ref(false) // 弹窗的是否展示 |
|
@ -417,23 +436,14 @@ const routeName = ref('') |
|
|
const sureDisabled = ref(false) |
|
|
const sureDisabled = ref(false) |
|
|
const tabSheet = ref('TableForm') |
|
|
const tabSheet = ref('TableForm') |
|
|
routeName.value = route.name |
|
|
routeName.value = route.name |
|
|
const formHeight = ref({ |
|
|
const formHeight = ref({}) |
|
|
'max-height': '60vh' |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
const tabChange = (item) => { |
|
|
const tabChange = (item) => { |
|
|
tabSheet.value = item.prop |
|
|
tabSheet.value = item.prop |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// if(!props.tableAllSchemas||formType.value!='create'){ |
|
|
|
|
|
// formHeight.value = { |
|
|
|
|
|
// height:'auto' |
|
|
|
|
|
// } |
|
|
|
|
|
// }else{ |
|
|
|
|
|
// formHeight.value = { |
|
|
|
|
|
// height:'60vh' |
|
|
|
|
|
// } |
|
|
|
|
|
// } |
|
|
|
|
|
// 列表-按钮 |
|
|
// 列表-按钮 |
|
|
// const buttondata = [ |
|
|
// const buttondata = [ |
|
|
// defaultButtons.mainListEditBtn(null), // 编辑 |
|
|
// defaultButtons.mainListEditBtn(null), // 编辑 |
|
@ -683,15 +693,24 @@ const open = async ( |
|
|
dialogTitle.value = t('action.' + type) |
|
|
dialogTitle.value = t('action.' + type) |
|
|
} |
|
|
} |
|
|
formType.value = type |
|
|
formType.value = type |
|
|
// if(!props.tableAllSchemas||formType.value!='create'){ |
|
|
|
|
|
// formHeight.value = { |
|
|
if(props.fixedScrollHieght){ |
|
|
// height:'auto' |
|
|
if(!props.tableAllSchemas||formType.value!='create'){ |
|
|
// } |
|
|
formHeight.value = { |
|
|
// }else{ |
|
|
height:'auto' |
|
|
// formHeight.value = { |
|
|
} |
|
|
// height:'60vh' |
|
|
}else{ |
|
|
// } |
|
|
formHeight.value = { |
|
|
// } |
|
|
height:'70vh' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}else{ |
|
|
|
|
|
formHeight.value = { |
|
|
|
|
|
'max-height': '60vh' |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resetForm() |
|
|
resetForm() |
|
|
count.value = 0 |
|
|
count.value = 0 |
|
|
// 修改时,设置数据 |
|
|
// 修改时,设置数据 |
|
|