zhaoshengrexian.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="dljt-page-box zsrx-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. <!-- 导航 -->
  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 class="dljt-blue-title">招生热线</view>
  16. <view class="dljt-zsrx-content-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. <!-- 底部导航 -->
  31. <MtaFooter></MtaFooter>
  32. </view>
  33. </template>
  34. <script setup>
  35. import {
  36. ref,
  37. reactive
  38. } from "vue";
  39. import {
  40. onLoad
  41. } from "@dcloudio/uni-app"
  42. import * as httpApi from "@/api/common.js"
  43. import MtaFooter from "@/components/MtaFooter.vue"
  44. import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
  45. const data = reactive({
  46. content: ''
  47. })
  48. onLoad(() => {
  49. pageInit();
  50. })
  51. function handleGo(code) {
  52. if (code == 'shouye') {
  53. uni.navigateTo({
  54. url: '/pages/index/index'
  55. })
  56. }
  57. }
  58. </script>
  59. <style>
  60. </style>