2 changed files with 69 additions and 6 deletions
@ -0,0 +1,50 @@ |
|||
<template> |
|||
<div> |
|||
<el-card shadow="never" |
|||
class="aui-card--fill"> |
|||
<footbar-list ref="ref_footbarlist" |
|||
:showFrom="'default'" |
|||
:tableKeywork="'FootBar'"></footbar-list> |
|||
</el-card> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
|
|||
import FootbarList from './FootbarList' |
|||
|
|||
|
|||
|
|||
|
|||
export default { |
|||
data () { |
|||
return { |
|||
|
|||
} |
|||
}, |
|||
activated () { |
|||
|
|||
this.$nextTick(() => { |
|||
|
|||
this.$refs['ref_footbarlist'].doLayout() // 解决表格错位 |
|||
|
|||
}) |
|||
}, |
|||
components: { |
|||
FootbarList |
|||
}, |
|||
|
|||
mounted () { |
|||
|
|||
}, |
|||
computed: { |
|||
|
|||
}, |
|||
methods: { |
|||
|
|||
|
|||
} |
|||
} |
|||
</script> |
|||
<style> |
|||
</style> |
Loading…
Reference in new issue