erweima.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>
  16. </view>
  17. </view>
  18. </view>
  19. <!-- 底部导航 -->
  20. <MtaFooter></MtaFooter>
  21. </view>
  22. </template>
  23. <script setup>
  24. import {
  25. ref,
  26. reactive
  27. } from "vue";
  28. import {
  29. onLoad
  30. } from "@dcloudio/uni-app"
  31. import * as httpApi from "@/api/common.js"
  32. import MtaFooter from "@/components/MtaFooter.vue"
  33. import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
  34. const data = reactive({
  35. content: ''
  36. })
  37. onLoad(() => {
  38. pageInit();
  39. })
  40. function handleGo(code) {
  41. if (code == 'shouye') {
  42. uni.navigateTo({
  43. url: '/pages/index/index'
  44. })
  45. }
  46. }
  47. </script>
  48. <style>
  49. </style>