orderinfo.vue 607 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. name: '售后',
  24. }],
  25. current: 0
  26. };
  27. },
  28. onLoad(options) {
  29. this.current = options.current
  30. },
  31. methods: {
  32. change(index) {
  33. this.current = index
  34. }
  35. }
  36. }
  37. </script>
  38. <style lang="scss">
  39. </style>