orderinfo.vue 518 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <u-tabs :list="list" :is-scroll="true" :current="current" @change="change"></u-tabs>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. list: [{
  11. name: '全部'
  12. }, {
  13. name: '待支付'
  14. }, {
  15. name: '待发货',
  16. }, {
  17. name: '待收货',
  18. }, {
  19. name: '待评价',
  20. }, {
  21. name: '已完成',
  22. }],
  23. current: 0
  24. };
  25. },
  26. methods: {
  27. change(index) {
  28. this.current = index
  29. }
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. </style>