ExhibitionService.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div class="autoBox box" style="min-height: 900px;position: relative;">
  3. <div class="crumbs">
  4. <el-breadcrumb separator="/">
  5. <el-breadcrumb-item :to="{ path: 'home' }">{{$t('common.Home')}}</el-breadcrumb-item>
  6. <el-breadcrumb-item>{{$t('common.ExhibitionService')}}</el-breadcrumb-item>
  7. </el-breadcrumb>
  8. </div>
  9. <div style="position: absolute;left: 50%;top: 45%;transform: translate(-50%,-50%);width: 1200px;">
  10. <div style="font-weight: 600;color: #2C558A;line-height: 45px;font-size: 30px;text-align: center;margin-bottom: 10px;">
  11. <span style="width: 331px;height: 1px;background:rgba(44, 85, 138,.3);display: inline-block;vertical-align: middle;"></span>
  12. {{$t('common.ExhibitionService')}}
  13. <span style="width: 331px;height: 1px;background:rgba(44, 85, 138,.3);display: inline-block;vertical-align: middle;"></span>
  14. </div>
  15. <div style="margin-top: 2px;font-size: 20px;width: 780px;font-size: 16px;margin: auto;margin-top: 18px;
  16. font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: #2C558A;line-height: 24px;text-indent: 30px;">
  17. </div>
  18. <img src="@/assets/img/constructions.png" alt="" style="width:577px;height:285px;margin-top: 30px;margin-left: 297px;">
  19. <div style="text-align: center;margin-bottom: 200px;color: #91ADE2;font-size: 16px;">{{$t('common.construction')}}</div>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. name: "ExhibitionService",
  26. data () {
  27. return {
  28. }
  29. },
  30. mounted() {
  31. this.$router.go(-1);
  32. window.open('http://tour.quanjingke.com/xiangmu/quanqiunengyuan_vtour_v7/index.html');
  33. },
  34. methods:{
  35. }
  36. }
  37. </script>
  38. <style scoped>
  39. .box {
  40. margin-top: 10px;
  41. background: #fff;
  42. /* height: 500px; */
  43. padding: 20px 0;
  44. }
  45. .crumbs {
  46. margin-left: 20px;
  47. }
  48. </style>