card-list.vue
505 Bytes
<template>
<LayoutApp title="我的银行卡">
<Cards ref="cards"></Cards>
</LayoutApp>
</template>
<script>
import LayoutApp from '../../components/layout/layout-app';
import Cards from './components/cards';
export default {
name: 'cardList',
mounted() {
this.$refs.cards.init();
this.$root.reportAppStart();
},
components: {
LayoutApp,
Cards
}
};
</script>
<style lang="scss" scoped>
/deep/ .layout-context {
background-color: #fefefe!important;
}
</style>