44 lines
961 B
Vue
44 lines
961 B
Vue
<template>
|
||
<view class="bg">
|
||
<!-- 导航栏 -->
|
||
<u-navbar back-icon-color="#000000" :border-bottom="false">
|
||
<view slot="right" class="pr-base" @tap="jump">
|
||
<image class="w-48rpx h-48rpx" src="/static/images/cart/short-cart.png" mode="scaleToFill" />
|
||
</view>
|
||
</u-navbar>
|
||
<!-- -->
|
||
<view class="py-32rpx pl-41rpx text-md text-txGray border-b border-txBorder">全部评价(109)</view>
|
||
<view v-for="(item,index) in 3" :key="index">
|
||
<comment :index="index" :length="3"></comment>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import comment from "@/components/comment/comment"
|
||
export default {
|
||
components: {
|
||
comment
|
||
},
|
||
data() {
|
||
return {
|
||
|
||
};
|
||
},
|
||
methods: {
|
||
jump() {
|
||
uni.navigateTo({
|
||
url: '/pages/auxiliary_cart/index'
|
||
})
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.bg {
|
||
background: #FFFFFF;
|
||
min-height: 100vh;
|
||
}
|
||
</style>
|