123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <!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/footer.css" />
- <link rel="stylesheet" href="./css/product-detail.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;
- box-shadow: 0 0.0625rem 0.875rem -0.375rem rgba(0, 0, 0, 0.3);
- "
- >
- <img
- class="header-logo"
- :src="baseURL + config.web_logo_color"
- 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="app">
- <div class="product">
- <div class="product-info">
- <div class="info-name">{{info[lan_key('name')]}}</div>
- <div class="info-desc">{{info[lan_key('description')]}}</div>
- </div>
- <img class="product-image" :src="info.image" alt="" />
- </div>
- <div class="title">{{text('功能特点')}}</div>
- <!-- <div class="content" v-html="info[lan_key('content')]"></div> -->
- <div class="content feature">
- <div class="feature-item" v-for="item in feature_list">
- <div class="feature-title">{{item[lan_key('title')]}}</div>
- <div class="feature-content">{{item[lan_key('content')]}}</div>
- </div>
- </div>
- <div class="title">{{text('产品规格')}}</div>
- <!-- <div class="content" v-html="info[lan_key('tech_content')]"></div> -->
- <div class="content sku">
- <div class="sku-item" v-for="item in sku_list">
- <div class="sku-mark"></div>
- <div class="sku-content">{{item[lan_key('title')]}}</div>
- </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/footer.js"></script>
- <script type="module" src="./js/product-detail.js"></script>
- </body>
- </html>
|