detail.vue 510 Bytes
<template>
  <LayoutApp :show-back="true">
    <div class="body" ref="body">
      <List></List>
    </div>
    <Footer class="footer"></Footer>
  </LayoutApp>
</template>

<script>
import Footer from './components/detail/footer';
import List from './components/detail/list';

export default {
  components: {
    Footer,
    List
  }
};
</script>

<style lang="scss" scoped>
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.body {
  height: 100%;
  overflow-y: auto;
}
</style>