123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <template>
- <div style="width: 100%;background:#fff">
- <div class="autoBox box cool">
- <div class="crumbs">
- <el-breadcrumb separator="/">
- <el-breadcrumb-item :to="{ path: 'home' }" replace>{{$t('common.Home')}}</el-breadcrumb-item>
- <el-breadcrumb-item >{{$t('common.AboutUs')}}</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <div class="autoBox box1">
- <div class="AboutBox">
- <div style="margin: 0 40%;">
- <div style="display: inline-block;width: 29px;height: 29px;float:left;">
- <img src="@/assets/img/helpCenter/aboutTitle.png" alt="" style="width: 100%">
- </div>
- <span class="Title">{{$t('common.AboutUs')}}</span>
- <div style="display: inline-block;width: 29px;height: 29px;float:left;">
- <img src="@/assets/img/helpCenter/aboutTitle.png" alt="" style="width: 100%">
- </div>
- <div style="clear: both"></div>
- </div>
- <div style="margin-top: 37px">
- <div class="controductTitle">{{$t(content.title)}}</div>
- <div style="clear: both"></div>
- </div>
- <div>
- <div class="content">
- <div style="text-indent: 2em" v-html="$t(content.contentText)"></div>
- <div style="margin-top: 30px">
- <div>{{$t(content.webService)}}</div>
- <div>{{$t(content.website)}} https://www.geidcp.com</div>
- <div v-html="$t(content.setUP)"></div>
- </div>
- <div style="margin-top: 42px;width: 620px;height: 226px">
- <img v-if="$i18n.locale == 'zh'" src="@/assets/img/helpCenter/aboutContent.png" alt="" style="height: 100%">
- <img v-if="$i18n.locale == 'en'" src="@/assets/img/helpCenter/aboutContent2.png" alt="" style="height: 100%">
- </div>
- <div style="display: inline-block;margin-right: 90px;margin-top: 14px" v-html="$t(content.down1)"></div>
- <div style="display: inline-block" v-html="$t(content.down2)"></div>
- <div class="controductTitle" style="margin-top: 38px" v-html="$t(content.title2)"></div>
- <div style="margin-top: 20px">{{$t('content.email')}} :geidcp-info@geidco.org</div>
- <div style="" v-html="$t(content.address)"></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import Base from "@/views/base/Base";
- import {getHelpColumnTree} from '@/api/operation/help/helpCenterEntity'
- export default{
- name:'aboutUs',
- extends: Base,
- data(){
- return{
- menu:[],
- content:{
- title:"common.AboutWorld",
- contentText:"common.OnSeptember",
- webService:"common.PlatformService",
- website:"common.Website",
- setUP:"common.Mobile",
- photo:"",
- down1:"common.MobileWebsite",
- down2:"common.ScanCode",
- title2:"common.Contact",
- email:"common.Email1",
- address:"common.AddressBeijing"
- }
- }
- },
- mounted() {
- this.getAboutId()
- },
- watch: {
- '$i18n.locale'(){
- this.getDetails();
- },
- },
- methods:{
- }
- }
- </script>
- <style scoped>
- .box {
- margin-top: 10px;
- background: #fff;
- /* height: 500px; */
- padding: 20px 0;
- }
- .crumbs {
- margin-left: 20px;
- }
- .box1 {
- padding: 0;
- /* transform: translateX(-20px); */
- background: #fff;
- margin-top: 15px;
- }
- body {
- margin: 0;
- padding:0;
- }
- .AboutBox{
- padding: 0 20px 20px 20px;
- }
- .rectangle{
- width: 3px;
- height: 26px;
- background: #18529c;
- float: left;
- margin: 7px 0;
- }
- .controductTitle{
- font-size: 20px;
- color:#2C558A;
- font-weight: 600;
- }
- .content{
- margin-top: 10px;
- font-size: 16px;
- color: #333333;
- line-height: 30px;
- width:100%;
- }
- .contentImg{
- margin-top: 10px;
- width: 20%;
- height: 155px;
- float: right;
- }
- .title{
- margin: 20px 0;
- font-size: 20px;
- font-weight: 600;
- }
- .controduct{
- margin: 20px 0;
- }
- .controduct ul li{
- list-style: disc inside;
- line-height: 30px;
- }
- .Title{
- float:left;
- margin:-5px 16px ;
- font-size: 30px;
- color: #333333;
- }
- </style>
|