123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view>
- <u-tabs :list="list" :is-scroll="true" :current="current" @change="change"></u-tabs>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [{
- name: '全部'
- }, {
- name: '待支付'
- }, {
- name: '待发货',
- }, {
- name: '待收货',
- }, {
- name: '待评价',
- }, {
- name: '已完成',
- }, {
- name: '售后',
- }],
- current: 0
- };
- },
- onLoad(options) {
- this.current = options.current
- },
- methods: {
- change(index) {
- this.current = index
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|