5618adc0 by xiaomiao

heightNum

1 parent 4c74d3ae
......@@ -5,7 +5,7 @@
-->
<template>
<div>
<lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="150"
<lb-table :column="column" :pagination="false" :key="key" :calcHeight="30"
:data="tableDataList">
</lb-table>
<addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
......@@ -219,3 +219,6 @@
}
}
</script>
<style scoped lang="scss">
</style>
......
......@@ -5,7 +5,7 @@
-->
<template>
<div>
<lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="150"
<lb-table :column="column" :pagination="false" :key="key" :calcHeight="30"
:data="tableDataList">
</lb-table>
<addYwr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
......
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-06-16 10:38:23
-->
<template>
<div>
<lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="150"
<lb-table :column="column" class="bbbb" :pagination="false" :key="key" :calcHeight="300"
:data="tableDataList">
</lb-table>
<addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
......@@ -240,3 +240,12 @@
}
}
</script>
<style scoped lang="scss">
/deep/.el-table__row{
background-color: salmon;
}
.bbbb{
background-color: salmon;
}
</style>
......
......@@ -209,4 +209,7 @@ export default {
border: none !important;
}
.el-date-editor.el-input{
width: 100%;
}
</style>
......