Blame view

js/nav-footer.js 4.18 KB
0d5fe5d2   Andy   add footer tel
1
  
435e435d   liuqimichale   Merge branch 'tes...
2
3
4
5
6
  //header HTML
  var headerHtmls='<div class="header-inner">' +
    '<div class="container">' +
    '<div class="row">' +
    '<div class="col-md-4 col-sm-2 col-xs-2">' +
89c821ac   chenbiao   宣化官网
7
8
9
    '<div class="logo">' +
      '<div>中交智联云海(张家口)停车有限公司</div>' +
      '<div style="font-size: 14px;">CCCC ITD (Zhang jia kou) Parking CO., LTD.</div>' +
435e435d   liuqimichale   Merge branch 'tes...
10
11
12
13
14
15
16
17
    '</div>' +
    '</div>' +
    '<div class="col-md-8 col-sm-8">' +
    '<div class="mobile-menu"></div>' +
    '<nav class="navbar navbar-default">' +
    '<div class="collapse navbar-collapse">' +
    '<ul id="nav" class="nav navbar-nav">' +
    '<li class=""><a href="index.html">首页</a></li>' +
a63353e2   chenbiao   宣化官网
18
    '<li><a href="portfolio.html">城市停车云服务平台</a></li>' +
03141176   chenbiao   宣化官网
19
    '<li><a href="services.html">宣化停车</a></li>' +
ca05880d   刘淇   天水官网
20
    '<li><a href="joinous.html">对外公告</a></li>' +
435e435d   liuqimichale   Merge branch 'tes...
21
22
23
24
25
26
27
28
    '<li><a href="contact.html">关于我们</a></li>' +
    '</ul>' +
    '</div>' +
    '</nav>' +
    '</div>' +
    '</div>' +
    '<</div>' +
    '</div>';
0d5fe5d2   Andy   add footer tel
29
  
435e435d   liuqimichale   Merge branch 'tes...
30
31
32
  //footer HTML
  var footHtmls='<div class="container">' +
    '        <div class="row">' +
f8b82db6   liuqimichale   首页自适应
33
    '            <div class="col-md-3 col-xs-6">' +
435e435d   liuqimichale   Merge branch 'tes...
34
35
36
    '                <div class="footer">' +
    '                    <div class="footer-title">公司介绍</div>' +
    '                    <ul class="footer-links">' +
4f39ec99   Andy   footer 加链接
37
38
39
40
    '                        <li><a href="contact.html">企业文化</a></li>' +
    '                        <li><a href="contact.html">加入我们</a></li>' +
    '                        <li><a href="contact.html">发展历程</a></li>' +
    '                        <li><a href="contact.html">资质</a></li>' +
435e435d   liuqimichale   Merge branch 'tes...
41
42
43
    '                    </ul>' +
    '                </div>' +
    '            </div>' +
f8b82db6   liuqimichale   首页自适应
44
    '            <div class="col-md-3 col-xs-6">' +
435e435d   liuqimichale   Merge branch 'tes...
45
46
47
    '                <div class="footer">' +
    '                    <div class="footer-title">产品介绍</div>' +
    '                    <ul class="footer-links">' +
a48c1840   chenbiao   宣化官网
48
    // '                        <li><a href="portfolio.html">企业云</a></li>' +
aed79d36   chenbiao   宣化官网
49
    '                        <li><a href="portfolio.html">城市停车场云服务平台</a></li>' +
03141176   chenbiao   宣化官网
50
    '                        <li><a href="services.html">宣化停车</a></li>' +
435e435d   liuqimichale   Merge branch 'tes...
51
52
53
    '                    </ul>' +
    '                </div>' +
    '            </div>' +
f8b82db6   liuqimichale   首页自适应
54
    '            <div class="col-md-3 col-xs-6">' +
435e435d   liuqimichale   Merge branch 'tes...
55
56
57
    '                <div class="footer">' +
    '                    <div class="footer-title">联系我们</div>' +
    '                    <ul class="footer-links">' +
48e27873   chenbiao   宣化官网
58
    // '                        <li>电话:(0938) 8222000</li>' +
a63353e2   chenbiao   宣化官网
59
60
    '                        <li style="height: 36px;line-height: 18px;margin-bottom: 16px;">地址:河北省张家口市宣化区永安街5号</li>' +
    '                        <li>E-mail:ccccitd2023@163.com</li>' +
435e435d   liuqimichale   Merge branch 'tes...
61
62
63
    '                    </ul>' +
    '                </div>' +
    '            </div>' +
a63353e2   chenbiao   宣化官网
64
  /*  '            <div class="col-md-3 col-xs-6">' +
435e435d   liuqimichale   Merge branch 'tes...
65
66
67
68
69
70
    '                <div class="footer">' +
    '                    <div class="footer-media">官方媒体</div>' +
    '                    <ul class="footer-links">' +
    '                        <span class="links_wechatIco rnt_pos_rel">' +
    '                            <span class="rnt_wechat rnt_pos_abs"></span>' +
    '                        </span>' +
ca05880d   刘淇   天水官网
71
    // '                        <a id="wb_links" ><span class="links_weiboIco"></span></a>' +
435e435d   liuqimichale   Merge branch 'tes...
72
73
    '                    </ul>' +
    '                </div>' +
a63353e2   chenbiao   宣化官网
74
    '            </div>' +*/
435e435d   liuqimichale   Merge branch 'tes...
75
76
77
78
79
    '        </div>' +
    '    </div>' +
    '    <div id="bottom-footer" class="bottom-footer">' +
    '        <div class="container">' +
    '            <div class="row">' +
298d6007   Andy   media 服务页
80
    '                <div class="col-md-12 text-center" style="padding: 15px;">' +
a263fc39   chenbiao   宣化官网
81
82
    // '<div class="copyright skipFun">Copyright © 2018. ZTE ITS LIMITED. </div>' +
      '<div class="copyright skipFun">Copyright ©CCCC ITD(Zhang jia kou)Parking CO., LTD.Il. <img src="images/jbaicon.png" class="jba" alt="">冀ICP备2023015439号\n</div>' +
435e435d   liuqimichale   Merge branch 'tes...
83
84
85
86
87
88
    '                </div>' +
    '            </div>' +
    '        </div>' +
    '    </div>';
  $('#header').html(headerHtmls);
  $('#footer').html(footHtmls);
25f17484   liuqimichale   软件平台
89
  
f170b516   Andy   add
90
  $('#wb_links').on('click',function () {
ca05880d   刘淇   天水官网
91
    window.open('https://weibo.com/p/1006062771007080/home?from=page_100606&mod=TAB#place');
f170b516   Andy   add
92
  })
172aa207   Andy   add 任你听官网添加备案链接
93
  $('.skipFun').on('click',function () {
a263fc39   chenbiao   宣化官网
94
    window.open("https://beian.miit.gov.cn/")
172aa207   Andy   add 任你听官网添加备案链接
95
96
  
  })
f170b516   Andy   add

f7547cea   Andy   nav-footer