安徽博创起重uniapp
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.
 
 
 
 

35 lines
622 B

<template>
<view class="goods-comment-list">
<tabs :current="active" :is-scroll="false" @change="changeActive">
<tab name="待评价">
<comment-list type="1" :i="0" :index="active"></comment-list>
</tab>
<tab name="已评价">
<comment-list type="2" :i="1" :index="active"></comment-list>
</tab>
</tabs>
</view>
</template>
<script>
export default {
data() {
return {
active: -1
};
},
onLoad() {
this.type = this.$Route.query.type || 0;
this.active = parseInt(this.type)
},
methods: {
changeActive(e) {
this.active = e
}
}
};
</script>
<style>
</style>