推广小程序前端代码
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.

48 lines
633 B

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="我的订单"/>
  4. <tabber select="cart" />
  5. </view>
  6. </template>
  7. <script>
  8. import tabber from '@/components/base/tabbar.vue'
  9. export default {
  10. components: {
  11. tabber,
  12. },
  13. data() {
  14. return {
  15. value : 0,
  16. checkboxValue : [],
  17. options: [
  18. {
  19. text: '删除',
  20. style: {
  21. backgroundColor: '#f40'
  22. }
  23. },
  24. ],
  25. mixinsListApi : 'getCartPageList',
  26. }
  27. },
  28. computed: {
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style scoped lang="scss">
  35. .page {
  36. padding-bottom: 200rpx;
  37. /deep/ .uv-swipe-action{
  38. width: 100%;
  39. }
  40. }
  41. </style>