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

32 lines
516 B

<!--
* @Author: ch
* @Date: 2019-08-22 19:41:20
* @LastEditors: ch
* @LastEditTime: 2022-04-09 10:38:25
* @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>