evaluateDetail.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view class="content">
  3. <u-card :foot-border-top="false" padding="0px" margin="10px" borderRadius="40" class="card-box" box-shadow="0 0 5px 0 rgba(0, 0, 0, 0.2)">
  4. <view class="card-content" slot="head" style="padding: 10px 15px;">
  5. <view class="card-title">{{evaluateInfo.name}}</view>
  6. </view>
  7. <view class="card-content" slot="body">
  8. <view class="evaluate-list" v-for="(item, index) in evaluateInfo.evaluateDetailResult" :key="index">
  9. <view class="evaluate-info">
  10. <view class="evaluate-name">{{item.name}}</view>
  11. <view>{{item.userRemarkTime}}</view>
  12. </view>
  13. <u-rate :count="10" v-model="item.level" :active-color="mainColor" isClick></u-rate>
  14. <view style="padding: 10px 0;">{{item.content}}</view>
  15. <template v-if="item.coachRemark">
  16. <view class="evaluate-info">
  17. <view class="evaluate-name">{{item.coachRemark}}</view>
  18. <view>{{item.coachRemarkTime}}</view>
  19. </view>
  20. </template>
  21. <template v-else>
  22. <view style="display: flex;justify-content: flex-end;">
  23. <u-button type="warning" :custom-style="{background: mainColor}" size="mini" shape="circle" :ripple="true" @click="handleReplayclick(item.id)">回复</u-button>
  24. </view>
  25. </template>
  26. </view>
  27. </view>
  28. </u-card>
  29. <u-top-tips ref="uTips"></u-top-tips>
  30. </view>
  31. </template>
  32. <script>
  33. import {
  34. mapGetters
  35. } from 'vuex'
  36. const NET = require('@/utils/request')
  37. const API = require('@/config/api')
  38. export default {
  39. computed: {
  40. ...mapGetters([
  41. 'mainColor'
  42. ])
  43. },
  44. data() {
  45. return {
  46. classId: '',
  47. evaluateInfo: {
  48. evaluateDetailResult: [],
  49. name: ''
  50. },
  51. }
  52. },
  53. onLoad(options) {
  54. this.classId = options.id
  55. },
  56. onShow() {
  57. this.getData()
  58. },
  59. onReady() {},
  60. onPullDownRefresh() {
  61. this.getData()
  62. },
  63. methods: {
  64. // 获取数据
  65. getData() {
  66. NET.request(API.getEvaluateInfo, {
  67. id: this.classId,
  68. }, 'POST').then(res => {
  69. this.evaluateInfo = res.data
  70. uni.stopPullDownRefresh();
  71. }).catch(error => {
  72. this.$refs.uTips.show({
  73. title: error.message,
  74. type: 'warning',
  75. })
  76. })
  77. },
  78. handleReplayclick(id) {
  79. uni.navigateTo({
  80. url: `/pagesMain/coachReply?id=${id}&classId=${this.classId}`
  81. })
  82. }
  83. },
  84. }
  85. </script>
  86. <style>
  87. page {
  88. width: 100%;
  89. height: 100%;
  90. background-color: #f7f7f7;
  91. }
  92. </style>
  93. <style lang="scss" scoped>
  94. @import "@/static/css/themes.scss";
  95. .content {
  96. width: 100%;
  97. float: left;
  98. .card-box {
  99. width: 100%;
  100. height: 100vh;
  101. .card-content {
  102. padding: 5px 15px;
  103. }
  104. .card-title {
  105. height: 20px;
  106. display: inline-block;
  107. font-weight: bold;
  108. font-size: 14px;
  109. line-height: 20px;
  110. }
  111. .evaluate-list {
  112. width: 100%;
  113. padding: 10px 0;
  114. border-bottom: 1px solid #e4e7ed;
  115. color: #999999;
  116. .evaluate-info {
  117. display: flex;
  118. justify-content: space-between;
  119. padding-bottom: 5px;
  120. .evaluate-name {
  121. font-size: 14px;
  122. }
  123. }
  124. }
  125. .evaluate-list:last-child {
  126. border-bottom: none;
  127. }
  128. }
  129. }
  130. </style>