feedbackRecord.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view>
  3. <u-navbar title="反馈记录" title-color="#101010"></u-navbar>
  4. <view class="record">
  5. <view class="title">
  6. <view class="classify">
  7. 功能异常
  8. </view>
  9. <view class="date">
  10. 2024-02-04 20:00:00
  11. </view>
  12. </view>
  13. <view class="content">
  14. 在使用用电监控APP时,发现数据刷新偶有延迟,实时性不足;电量消耗统计与实际存在偏差,准确性有待提升。影响用户体验,建议优化性能并校准数据准确性。
  15. </view>
  16. <view class="picture">
  17. <image class="img" src="../../assets/img/feedbackPic.png" mode=""></image>
  18. </view>
  19. </view>
  20. <!-- 底部 -->
  21. <view class="bottom">
  22. <button class="fill-in">填写反馈</button>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. }
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .record{
  38. margin-top: 24rpx;
  39. background-color: #fff;
  40. padding: 32rpx;
  41. .title{
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-between;
  45. .classify{
  46. color: rgba(22,119,255,1);
  47. font-size: 32rpx;
  48. }
  49. .date{
  50. color: rgba(119,119,119,1);
  51. }
  52. }
  53. .content{
  54. color: rgba(51,51,51,1);
  55. line-height: 44rpx;
  56. margin-top: 16rpx;
  57. }
  58. .picture{
  59. margin-top:24rpx;
  60. display: flex;
  61. justify-content: space-between;
  62. .img{
  63. width: 144rpx;
  64. height: 144rpx;
  65. border-radius: 4px;
  66. }
  67. }
  68. }
  69. // 底部
  70. .bottom{
  71. position: fixed;
  72. left: 0;
  73. right: 0;
  74. bottom: 0;
  75. background-color: #fff;
  76. padding: 20rpx 32rpx;
  77. .fill-in{
  78. line-height: 80rpx;
  79. border-radius: 4px;
  80. background-color: rgba(22,119,255,1);
  81. color: rgba(255,255,255,1);
  82. font-size: 32rpx;
  83. }
  84. }
  85. </style>