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.
34 lines
631 B
34 lines
631 B
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-04-08 18:36:14
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-04-22 14:47:43
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<PageCtx ref="page" type="tabBar" class="page"/>
|
|
</template>
|
|
|
|
<script>
|
|
import PageCtx from './components/PageCtx';
|
|
import {ApiGetCartList} from '@/common/api/cart';
|
|
export default {
|
|
components : {PageCtx},
|
|
onShow(){
|
|
this.$refs.page && this.$refs.page.open()
|
|
},
|
|
async mounted(){
|
|
this.$refs.page.open();
|
|
|
|
// const {error, result} = await ApiGetCartList();
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" >
|
|
page {
|
|
background: $color-grey1;
|
|
padding-bottom: 240rpx;
|
|
}
|
|
</style> |