|
|
- <template>
- <view class="page">
- <navbar title="我的订单"/>
-
-
-
- <tabber select="cart" />
- </view>
- </template>
-
- <script>
- import tabber from '@/components/base/tabbar.vue'
- export default {
- components: {
- tabber,
- },
- data() {
- return {
- value : 0,
- checkboxValue : [],
- options: [
- {
- text: '删除',
- style: {
- backgroundColor: '#f40'
- }
- },
- ],
- mixinsListApi : 'getCartPageList',
- }
- },
- computed: {
-
- },
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page {
- padding-bottom: 200rpx;
- /deep/ .uv-swipe-action{
- width: 100%;
- }
- }
-
- </style>
|