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.
shop-app/pages/cart/cart.vue

34 lines
568 B

<!--
* @Author: ch
* @Date: 2019-08-22 19:41:20
* @LastEditors: ch
* @LastEditTime: 2022-05-17 11:29:38
* @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();
},
onReachBottom(){
this.$refs.page.reachBottom();
},
mounted(){
this.$refs.page.open();
}
}
</script>
<style lang="scss">
page {
background: #f5f5f5;
padding-bottom: 120rpx;
}
</style>