6
0
Fork 0
jiqu-library-miniprogram/src/pages/comment/comment.vue

44 lines
961 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>