Commit 76c4adef68b8ac0171e31c604b4db643c1287955

Authored by liuqimichale
1 parent 7180b137

联系我们

build/webpack.dev.conf.js
... ... @@ -55,7 +55,8 @@ const devWebpackConfig = merge(baseWebpackConfig, {
55 55 new HtmlWebpackPlugin({
56 56 filename: 'index.html',
57 57 template: 'index.html',
58   - inject: true
  58 + inject: true,
  59 + favicon:'../static/favicon.ico'
59 60 }),
60 61 // copy custom static assets
61 62 new CopyWebpackPlugin([
... ...
index.html
... ... @@ -3,7 +3,8 @@
3 3 <head>
4 4 <meta charset="utf-8">
5 5 <meta name="viewport" content="width=device-width,initial-scale=1.0">
6   - <title>zxzn</title>
  6 + <link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico">
  7 + <title>中兴智能交通</title>
7 8 </head>
8 9 <body>
9 10 <div id="app"></div>
... ...
src/assets/css/commonCss/reset.css
... ... @@ -156,10 +156,7 @@ table {
156 156 color: #333;
157 157 text-align: center;
158 158 }
159   -/*灰色背景*/
160   -.bgCommon{
161   - background:rgba(238,238,238,1);
162   -}
  159 +
163 160 /*手指鼠标*/
164 161 .pointer{
165 162 cursor: pointer;
... ... @@ -213,3 +210,18 @@ table {
213 210 cursor: default;
214 211 }
215 212  
  213 +
  214 +
  215 +
  216 +/*面包导航*/
  217 +.bread{
  218 + height: 50px;
  219 + line-height: 50px;
  220 + color: #333;
  221 + font-size: 14px;
  222 +}
  223 +/*灰色背景*/
  224 +.bgCommon{
  225 + background:rgba(238,238,238,1);
  226 +}
  227 +
... ...
src/assets/images/contact/company.png 0 → 100644

432 KB

src/views/contact/index.vue
1 1 <template>
2   - <div>lianxi</div>
  2 + <div>
  3 + <commonProduct mainTitle="中兴智能交通" subTitle="构建绿色交通 享受安全便利出行"></commonProduct>
  4 + <div class="bread bgCommon">
  5 + <div class=" widthCommon">
  6 + 您所在位置: <span class="pointer" @click="$router.push({name:'home'})">首页</span> -> 联系我们
  7 + </div>
  8 + </div>
  9 +
  10 + <div class="widthCommon">
  11 + <ul class="top-wrapper">
  12 + <li> 
  13 + <p>无锡总部</p>
  14 + <p>地址: 江苏省无锡新区菱湖大道200号中国传感网国际创新园A座6层</p>
  15 + <p>邮编: 214135</p>
  16 + <p>电话: (0510) 66055077</p>
  17 + <p>传真: (0510) 66055055</p>
  18 + <p>E-mail: info@zte-its.com</p>
  19 + <p>24小时热线服务电话: 400 690 0889</p>
  20 + </li>
  21 + <li></li>
  22 + </ul>
  23 +
  24 + <ul class="companyList">
  25 + <li>
  26 + <p>北京分部</p>
  27 + <p>地址: 北京市丰台区丰台北路18号院恒泰中心D座10-1002室</p>
  28 + <p>邮编: 100166</p>
  29 + </li>
  30 + <li>
  31 + <p>北京分部</p>
  32 + <p>地址: 北京市大兴区北臧村镇天荣街8号106室</p>
  33 + <p>邮编: 102609</p>
  34 + </li>
  35 + <li>
  36 + <p>青岛分部</p>
  37 + <p>地址: 山东省青岛市北区敦化路136号西王大厦</p>
  38 + <p>邮编: 266000</p>
  39 + <p>电话:18660251663</p>
  40 + </li>
  41 + <li>
  42 + <p>扬中分部</p>
  43 + <p>地址:江苏省扬中市三茅街道文景广场9栋8号</p>
  44 + <p>邮编:212200</p>
  45 + </li>
  46 + </ul>
  47 + </div>
  48 +
  49 + </div>
3 50 </template>
4 51  
5 52 <script>
  53 +import commonProduct from '@/components/commonBanner'
  54 +
6 55 export default {
7   - name: 'index'
  56 + name: 'index',
  57 + components: {
  58 + commonProduct
  59 + }
8 60 }
9 61 </script>
10 62  
11 63 <style scoped lang="">
  64 + .top-wrapper {
  65 + padding: 46px 0;
  66 + overflow: hidden;
  67 + border-bottom: 2px dashed #ccc;
  68 + font-size: 14px;
  69 + color: #333;
  70 + }
  71 +
  72 + .top-wrapper li {
  73 + height: 278px;
  74 + float: left;
  75 + width: 50%;
  76 + }
  77 +
  78 + .top-wrapper > li:nth-of-type(1) p {
  79 + margin-bottom: 24px;
  80 + }
12 81  
  82 + .top-wrapper > li:nth-of-type(2) {
  83 + background: url("../../assets/images/contact/company.png") no-repeat;
  84 + background-size: 539px 278px;
  85 + }
  86 + .companyList{
  87 + padding: 46px 0 16px;
  88 + overflow: hidden;
  89 + font-size: 14px;
  90 + color: #333;
  91 + }
  92 + .companyList li{
  93 + float: left;
  94 + width: 50%;
  95 + margin-bottom: 20px;
  96 + }
  97 + .companyList li p{
  98 + margin-bottom: 10px;
  99 + }
13 100 </style>
... ...
src/views/product/index.vue
... ... @@ -11,11 +11,13 @@
11 11 >{{item}}</li>
12 12 </ul>
13 13 </div>
14   -
15   - <div class="bread widthCommon">
16   - 您所在位置: <span class="pointer" @click="$router.push({name:'home'})">首页</span> -> 产品中心 -> 智慧停车
  14 + <div class="bread">
  15 + <div class=" widthCommon">
  16 + 您所在位置: <span class="pointer" @click="$router.push({name:'home'})">首页</span> -> 产品中心 -> 智慧停车
  17 + </div>
17 18 </div>
18 19  
  20 +
19 21 <keep-alive>
20 22 <component :is="tabView"></component>
21 23 </keep-alive>
... ... @@ -80,9 +82,5 @@ export default {
80 82 .tabActive{
81 83 background: #FFF;
82 84 }
83   - .bread{
84   - padding: 35px 0;
85   - color: #333;
86   - font-size: 14px;
87   - }
  85 +
88 86 </style>
... ...
static/favicon.ico 0 → 100644
No preview for this file type