xygkXueyuanwenhua.vue 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="dljt-page-box dljt-xywh-page">
  3. <MtaNavbar></MtaNavbar>
  4. <view class="dljt-container-box">
  5. <view class="dljt-page-title">学院文化</view>
  6. <view class="dljt-page-content-box">
  7. <view class="dljt-breadcrumb-box">
  8. <view class="breadcrumb-text" @click="handleGo()">首页</view>
  9. <icon class="breadcrumb-jt"></icon>
  10. <view class="breadcrumb-text">学院概况</view>
  11. <icon class="breadcrumb-jt"></icon>
  12. <view class="breadcrumb-active">学院文化</view>
  13. </view>
  14. <view class="dljt-detail-box">
  15. <view class="xywh-row xx-row">
  16. <view class="xywh-row-content">
  17. <view class="xywh-name">校训</view>
  18. <view class="xywh-title">读书明志,精熟一技</view>
  19. <view class="xywh-text"><text>办学宗旨:</text>育人为根本,技能为核心,</view>
  20. <view class="xywh-text"><text></text>服务为宗旨,就业创业为导向</view>
  21. <view class="xywh-text"><text>培养目标:</text>学会做人做事,学会知识技能</view>
  22. <view class="xywh-text"><text></text>学会动脑动手,学会生存生活</view>
  23. <view class="xywh-text"><text>培养模式:</text>宽基础、活模块、重实践、强能力</view>
  24. </view>
  25. </view>
  26. <view class="xywh-row xh-row">
  27. <view class="xywh-row-content">
  28. <view class="xywh-name">校徽</view>
  29. <view class="xywh-text">责任:为学生终生负责,终身为教育负责</view>
  30. <view class="xywh-text">使命:改变现实、点亮希望、塑造未来</view>
  31. <view class="xywh-text">校风:团结、勤奋、务实、进取</view>
  32. <view class="xywh-text">教风:教书育人、管理育人、服务育人、环境育人</view>
  33. <view class="xywh-text">学风:学会做人、学会生存</view>
  34. <view class="xywh-text">领导作风:精诚合作、廉洁奉公、联系群众、</view>
  35. <view class="xywh-text left-text">开拓创新</view>
  36. <view class="xywh-text">管理作风:服从于管理,服务于管理</view>
  37. <view class="xywh-text">学院精神:与时俱进,争创一流</view>
  38. </view>
  39. </view>
  40. <view class="xywh-row xg-row">
  41. <view class="xywh-row-content">
  42. <view class="xywh-name">校歌</view>
  43. <view class="xywh-text">迎着旭日的阳光,迎着旭日的阳光</view>
  44. <view class="xywh-text">迎着旭日的阳光,啊迎着旭日的阳光</view>
  45. <view class="xywh-text">迎着旭日的阳光,噢我们走进交通的学堂</view>
  46. <view class="xywh-text">学会做人,学会生存,追求人生美好理想</view>
  47. <view class="xywh-text">迎着旭日的阳光,噢我们来到同学的身旁</view>
  48. <view class="xywh-text">教书育人,桃李芬芳,我们的职业无尚荣光</view>
  49. <view class="xywh-text">团结勤奋,务实进取,我们在蓝天碧海翱翔</view>
  50. <view class="xywh-text">手拉着手,师生相长,肩并着肩,相得益彰</view>
  51. <view class="xywh-text">创新服务,节约和谐,我们前进在科学发展</view>
  52. <view class="xywh-text">珍惜生命,珍爱时光,我们比翼,比翼飞翔</view>
  53. <view class="xywh-text">发展的大路上。飞翔飞翔啊</view>
  54. <view class="xywh-text">比翼飞翔。</view>
  55. <view class="xywh-text">张开理想的翅膀,飞翔飞翔啊</view>
  56. <view class="xywh-text">谱写崭新的篇章,飞翔飞翔</view>
  57. <view class="xywh-text">让校园充满爱和阳光,飞翔飞翔</view>
  58. <view class="xywh-text">让未来更加辉煌,更加辉煌</view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- 底部导航 -->
  65. <MtaFooter></MtaFooter>
  66. </view>
  67. </template>
  68. <script setup>
  69. import MtaFooter from "@/components/MtaFooter.vue"
  70. function handleGo() {
  71. uni.navigateTo({
  72. url: '/pages/index/index'
  73. })
  74. }
  75. </script>
  76. <style>
  77. </style>