aboutUs.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <div style="width: 100%;background:#fff">
  3. <div class="autoBox box cool">
  4. <div class="crumbs">
  5. <el-breadcrumb separator="/">
  6. <el-breadcrumb-item :to="{ path: 'home' }" replace>{{$t('common.Home')}}</el-breadcrumb-item>
  7. <el-breadcrumb-item >{{$t('common.AboutUs')}}</el-breadcrumb-item>
  8. </el-breadcrumb>
  9. </div>
  10. </div>
  11. <div class="autoBox box1">
  12. <div class="AboutBox">
  13. <div style="margin: 0 40%;">
  14. <div style="display: inline-block;width: 29px;height: 29px;float:left;">
  15. <img src="@/assets/img/helpCenter/aboutTitle.png" alt="" style="width: 100%">
  16. </div>
  17. <span class="Title">{{$t('common.AboutUs')}}</span>
  18. <div style="display: inline-block;width: 29px;height: 29px;float:left;">
  19. <img src="@/assets/img/helpCenter/aboutTitle.png" alt="" style="width: 100%">
  20. </div>
  21. <div style="clear: both"></div>
  22. </div>
  23. <div style="margin-top: 37px">
  24. <div class="controductTitle">{{$t(content.title)}}</div>
  25. <div style="clear: both"></div>
  26. </div>
  27. <div>
  28. <div class="content">
  29. <div style="text-indent: 2em" v-html="$t(content.contentText)"></div>
  30. <div style="margin-top: 30px">
  31. <div>{{$t(content.webService)}}</div>
  32. <div>{{$t(content.website)}} https://www.geidcp.com</div>
  33. <div v-html="$t(content.setUP)"></div>
  34. </div>
  35. <div style="margin-top: 42px;width: 620px;height: 226px">
  36. <img v-if="$i18n.locale == 'zh'" src="@/assets/img/helpCenter/aboutContent.png" alt="" style="height: 100%">
  37. <img v-if="$i18n.locale == 'en'" src="@/assets/img/helpCenter/aboutContent2.png" alt="" style="height: 100%">
  38. </div>
  39. <div style="display: inline-block;margin-right: 90px;margin-top: 14px" v-html="$t(content.down1)"></div>
  40. <div style="display: inline-block" v-html="$t(content.down2)"></div>
  41. <div class="controductTitle" style="margin-top: 38px" v-html="$t(content.title2)"></div>
  42. <div style="margin-top: 20px">{{$t('content.email')}} :geidcp-info@geidco.org</div>
  43. <div style="" v-html="$t(content.address)"></div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </template>
  50. <script>
  51. import Base from "@/views/base/Base";
  52. import {getHelpColumnTree} from '@/api/operation/help/helpCenterEntity'
  53. export default{
  54. name:'aboutUs',
  55. extends: Base,
  56. data(){
  57. return{
  58. menu:[],
  59. content:{
  60. title:"common.AboutWorld",
  61. contentText:"common.OnSeptember",
  62. webService:"common.PlatformService",
  63. website:"common.Website",
  64. setUP:"common.Mobile",
  65. photo:"",
  66. down1:"common.MobileWebsite",
  67. down2:"common.ScanCode",
  68. title2:"common.Contact",
  69. email:"common.Email1",
  70. address:"common.AddressBeijing"
  71. }
  72. }
  73. },
  74. mounted() {
  75. this.getAboutId()
  76. },
  77. watch: {
  78. '$i18n.locale'(){
  79. this.getDetails();
  80. },
  81. },
  82. methods:{
  83. }
  84. }
  85. </script>
  86. <style scoped>
  87. .box {
  88. margin-top: 10px;
  89. background: #fff;
  90. /* height: 500px; */
  91. padding: 20px 0;
  92. }
  93. .crumbs {
  94. margin-left: 20px;
  95. }
  96. .box1 {
  97. padding: 0;
  98. /* transform: translateX(-20px); */
  99. background: #fff;
  100. margin-top: 15px;
  101. }
  102. body {
  103. margin: 0;
  104. padding:0;
  105. }
  106. .AboutBox{
  107. padding: 0 20px 20px 20px;
  108. }
  109. .rectangle{
  110. width: 3px;
  111. height: 26px;
  112. background: #18529c;
  113. float: left;
  114. margin: 7px 0;
  115. }
  116. .controductTitle{
  117. font-size: 20px;
  118. color:#2C558A;
  119. font-weight: 600;
  120. }
  121. .content{
  122. margin-top: 10px;
  123. font-size: 16px;
  124. color: #333333;
  125. line-height: 30px;
  126. width:100%;
  127. }
  128. .contentImg{
  129. margin-top: 10px;
  130. width: 20%;
  131. height: 155px;
  132. float: right;
  133. }
  134. .title{
  135. margin: 20px 0;
  136. font-size: 20px;
  137. font-weight: 600;
  138. }
  139. .controduct{
  140. margin: 20px 0;
  141. }
  142. .controduct ul li{
  143. list-style: disc inside;
  144. line-height: 30px;
  145. }
  146. .Title{
  147. float:left;
  148. margin:-5px 16px ;
  149. font-size: 30px;
  150. color: #333333;
  151. }
  152. </style>