123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>产品中心</title>
- <link rel="stylesheet" href="./css/common/default.css" />
- <link rel="stylesheet" href="./css/components/header.css" />
- <link rel="stylesheet" href="./css/components/banner.css" />
- <link rel="stylesheet" href="./css/components/footer.css" />
- <link rel="stylesheet" href="./css/product.css" />
- <script src="./js/lib/vue.min.js"></script>
- <script src="./js/lib/axios.min.js"></script>
- <script src="./js/common/browser-resize.js"></script>
- </head>
- <body>
- <div class="wrap">
- <div
- id="header"
- class="header"
- style="background: transparent; --color: #fff"
- >
- <img class="header-logo" :src="logo_path" alt="" />
- <div class="header-nav">
- <a
- v-for="item in path_list"
- :href="item.path"
- :class="{'current':current_path.includes(item.path)}"
- >{{text(item.name)}}</a
- >
- </div>
- <div class="header-language">
- <span
- :class="[current_language=='chs'?'current':'no-current']"
- @click="changeLanguage('chs')"
- >中文(简体)</span
- >
- <span>|</span>
- <span
- :class="[current_language=='en'?'current':'no-current']"
- @click="changeLanguage('en')"
- >English</span
- >
- </div>
- </div>
- <div
- id="banner"
- class="banner"
- :style="{backgroundImage:`url(${image})`}"
- >
- <div class="banner-title">{{title}}</div>
- </div>
- <div id="app">
- <div class="tab">
- <div
- class="tab-item"
- v-for="(item,index) in tab_list"
- @click="getList(index)"
- >
- {{item[lan_key('name')]}}
- </div>
- <div class="current-tab" :style="{ left: current_tab }"></div>
- </div>
- <div class="content">
- <div class="content-item" v-for="item in list">
- <div class="title">{{item[lan_key('name')]}}</div>
- <div class="detail">{{item[lan_key('description')]}}</div>
- <a class="more" :href="'product-detail.html?id=' + item.id"
- >{{text('了解更多')}}</a
- >
- </div>
- </div>
- </div>
- <div id="footer" class="footer">
- <div class="footer-company-page">
- <!-- <div class="footer-company">蓝芯算力(深圳)科技有限公司</div> -->
- <img
- class="footer-company"
- :src="baseURL + config.web_logo_footer"
- alt=""
- />
- <div class="footer-page">
- <a
- class="footer-page-item"
- v-for="item in path_list"
- :href="item.path"
- >{{text(item.name)}}</a
- >
- </div>
- </div>
- <div class="footer-email-time">
- <div class="footer-email footer-info">
- <img class="footer-icon" src="./static/email.png" alt="" />
- <span>{{config.web_email}}</span>
- </div>
- <!-- <div class="footer-time">周一至周日9:00-18:00 (法定节假日除外)</div> -->
- </div>
- <div class="footer-place-phone">
- <div class="footer-place footer-info">
- <img class="footer-icon" src="./static/place.png" alt="" />
- <span>{{config[lan_key('web_company_address')]}}</span>
- </div>
- <div
- class="footer-phone footer-info"
- v-if="config.web_tel && config.web_tel.tel1"
- >
- <img class="footer-icon" src="./static/phone.png" alt="" />
- <span>{{config.web_tel?config.web_tel.tel1:'-'}}</span>
- </div>
- </div>
- <div class="footer-line"></div>
- <div class="footer-term-ICP">
- <div class="footer-term">
- <a class="footer-term-item" href="/agreement.html?type=1"
- >{{text('法律声明')}}</a
- >
- <span>|</span>
- <a class="footer-term-item" href="/agreement.html?type=2"
- >{{text('隐私条款')}}</a
- >
- </div>
- <div class="footer-ICP">
- {{config[lan_key('web_copyright')]}} 
- <a :href="config.web_beian_url">{{config.web_beian}}</a>
- </div>
- </div>
- </div>
- </div>
- <script type="module" src="./js/components/header.js"></script>
- <script type="module" src="./js/components/banner.js"></script>
- <script type="module" src="./js/components/footer.js"></script>
- <script type="module" src="./js/product.js"></script>
- </body>
- </html>
|