assess.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view>
  3. <!-- <page-head :title="title"></page-head> -->
  4. <view class="uni-padding-wrap" style="border-bottom: 1px solid #EEEEEE;padding-bottom: 10upx;">
  5. <!-- 评论区 start -->
  6. <view class="uni-comment">
  7. <view class="uni-comment-list">
  8. <view class="uni-comment-face"><image src="https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/uni@2x.png" mode="widthFix"></image></view>
  9. <view class="uni-comment-body">
  10. <view class="uni-comment-top">
  11. <text style="font-size: 28upx;color: #303133">网友</text>
  12. <uniIcon type="star" size="16"></uniIcon>
  13. </view>
  14. <view class="uni-comment-date">
  15. <text style="color: #909399;font-size: 20upx;">08/10 08:12</text>
  16. </view>
  17. </view>
  18. </view>
  19. <view style="color: #303133;font-size: 28upx;" class="uni-comment-content">很酷的HBuilderX和uni-app,开发一次既能生成小程序,又能生成App</view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import uniIcon from '@/component/uni-icon/uni-icon.vue'
  26. export default {
  27. component:{
  28. uniIcon
  29. },
  30. data() {
  31. return {
  32. //title:"评论界面"
  33. }
  34. }
  35. }
  36. </script>
  37. <style>
  38. </style>