zhaoshengrexian.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <view class="dljt-page-box">
  3. <MtaNavbar></MtaNavbar>
  4. <view class="dljt-container-box">
  5. <view class="dljt-page-title">招生热线</view>
  6. <view class="dljt-page-content-box">
  7. <!-- 导航 -->
  8. <view class="dljt-breadcrumb-box">
  9. <view class="breadcrumb-text" @click="handleGo('shouye')">首页</view>
  10. <icon class="breadcrumb-jt"></icon>
  11. <view class="breadcrumb-active">招生热线</view>
  12. </view>
  13. <view class="dljt-detail-box">
  14. <view class="dljt-editor-box">
  15. <view>招生热线</view><view>
  16. <view class="sidebar-hover-box">
  17. <view>联系电话:0411—82497640</view>
  18. <view class="tel-left">0411—82441655</view>
  19. <view>大连市内:孙老师  18840975996</view>
  20. <view>旅顺口区:柳老师  18840975995</view>
  21. <view>瓦房店市:徐老师  18840975998</view>
  22. <view>普兰店区:常老师  18840975898</view>
  23. <view>金普新区:李老师  18840975991</view>
  24. <view>庄河外市:王老师  18840975990</view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 底部导航 -->
  32. <MtaFooter></MtaFooter>
  33. </view>
  34. </template>
  35. <script setup>
  36. import {
  37. ref,
  38. reactive
  39. } from "vue";
  40. import {
  41. onLoad
  42. } from "@dcloudio/uni-app"
  43. import * as httpApi from "@/api/common.js"
  44. import MtaFooter from "@/components/MtaFooter.vue"
  45. import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
  46. const data = reactive({
  47. content: ''
  48. })
  49. onLoad(() => {
  50. pageInit();
  51. })
  52. function handleGo(code) {
  53. if (code == 'shouye') {
  54. uni.navigateTo({
  55. url: '/pages/index/index'
  56. })
  57. }
  58. }
  59. </script>
  60. <style>
  61. </style>