evaluate.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view class="page">
  3. <cu-custom :isBack="true" title="评价"></cu-custom>
  4. <view class="teacher flex bg-white padding">
  5. <image mode="scaleToFill" :src="teacher_avatar" class="avatar lg"></image>
  6. <view class="flex-sub margin-left">
  7. <view class="teacher-title">{{teacher.username||''}}老师授课</view>
  8. <view class="teacher-item">所属机构:{{teacher.agency_name||''}}</view>
  9. <view class="teacher-exp flex">
  10. <view class="exp-item">{{teacher.honor||''}}</view>
  11. <view class="exp-item">{{teacher.introduce||''}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="comment bg-white margin-top padding-lr padding-tb-lg">
  16. <view>{{satisfaction.satisfaction?'已评价':'请评价'}}</view>
  17. <view class="flex text-center margin-top" style="padding-left:80rpx;">
  18. <view class="flex-sub">
  19. <img src="/static/imgs/class/satisfaction.png" mode="widthFix" style="width:70px;">
  20. <view>满意</view>
  21. </view>
  22. <view class="flex-sub">
  23. <img src="/static/imgs/class/unsatisfaction.png" mode="widthFix" style="width:70px;">
  24. <view>一般</view>
  25. </view>
  26. </view>
  27. <view class="flex margin-top-sm">
  28. <view style="width:80rpx;line-height:32px;">课程</view>
  29. <view class="flex-sub text-center">
  30. <button class="cu-btn" :class="params.agency_statisfaction===2?'bg-cyan':'line-cyan'"
  31. @tap="evaluate('agency_statisfaction',2)">满意</button>
  32. </view>
  33. <view class="flex-sub text-center">
  34. <button class="cu-btn" :class="params.agency_statisfaction===1?'bg-cyan':'line-cyan'"
  35. @tap="evaluate('agency_statisfaction',1)">一般</button>
  36. </view>
  37. </view>
  38. <view class="flex margin-top-sm">
  39. <view style="width:80rpx;line-height:32px;">老师</view>
  40. <view class="flex-sub text-center" @tap="params.statisfaction=2">
  41. <button class="cu-btn" :class="params.statisfaction===2?'bg-cyan':'line-cyan'"
  42. @tap="evaluate('statisfaction',2)">满意</button>
  43. </view>
  44. <view class="flex-sub text-center" @tap="params.statisfaction=1">
  45. <button class="cu-btn" :class="params.statisfaction===1?'bg-cyan':'line-cyan'"
  46. @tap="evaluate('statisfaction',1)">一般</button>
  47. </view>
  48. </view>
  49. <view class="margin-top-lg" v-if="!satisfaction.satisfaction">
  50. <button class="cu-btn bg-cyan lg" style="width:100%;" @tap="comment">提交评价</button>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import { _commentDetail, _tocomment } from '@/api/course'
  57. export default {
  58. data () {
  59. return {
  60. teacher: {},
  61. satisfaction: {},
  62. params: {
  63. agency_statisfaction: 2,
  64. statisfaction: 2,
  65. plan_id: '',
  66. teacher_id: ''
  67. },
  68. teacher_avatar: '/static/imgs/class/logo0.png'
  69. }
  70. },
  71. onLoad (options) {
  72. const id = decodeURIComponent(options.plan_id)
  73. if (!id) uni.navigateBack()
  74. this.params.plan_id = id
  75. this.init()
  76. },
  77. methods: {
  78. init () {
  79. _commentDetail({ plan_id: this.params.plan_id }).then(res => {
  80. this.teacher = res.data.teacher_data
  81. this.params.teacher_id = this.teacher.teacher_id
  82. this.satisfaction = res.data.satisfaction_data
  83. this.params.statisfaction = this.satisfaction.satisfaction
  84. this.params.agency_statisfaction = this.satisfaction.agency_satisfaction
  85. })
  86. },
  87. evaluate (type, value) { // 评价
  88. this.params[type] = value
  89. },
  90. comment () {
  91. _tocomment(this.params).then(res => {
  92. uni.showToast({ title: res.msg, icon: 'success' })
  93. setTimeout(() => {
  94. uni.navigateBack()
  95. }, 800)
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss" scoped>
  102. @import '~@/common/css/mixin.scss';
  103. .page {
  104. height: 100vh;
  105. }
  106. .teacher {
  107. &-title {
  108. @include title(4px, 18px);
  109. }
  110. }
  111. </style>