erweima.vue 1.2 KB

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