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

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