xygkLianxifangshi.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="dljt-page-box lxfs-page" v-if="data.info">
  3. <MtaNavbar></MtaNavbar>
  4. <view class="dljt-container-box">
  5. <!-- 详情页面 -->
  6. <view class="dljt-page-title">联系方式</view>
  7. <view class="dljt-page-content-box">
  8. <!-- 导航 -->
  9. <view class="dljt-breadcrumb-box">
  10. <view class="breadcrumb-text" @click="handleGo()">首页</view>
  11. <icon class="breadcrumb-jt"></icon>
  12. <view class="breadcrumb-text">学院概况</view>
  13. <icon class="breadcrumb-jt"></icon>
  14. <view class="breadcrumb-active">联系方式</view>
  15. </view>
  16. <view class="lxfs-content-box">
  17. <view class="lxfs-map"></view>
  18. <!-- 图 -->
  19. <view class="lxfs-tel-box">办公室电话:{{data.info.bangongshi}}</view>
  20. <view class="lxfs-tel-box">职业培训电话:{{data.info.zhiyepeixun}}</view>
  21. <view class="lxfs-tel-box">招生电话:{{data.info.zhaosheng}}</view>
  22. <view class="lxsf-code-box">
  23. <view>
  24. <image :src="data.info.douyinPic"></image>
  25. <view class="code-text-box">{{data.info.douyin}}</view>
  26. </view>
  27. <view>
  28. <image :src="data.info.gongzhonghaoPic"></image>
  29. <view class="code-text-box">{{data.info.gongzhonghao}}</view>
  30. </view>
  31. <view>
  32. <image :src="data.info.shipinhaoPic"></image>
  33. <view class="code-text-box">{{data.info.shipinhao}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- 底部导航 -->
  40. <MtaFooter></MtaFooter>
  41. </view>
  42. </template>
  43. <script setup>
  44. import MtaFooter from "@/components/MtaFooter.vue"
  45. import {
  46. ref,
  47. reactive
  48. } from "vue";
  49. import {
  50. onLoad
  51. } from "@dcloudio/uni-app"
  52. import * as httpApi from "@/api/common.js"
  53. const data = reactive({
  54. info: ''
  55. })
  56. onLoad(() => {
  57. pageInit();
  58. })
  59. function pageInit() {
  60. httpApi.getCommonGaikuangDizhiInfo().then(res => {
  61. data.info = res.data;
  62. })
  63. }
  64. </script>
  65. <style>
  66. </style>