初始化仓库

This commit is contained in:
wangxiaowei
2026-04-14 16:54:04 +08:00
commit 967c25b397
553 changed files with 106514 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<template>
<view class="post-sale">
<view class="contain">
<tabs :current="active" :bar-width="80" @change="onChange" :is-scroll="false">
<tab v-for="(item, index) in afterSale" :key="index" :name="item.name">
<after-sales-list :type="item.type" :i="index" :index="active"></after-sales-list>
</tab>
</tabs>
</view>
</view>
</template>
<script>
import { afterSaleType } from "@/utils/type";
export default {
data() {
return {
active: 0,
afterSale: [{
name: '售后申请',
type: afterSaleType.NORMAL
}, {
name: '处理中',
type: afterSaleType.HANDLING
}, {
name: '已处理',
type: afterSaleType.FINISH
}]
};
},
methods: {
onChange(index) {
this.active = index
},
}
};
</script>
<style lang="scss">
</style>