You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
513 B
31 lines
513 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2019-08-22 19:41:20
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-04-22 14:47:49
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<PageCtx ref="page" type="inner" class="page"/>
|
|
</template>
|
|
|
|
<script>
|
|
import PageCtx from './components/PageCtx';
|
|
export default {
|
|
components : {PageCtx},
|
|
onShow(){
|
|
this.$refs.page && this.$refs.page.open();
|
|
},
|
|
mounted(){
|
|
this.$refs.page.open();
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
|
|
page {
|
|
background: #f5f5f5;
|
|
padding-bottom: 120rpx;
|
|
}
|
|
</style>
|