university_ranking_query1.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <div class="university_ranking_query1">
  3. <head-component :headinfo=headinfo></head-component>
  4. <div class="page-content">
  5. <div class="page-box">
  6. <div class="content">
  7. 软科中国大学排名(Best Chinese Universities Ranking),
  8. 前称软科中国最好大学排名,是由上海软科教育信息咨询有限公司(简称软科)发布的年度中国大学排名,
  9. 首次发布于2015年。“软科中国大学排名”的评价体系源自自主研发的可视化评价专利技术,
  10. 依托“大学360度数据监测平台”的大数据支持,
  11. 设置办学层次、学科水平、办学资源、师资规模与结构、人才培养、科学研究、服务社会、高端人才、重大项目与成果、国际竞争力共十个评价模块,
  12. 细分36个评价维度,内嵌104项评价指标,涉及320个评价变量,是对中国大学办学水平的立体化监测式评价。
  13. </div>
  14. <div class="bottom-box">
  15. <img class="bottom-btn" @click="jumpTo" style="z-index:10; width: 244px; height: 100px;" src="@/assets/images/environment/search-btn.png">
  16. </div>
  17. </div>
  18. </div>
  19. <!-- <drag_component></drag_component>-->
  20. </div>
  21. </template>
  22. <script setup>
  23. import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
  24. const router = useRouter()
  25. const headinfo = ref({})
  26. import {ref, onMounted, onUnmounted} from 'vue';
  27. import drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
  28. function setHeadinfo() {
  29. headinfo.value = {
  30. title: '高校排名查询',
  31. user: {
  32. avatar: '头像路径',
  33. nickName: '张三'
  34. },
  35. backUrl: '/index',
  36. backUrlUse: true,
  37. }
  38. }
  39. function jumpTo() {
  40. router.push({
  41. path: '/xjc-integratedmachine/environment/university_ranking_query2'
  42. })
  43. }
  44. onMounted(()=>{
  45. setHeadinfo();
  46. })
  47. </script>
  48. <style scoped lang="scss">
  49. .university_ranking_query1 {
  50. background: url('@/assets/images/login/login-home-background.png') no-repeat;
  51. background-size: 1920px 1080px;
  52. z-index: 10;
  53. width: 100%;
  54. height: 1080px;
  55. .page-content {
  56. width: 100%;
  57. position: absolute;
  58. top: 123px;
  59. bottom: 0;
  60. div {
  61. width: 1600px;
  62. margin: 0 auto;
  63. //border: 1px solid;
  64. display: flex;
  65. justify-content: space-between;
  66. flex-wrap: wrap;
  67. }
  68. .page-box {
  69. width: 1832px;
  70. height: 910px;
  71. background: #FFFFFF;
  72. border-radius: 35px 35px 35px 35px;
  73. margin: 13px auto 0;
  74. padding-top: 25px;
  75. position: relative;
  76. padding-bottom: 30px;
  77. .content {
  78. text-indent: 2em;
  79. font-size: 30px;
  80. color: #333333;
  81. line-height: 52px;
  82. margin-top: 100px;
  83. }
  84. }
  85. .bottom-box{
  86. width: 100%;
  87. display: flex;
  88. justify-content: space-around;
  89. .bottom-btn {
  90. margin-top: 420px;
  91. }
  92. }
  93. }
  94. }
  95. </style>