From 48e1fbc279373f06b45789bbdc9a372923ba4325 Mon Sep 17 00:00:00 2001
From: 付延余 <f-yanyu@outlook.com>
Date: 星期二, 26 四月 2022 11:10:39 +0800
Subject: [PATCH] 首页数据
---
src/pages/components/juminYanglaoBaoxian/baoxianForm.vue | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/pages/components/juminYanglaoBaoxian/baoxianForm.vue b/src/pages/components/juminYanglaoBaoxian/baoxianForm.vue
index f021db4..99ccfdd 100644
--- a/src/pages/components/juminYanglaoBaoxian/baoxianForm.vue
+++ b/src/pages/components/juminYanglaoBaoxian/baoxianForm.vue
@@ -1,6 +1,7 @@
<template>
<div class="baoxianForm-wrap" :style="{paddingTop : paddingTop + 'rem'}">
<el-table
+ :max-height="tableHeight"
border
style="width: 100%"
:data="tableData">
@@ -76,6 +77,7 @@
<script>
import {getInsuranceTable} from '@/api/shehuiBaozhang'
+ import nowSize from "../../../libs/nowSize";
export default {
name: "baoxianForm",
props: {
@@ -92,7 +94,8 @@
},
data() {
return {
- tableData:[]
+ tableData:[],
+ tableHeight: window.innerHeight - nowSize(230)
}
},
mounted() {
--
Gitblit v1.9.1