学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.5 KiB

  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="评价"></topNavbar>
  4. <evaluateItem :info="info"/>
  5. <evaluateItem :info="{tit: '您对教练满意吗'}"/>
  6. <view class="btnBox">
  7. <view class="btnBg">提交</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import evaluateItem from './comp/evaluateItem'
  13. export default {
  14. components: { evaluateItem },
  15. data() {
  16. return {
  17. checked: false,
  18. info: {
  19. tit: '您对驾校满意吗?',
  20. }
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. @import '../../../common/css/textareaBg.scss';
  27. .btnBox {
  28. padding-bottom: 76rpx;
  29. }
  30. .btnBg {
  31. margin: 124rpx auto 0 auto;
  32. width: 396rpx;
  33. }
  34. .textareaBg {
  35. margin-top: 22rpx;
  36. }
  37. .card {
  38. padding: 28rpx;
  39. .top_row {
  40. display: flex;
  41. align-items: center;
  42. padding-bottom: 24rpx;
  43. border-bottom: 2rpx solid #E8E9EC;
  44. justify-content: space-between;
  45. .tit {
  46. font-weight: 600;
  47. color: #333333;
  48. font-size: 32rpx;
  49. }
  50. }
  51. .user_row {
  52. width: 100%;
  53. height: 100rpx;
  54. display: flex;
  55. align-items: center;
  56. .avatar {
  57. width: 60rpx;
  58. height: 60rpx;
  59. border-radius: 50%;
  60. overflow: hidden;
  61. }
  62. .name {
  63. font-size: 28rpx;
  64. font-weight: 500;
  65. padding-left: 26rpx;
  66. }
  67. }
  68. .star_row {
  69. padding: 14rpx 0;
  70. display: flex;
  71. align-items: center;
  72. .lab {
  73. font-size: 28rpx;
  74. font-weight: 500;
  75. padding-right: 32rpx;
  76. }
  77. .star {
  78. }
  79. }
  80. }
  81. </style>