学员端小程序
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.

58 lines
952 B

  1. <template>
  2. <view class="pageBg">
  3. <view class="ul">
  4. <view class="li">
  5. <view class="num">1</view>
  6. <view class="con">
  7. <schoolItme :showPhone="false"/>
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import schoolItme from '../findShcool/comp/schoolItem.vue'
  15. export default {
  16. components: { schoolItme },
  17. onLoad(option) {
  18. if(option.type) {
  19. uni.setNavigationBarTitle({
  20. title: '合格率排行'
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .ul {
  28. padding: 28rpx;
  29. }
  30. .li {
  31. display: flex;
  32. align-items: center;
  33. .num {
  34. width: 56rpx;
  35. height: 36rpx;
  36. border-radius: 4rpx;
  37. text-align: center;
  38. background: #ADADAD;
  39. font-size: 28rpx;
  40. color: #fff;
  41. margin-right: 28rpx;
  42. &:nth-child(1) {
  43. background: #FF6B6D;
  44. }
  45. &:nth-child(2) {
  46. background: #F18840;
  47. }
  48. &:nth-child(3) {
  49. background: #FFB83E;
  50. }
  51. }
  52. .con {
  53. flex: 1;
  54. width: 0;
  55. }
  56. }
  57. </style>