技术监督计划表格高度问题修改

This commit is contained in:
zhujiyan
2024-05-27 20:11:14 +08:00
parent b8edfbb2e8
commit 0012cb7f44

View File

@@ -49,7 +49,7 @@ import { ElMessage } from 'element-plus'
defineOptions({
name: '/admin/plan'
})
const layout = mainHeight(63) as any
// const layout = mainHeight(120) as any
const dictData = useDictData()
const { push } = useRouter()
const router = useRouter() // 路由对象
@@ -64,7 +64,7 @@ const supvObjTypeList = dictData.getBasicData('supv_obj_type')
const tableStore = new TableStore({
url: '/supervision-boot/superPlan/pagePlan',
publicHeight: 65,
// publicHeight: 65,
method: 'POST',
column: [
{ title: '序号', type: 'seq', width: 80 },
@@ -328,19 +328,19 @@ const getUserTypeName = (userType: any) => {
</script>
<style scoped lang="scss">
:deep(.el-upload-list__item) {
width: 400px;
}
// :deep(.el-upload-list__item) {
// width: 400px;
// }
::v-deep .el-input__wrapper {
// width: 200px !important;
}
.bars_w {
width: 100%;
height: 500px;
}
:deep(.el-tabs__content) {
height: v-bind('layout.height');
overflow-y: auto;
}
// ::v-deep .el-input__wrapper {
// // width: 200px !important;
// }
// .bars_w {
// width: 100%;
// height: 500px;
// }
// :deep(.el-tabs__content) {
// height: v-bind('layout.height');
// overflow-y: auto;
// }
</style>