WechatOwnerService/pages/common/commentPage.vue
2020-06-12 11:34:06 +08:00

31 lines
772 B
Vue

<template>
<view>
<template name="commentPage">
<view class="commentPage-header">
<view class="commentPage-score">
<view class="overall">综合评分</view>4.3<view class="rate">商家综合好评率为76%</view>
</view>
<view class="commentPage-rating">
<view class="restaurant">商家评分<view class="stars"> 4</view>
</view>
<view class="distribute">配送评分<view class="stars"> 4.6</view>
</view>
</view>
</view>
<view class="commentPage-category">
<block v-for="(item, index) in categoryList" :key="index">
<view class="category-item">{{item.text}}({{item.numb}})</view>
</block>
</view>
</template>
</view>
</template>
<script>
export default {
props: []
}
</script>