1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view>
- <!-- <page-head :title="title"></page-head> -->
- <view class="uni-padding-wrap" style="border-bottom: 1px solid #EEEEEE;padding-bottom: 10upx;">
- <!-- 评论区 start -->
- <view class="uni-comment">
- <view class="uni-comment-list">
- <view class="uni-comment-face"><image src="https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/uni@2x.png" mode="widthFix"></image></view>
- <view class="uni-comment-body">
- <view class="uni-comment-top">
- <text style="font-size: 28upx;color: #303133">网友</text>
- <uniIcon type="star" size="16"></uniIcon>
- </view>
- <view class="uni-comment-date">
- <text style="color: #909399;font-size: 20upx;">08/10 08:12</text>
- </view>
-
- </view>
-
- </view>
- <view style="color: #303133;font-size: 28upx;" class="uni-comment-content">很酷的HBuilderX和uni-app,开发一次既能生成小程序,又能生成App</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniIcon from '@/component/uni-icon/uni-icon.vue'
- export default {
-
- component:{
- uniIcon
- },
- data() {
- return {
- //title:"评论界面"
- }
- }
- }
- </script>
- <style>
- </style>
|