mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
31 lines
772 B
Vue
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>
|
|
|