Your Name 10 miesięcy temu
rodzic
commit
770368dfb4
49 zmienionych plików z 1365 dodań i 8407 usunięć
  1. 21
    0
      application/admin/controller/Custom.php
  2. 29
    0
      application/common/model/Yjcp.php
  3. 92
    0
      application/home/controller/Yjcp.php
  4. 83
    0
      application/home/model/Yjcp.php
  5. 0
    6722
      data/backup/v1.6.4_www/application/common.php
  6. BIN
      public/static/common/images/ico/doc.png
  7. BIN
      public/static/common/images/ico/docx.png
  8. BIN
      public/static/common/images/ico/pdf.png
  9. BIN
      public/static/common/images/ico/ppt.png
  10. BIN
      public/static/common/images/ico/pptx.png
  11. BIN
      public/static/common/images/ico/rar.png
  12. BIN
      public/static/common/images/ico/xls.png
  13. BIN
      public/static/common/images/ico/xlsx.png
  14. BIN
      public/static/common/images/ico/zip.png
  15. 2
    489
      template/mobile/index.htm
  16. 1
    35
      template/mobile/lists_search.htm
  17. 45
    0
      template/mobile/lists_yjcp_cp.htm
  18. 1
    103
      template/mobile/view_zczygz_cl.htm
  19. 1
    65
      template/mobile/view_zczygz_new.htm
  20. 8
    113
      template/mobile/view_zczygz_zc.htm
  21. 1
    1
      template/pc/common/include/bottom.htm
  22. 5
    5
      template/pc/common/include/footer.htm
  23. 5
    5
      template/pc/common/include/header.htm
  24. 12
    0
      template/pc/common/include/tdk/cailiao.htm
  25. 19
    0
      template/pc/common/include/tdk/cl_detail.htm
  26. 12
    0
      template/pc/common/include/tdk/new.htm
  27. 12
    0
      template/pc/common/include/tdk/new_detail.htm
  28. 18
    0
      template/pc/common/include/tdk/zc_detail.htm
  29. 19
    0
      template/pc/common/include/tdk/zhengce.htm
  30. 23
    27
      template/pc/common/include/top.htm
  31. 1
    0
      template/pc/common/main/param/zhengce.htm
  32. 19
    0
      template/pc/common/other/down.htm
  33. 2
    2
      template/pc/components/condition/style1.htm
  34. 105
    0
      template/pc/components/detail/cl.htm
  35. 124
    0
      template/pc/components/detail/content.htm
  36. 67
    0
      template/pc/components/detail/new.htm
  37. 14
    0
      template/pc/components/goods/zc.htm
  38. 400
    0
      template/pc/components/index/content.htm
  39. 3
    3
      template/pc/components/list/style12/page/mod_3.htm
  40. 6
    0
      template/pc/components/nav/style_1.htm
  41. 46
    0
      template/pc/components/search/content.htm
  42. 148
    2
      template/pc/css/extend.css
  43. 1
    490
      template/pc/index.htm
  44. 1
    1
      template/pc/js/main.js
  45. 1
    51
      template/pc/lists_search.htm
  46. 9
    13
      template/pc/lists_yjcp_cp.htm
  47. 4
    106
      template/pc/view_zczygz_cl.htm
  48. 1
    65
      template/pc/view_zczygz_new.htm
  49. 4
    109
      template/pc/view_zczygz_zc.htm

+ 21
- 0
application/admin/controller/Custom.php Wyświetl plik

@@ -327,6 +327,14 @@ class Custom extends Base
327 327
             //查询排序 等级
328 328
             $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
329 329
 
330
+            //获取文档文件后缀
331
+            if(!empty($post['addonFieldExt']['down_eyou_remote'])){
332
+                $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
333
+                $ext = end($file);
334
+            }else{
335
+                $ext = '';
336
+            }
337
+
330 338
             // --存储数据
331 339
             $newData = array(
332 340
                 'typeid'=> empty($post['typeid']) ? 0 : $post['typeid'],
@@ -359,6 +367,7 @@ class Custom extends Base
359 367
                 'level' => (int)$sort_order,
360 368
                 'product_tag_id' => (int)$post['product_tag_id'],
361 369
                 'area_tag_id' => (int)$post['area_tag_id'],
370
+                'ext' => $ext
362 371
             );
363 372
             $data = array_merge($post, $newData);
364 373
 
@@ -887,6 +896,17 @@ class Custom extends Base
887 896
 
888 897
             //查询排序 等级
889 898
             $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
899
+
900
+
901
+            //获取文档文件后缀
902
+            if(!empty($post['addonFieldExt']['down_eyou_remote'])){
903
+                $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
904
+                $ext = end($file);
905
+            }else{
906
+                $ext = '';
907
+            }
908
+
909
+
890 910
             // --存储数据
891 911
             $newData = array(
892 912
                 'typeid'=> $typeid,
@@ -915,6 +935,7 @@ class Custom extends Base
915 935
                 'level' => (int)$sort_order,
916 936
                 'product_tag_id' => (int)$post['product_tag_id'],
917 937
                 'area_tag_id' => (int)$post['area_tag_id'],
938
+                'ext' => $ext
918 939
             );
919 940
             $data = array_merge($post, $newData);
920 941
 

+ 29
- 0
application/common/model/Yjcp.php Wyświetl plik

@@ -0,0 +1,29 @@
1
+<?php
2
+/**
3
+ * 易优CMS
4
+ * ============================================================================
5
+ * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
6
+ * 网站地址: http://www.eyoucms.com
7
+ * ----------------------------------------------------------------------------
8
+ * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
9
+ * ============================================================================
10
+ * Author: 小虎哥 <1105415366@qq.com>
11
+ * Date: 2018-4-3
12
+ */
13
+namespace app\common\model;
14
+
15
+use think\Db;
16
+use think\Model;
17
+
18
+/**
19
+ * 数据库模型
20
+ */
21
+class Yjcp extends Model
22
+{
23
+    //初始化
24
+    protected function initialize()
25
+    {
26
+        // 需要调用`Model`的`initialize`方法
27
+        parent::initialize();
28
+    }
29
+}

+ 92
- 0
application/home/controller/Yjcp.php Wyświetl plik

@@ -0,0 +1,92 @@
1
+<?php
2
+/**
3
+ * 易优CMS
4
+ * ============================================================================
5
+ * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
6
+ * 网站地址: http://www.eyoucms.com
7
+ * ----------------------------------------------------------------------------
8
+ * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
9
+ * ============================================================================
10
+ * Author: 小虎哥 <1105415366@qq.com>
11
+ * Date: 2018-4-3
12
+ */
13
+
14
+namespace app\home\controller;
15
+
16
+class Yjcp extends Base
17
+{
18
+    // 模型标识
19
+    public $nid = 'yjcp';
20
+    // 模型ID
21
+    public $channeltype = '';
22
+    
23
+    public function _initialize() {
24
+        parent::_initialize();
25
+        $channeltype_list = config('global.channeltype_list');
26
+        $this->channeltype = $channeltype_list[$this->nid];
27
+    }
28
+
29
+    public function lists($tid)
30
+    {
31
+        $tid_tmp = $tid;
32
+        $seo_pseudo = config('ey_config.seo_pseudo');
33
+    	if (empty($tid)) {
34
+            $map = array(
35
+                'channeltype'   => $this->channeltype,
36
+                'parent_id' => 0,
37
+                'is_hidden' => 0,
38
+                'status'    => 1,
39
+            );
40
+    	} else {
41
+            if (3 == $seo_pseudo) {
42
+                $map = array('dirname'=>$tid);
43
+            } else {
44
+                if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
45
+                    to_index();
46
+                }
47
+                $map = array('id'=>$tid);
48
+            }
49
+        }
50
+        $map['lang'] = $this->home_lang; // 多语言
51
+        $row = M('arctype')->field('id,dirname')->where($map)->order('sort_order asc')->limit(1)->find();
52
+        $tid = !empty($row['id']) ? intval($row['id']) : 0;
53
+        $dirname = !empty($row['dirname']) ? $row['dirname'] : '';
54
+
55
+        /*301重定向到新的伪静态格式*/
56
+        $this->jumpRewriteFormat($tid, $dirname, 'lists');
57
+        /*--end*/
58
+
59
+        if (3 == $seo_pseudo) {
60
+            $tid = $dirname;
61
+        } else {
62
+            $tid = $tid_tmp;
63
+        }
64
+
65
+        return action('home/Lists/index', $tid);
66
+    }
67
+
68
+    public function view($aid)
69
+    {
70
+        $result = model('Yjcp')->getInfo($aid);
71
+        if (empty($result)) {
72
+            to_index();
73
+        } elseif ($result['arcrank'] == -1) {
74
+            $this->success('待审核稿件,你没有权限阅读!');
75
+            exit;
76
+        }
77
+        // 外部链接跳转
78
+        if ($result['is_jump'] == 1) {
79
+            header('Location: '.$result['jumplinks']);
80
+            exit;
81
+        }
82
+        /*--end*/
83
+
84
+        $tid = $result['typeid'];
85
+        $arctypeInfo = model('Arctype')->getInfo($tid);
86
+        /*301重定向到新的伪静态格式*/
87
+        $this->jumpRewriteFormat($aid, $arctypeInfo['dirname'], 'view');
88
+        /*--end*/
89
+
90
+        return action('home/View/index', $aid);
91
+    }
92
+}

+ 83
- 0
application/home/model/Yjcp.php Wyświetl plik

@@ -0,0 +1,83 @@
1
+<?php
2
+/**
3
+ * 易优CMS
4
+ * ============================================================================
5
+ * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
6
+ * 网站地址: http://www.eyoucms.com
7
+ * ----------------------------------------------------------------------------
8
+ * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
9
+ * ============================================================================
10
+ * Author: 小虎哥 <1105415366@qq.com>
11
+ * Date: 2018-4-3
12
+ */
13
+namespace app\home\model;
14
+
15
+use think\Model;
16
+use think\Page;
17
+use think\Db;
18
+
19
+/**
20
+ * 文章
21
+ */
22
+class Yjcp extends Model
23
+{
24
+    //初始化
25
+    protected function initialize()
26
+    {
27
+        // 需要调用`Model`的`initialize`方法
28
+        parent::initialize();
29
+    }
30
+
31
+    /**
32
+     * 获取单条记录
33
+     * @author wengxianhu by 2017-7-26
34
+     */
35
+    public function getInfo($aid, $field = '', $isshowbody = true)
36
+    {
37
+        $data = array();
38
+        if (!empty($field)) {
39
+            $field_arr = explode(',', $field);
40
+            foreach ($field_arr as $key => $val) {
41
+                $val = trim($val);
42
+                if (preg_match('/^([a-z]+)\./i', $val) == 0) {
43
+                    array_push($data, 'a.'.$val);
44
+                } else {
45
+                    array_push($data, $val);
46
+                }
47
+            }
48
+            $field = implode(',', $data);
49
+        }
50
+
51
+        $map = [];
52
+        if (!is_numeric($aid) || strval(intval($aid)) !== strval($aid)) {
53
+            $map['a.htmlfilename'] = $aid;
54
+        } else {
55
+            $map['a.aid'] = intval($aid);
56
+        }
57
+
58
+        $result = array();
59
+        if ($isshowbody) {
60
+            $field = !empty($field) ? $field : 'b.*, a.*';
61
+            $result = Db::name('archives')->field($field)
62
+                ->alias('a')
63
+                ->join('__YJCP_CONTENT__ b', 'b.aid = a.aid', 'LEFT')
64
+                ->where($map)
65
+                ->find();
66
+        } else {
67
+            $field = !empty($field) ? $field : 'a.*';
68
+            $result = Db::name('archives')->field($field)
69
+                ->alias('a')
70
+                ->where($map)
71
+                ->find();
72
+        }
73
+
74
+        // 文章TAG标签
75
+        if (!empty($result)) {
76
+            $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
77
+            $tags = model('Taglist')->getListByAid($aid, $typeid);
78
+            $result['tags'] = $tags;
79
+        }
80
+
81
+        return $result;
82
+    }
83
+}

+ 0
- 6722
data/backup/v1.6.4_www/application/common.php
Plik diff jest za duży
Wyświetl plik


BIN
public/static/common/images/ico/doc.png Wyświetl plik


BIN
public/static/common/images/ico/docx.png Wyświetl plik


BIN
public/static/common/images/ico/pdf.png Wyświetl plik


BIN
public/static/common/images/ico/ppt.png Wyświetl plik


BIN
public/static/common/images/ico/pptx.png Wyświetl plik


BIN
public/static/common/images/ico/rar.png Wyświetl plik


BIN
public/static/common/images/ico/xls.png Wyświetl plik


BIN
public/static/common/images/ico/xlsx.png Wyświetl plik


BIN
public/static/common/images/ico/zip.png Wyświetl plik


+ 2
- 489
template/mobile/index.htm Wyświetl plik

@@ -5,499 +5,12 @@
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6 6
 
7 7
 <div id="index">
8
-
9
-    <div id="mask"></div>
10
-    <p class="index-breadcrumb"></p>
11
-    <div id="banner-bear" class="preserve3d csstransforms3d">
12
-
13
-        <p class="typing web-font transition">
14
-            {eyou:global name='web_attr_17' /}
15
-        </p>
16
-        <div class="primary-menus">
17
-            <ul class="selects">
18
-                <li>常用</li>
19
-                <li class="current" data-target="search_1"><span>政策</span></li>
20
-                <li data-target="search_2"><span>材料</span></li>
21
-            </ul>
22
-            <div class="cont">
23
-                <!--typeid--> <!--modelid-->
24
-                <div class="left-cont">
25
-
26
-                    {eyou:searchform type='sonself'}
27
-                    <form class="search" id="search_1" action="{$field.action}" method="get" target="_blank" >
28
-                        <input type="text"  name="keywords" class="s" placeholder="请输入关键词">
29
-                        <button type="submit" name="" class="btn">政策搜索</button>
30
-                        {$field.hidden}
31
-                    </form>
32
-                    {/eyou:searchform}
33
-
34
-                    {eyou:searchform type='sonself'}
35
-                    <form class="search hidden" id="search_2" action="{$field.action}" method="get" target="_blank" >
36
-                        <input type="text" name="keywords" class="s" placeholder="请输入关键词">
37
-                        <button type="submit" name="" class="btn">材料搜索</button>
38
-                        {$field.hidden}
39
-                    </form>
40
-                    {/eyou:searchform}
41
-
42
-                </div>
43
-            </div>
44
-        </div>
45
-
46
-
47
-        <!--这个代码不知道干嘛的--->
48
-        <div class="submit fr">
49
-            <a href=""  class="a transition"><i class="fa fa-heart"></i>投稿</a> </div>
50
-        <div class="banner-wrap scenes-ready">
51
-            <div id="stage">
52
-                <div class="space"></div>
53
-                <div class="mountains">
54
-                    <div class="mountain mountain-1"></div>
55
-                    <div class="mountain mountain-2"></div>
56
-                    <div class="mountain mountain-3"></div>
57
-                </div>
58
-                <div class="bear"></div>
59
-            </div>
60
-        </div>
61
-    </div>
62
-
63
-    <div class="container">
64
-        <!-- 广告位AD1  -->
65
-
66
-        <!-- 收录统计  -->
67
-        <div class="row row-position">
68
-            <div class="col-md-12">
69
-
70
-                <div class="part" id="cate19" data-title="新闻资讯">
71
-                    <p class="tt sticky">
72
-                        <strong>新闻资讯</strong>
73
-                        <a title="更多新闻资讯" href="https://www.zc10000.com/zx">更多+</a>
74
-                    </p>
75
-                    <div class="items">
76
-                        <div class="row">
77
-
78
-
79
-                            <?php
80
-                            $where = " typeid=1231 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
81
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,8";
82
-                            ?>
83
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
84
-                            {eyou:arcview aid='$listSql.aid'}
85
-
86
-                            <?php
87
-                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
88
-                            ?>
89
-
90
-                            <div class="col-xs-6 col-sm-4 col-md-3">
91
-                                <div class="item art-item transition">
92
-                                    <a class="art-a" href="{$a_url}" title="{$field.title}" >
93
-                                        <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
94
-                                    </a>
95
-                                    <h3 class="art-title">
96
-                                        <a class="" href="{$a_url}" title="{$field.title}" >
97
-                                            {$field.title}
98
-                                        </a>
99
-                                    </h3>
100
-                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
101
-                                </div>
102
-                            </div>
103
-
104
-
105
-                            {/eyou:arcview}
106
-                            {/eyou:sql}
107
-
108
-
109
-                        </div>
110
-                    </div>
111
-                </div>
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-                <div class="part" id="cate2" data-title="">
121
-                    <div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">
122
-
123
-                        <div class="tt sticky" style="">
124
-                            <strong>政策文件</strong>
125
-
126
-
127
-
128
-                            {eyou:if condition='($is_mobile === false)'}
129
-
130
-                            <style>
131
-                                .layui-tab-title li {
132
-                                    min-width: 65px;
133
-                                    padding: 0 10px;
134
-                                    line-height: 30px;
135
-                                }
136
-                                .layui-tab-title .layui-this:after{
137
-                                    border-style: none;
138
-                                }
139
-                                .layui-tab-title .layui-this {
140
-                                    color: red;
141
-                                }
142
-                            </style>
143
-
144
-                            <span class="layui-tab-title" style="position:absolute;top: 13px;left: 11%;border-bottom-style:none;height: 30px;">
145
-                                    <li class="layui-this">全部</li>
146
-                                    <li>山东</li>
147
-                                    <li>广东</li>
148
-                                    <li>上海</li>
149
-                                    <li>广西</li>
150
-                            </span>
151
-
152
-                            {eyou:else /}
153
-
154
-                            <style>
155
-                                .layui-tab-title li {
156
-                                    min-width: 40px;
157
-                                    padding: 0 5px;
158
-                                    line-height: 30px;
159
-                                }
160
-                                .layui-tab-title .layui-this:after{
161
-                                    border-style: none;
162
-                                }
163
-                                .layui-tab-title .layui-this {
164
-                                    color: red;
165
-                                }
166
-                            </style>
167
-
168
-                            <span class="layui-tab-title" style="position:absolute;top: 8px;left: 29%;border-bottom-style:none;height: 30px;">
169
-                                    <li class="layui-this">全部</li>
170
-                                    <li>山东</li>
171
-                                    <li>广东</li>
172
-                                    <li>上海</li>
173
-                                    <li>广西</li>
174
-                            </span>
175
-
176
-                            {/eyou:if}
177
-
178
-                            <a title="更多政策文件" href="https://www.zc10000.com/zc">更多+</a>
179
-                        </div>
180
-
181
-
182
-                        <?php
183
-                        $area_ids = ['',5290,1,4813,5879];
184
-                        ?>
185
-
186
-                        <div class="layui-tab-content" style="height: auto;">
187
-                            <div class="layui-tab-item layui-show">
188
-
189
-                                <div class="items">
190
-                                    <div class="row">
191
-
192
-
193
-                                        <?php
194
-                                        $where = " typeid=1232 and is_del=0 and status=1"; //and is_recom=1
195
-                                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
196
-                                        ?>
197
-                                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
198
-                                        {eyou:arcview aid='$listSql.aid'}
199
-
200
-                                        <?php
201
-                                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
202
-                                        ?>
203
-
204
-                                        <div class="col-xs-6 col-sm-4 col-md-3">
205
-                                            <div class="item">
206
-                                                <a class="link" target="_self" href="javascript:;" rel="nofollow">
207
-                                                    <i class="autoleft fa fa-angle-right" title=""></i>
208
-                                                </a>
209
-                                                <a class="a" href="{$a_url}" title="{$field.title}" >
210
-                                                    <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
211
-                                                    <h3>{$field.title}</h3>
212
-                                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
213
-                                                </a>
214
-                                            </div>
215
-                                        </div>
216
-
217
-                                        {/eyou:arcview}
218
-                                        {/eyou:sql}
219
-
220
-
221
-
222
-
223
-
224
-
225
-                                    </div>
226
-                                </div>
227
-
228
-
229
-                            </div>
230
-                            <div class="layui-tab-item">
231
-
232
-                                <div class="items">
233
-                                    <div class="row">
234
-                                        <?php
235
-                                        $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[1]; //and is_recom=1
236
-                                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
237
-                                        ?>
238
-                                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
239
-                                        {eyou:arcview aid='$listSql.aid'}
240
-
241
-                                        <?php
242
-                                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
243
-                                        ?>
244
-
245
-                                        <div class="col-xs-6 col-sm-4 col-md-3">
246
-                                            <div class="item">
247
-                                                <a class="link" target="_self" href="javascript:;" rel="nofollow">
248
-                                                    <i class="autoleft fa fa-angle-right" title=""></i>
249
-                                                </a>
250
-                                                <a class="a" href="{$a_url}" title="{$field.title}" >
251
-                                                    <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
252
-                                                    <h3>{$field.title}</h3>
253
-                                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
254
-                                                </a>
255
-                                            </div>
256
-                                        </div>
257
-
258
-                                        {/eyou:arcview}
259
-                                        {/eyou:sql}
260
-
261
-                                    </div>
262
-                                </div>
263
-
264
-
265
-
266
-                            </div>
267
-                            <div class="layui-tab-item">
268
-
269
-
270
-                                <div class="items">
271
-                                    <div class="row">
272
-
273
-                                        <?php
274
-                                        $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[2]; //and is_recom=1
275
-                                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
276
-                                        ?>
277
-                                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
278
-                                        {eyou:arcview aid='$listSql.aid'}
279
-
280
-                                        <?php
281
-                                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
282
-                                        ?>
283
-
284
-                                        <div class="col-xs-6 col-sm-4 col-md-3">
285
-                                            <div class="item">
286
-                                                <a class="link" target="_self" href="javascript:;" rel="nofollow">
287
-                                                    <i class="autoleft fa fa-angle-right" title=""></i>
288
-                                                </a>
289
-                                                <a class="a" href="{$a_url}" title="{$field.title}" >
290
-                                                    <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
291
-                                                    <h3>{$field.title}</h3>
292
-                                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
293
-                                                </a>
294
-                                            </div>
295
-                                        </div>
296
-
297
-                                        {/eyou:arcview}
298
-                                        {/eyou:sql}
299
-
300
-
301
-                                    </div>
302
-                                </div>
303
-
304
-                            </div>
305
-                            <div class="layui-tab-item">
306
-
307
-
308
-
309
-                                <div class="items">
310
-                                    <div class="row">
311
-
312
-                                        <?php
313
-                                        $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[3]; //and is_recom=1
314
-                                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
315
-                                        ?>
316
-                                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
317
-                                        {eyou:arcview aid='$listSql.aid'}
318
-
319
-                                        <?php
320
-                                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
321
-                                        ?>
322
-
323
-                                        <div class="col-xs-6 col-sm-4 col-md-3">
324
-                                            <div class="item">
325
-                                                <a class="link" target="_self" href="javascript:;" rel="nofollow">
326
-                                                    <i class="autoleft fa fa-angle-right" title=""></i>
327
-                                                </a>
328
-                                                <a class="a" href="{$a_url}" title="{$field.title}" >
329
-                                                    <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
330
-                                                    <h3>{$field.title}</h3>
331
-                                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
332
-                                                </a>
333
-                                            </div>
334
-                                        </div>
335
-
336
-                                        {/eyou:arcview}
337
-                                        {/eyou:sql}
338
-
339
-
340
-                                    </div>
341
-                                </div>
342
-
343
-                            </div>
344
-                            <div class="layui-tab-item">
345
-
346
-
347
-                                <div class="items">
348
-                                    <div class="row">
349
-
350
-
351
-                                        <?php
352
-                                        $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[4]; //and is_recom=1
353
-                                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
354
-                                        ?>
355
-                                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
356
-                                        {eyou:arcview aid='$listSql.aid'}
357
-
358
-                                        <?php
359
-                                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
360
-                                        ?>
361
-
362
-                                        <div class="col-xs-6 col-sm-4 col-md-3">
363
-                                            <div class="item">
364
-                                                <a class="link" target="_self" href="javascript:;" rel="nofollow">
365
-                                                    <i class="autoleft fa fa-angle-right" title=""></i>
366
-                                                </a>
367
-                                                <a class="a" href="{$a_url}" title="{$field.title}" >
368
-                                                    <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
369
-                                                    <h3>{$field.title}</h3>
370
-                                                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
371
-                                                </a>
372
-                                            </div>
373
-                                        </div>
374
-
375
-                                        {/eyou:arcview}
376
-                                        {/eyou:sql}
377
-
378
-
379
-                                    </div>
380
-                                </div>
381
-                            </div>
382
-                        </div>
383
-
384
-
385
-
386
-                    </div>
387
-                </div>
388
-
389
-
390
-
391
-                <div class="part" id="cate2" data-title="业绩材料">
392
-
393
-                    <p class="tt sticky">
394
-                        <strong>业绩材料</strong>
395
-                        <a title="更多业绩材料" href="https://www.zc10000.com/cl">更多+</a>
396
-                    </p>
397
-
398
-                    <div class="items">
399
-                        <div class="row">
400
-
401
-                            <?php
402
-                            $where = " typeid=1233 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
403
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,18";
404
-                            ?>
405
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
406
-                            {eyou:arcview aid='$listSql.aid'}
407
-
408
-                            <?php
409
-                            $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
410
-                            ?>
411
-                            <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
412
-                                <div class="item art-item transition">
413
-                                    <a class="art-a" href="{$ar_url}" title="" >
414
-                                        <img class="img-cover" src="{$field.litpic}" alt="" title="">
415
-                                    </a>
416
-                                    <h3 class="art-title" style="">
417
-                                        {eyou:if condition='((int)$field.is_recom === 1)'}
418
-                                        <i class="more2_info_self">推荐</i>
419
-                                        {/eyou:if}
420
-
421
-                                        <a class="" href="{$ar_url}" title="{$field.title}" >
422
-                                            {$field.title|msubstr=###,0,30,true}
423
-                                        </a>
424
-                                    </h3>
425
-                                    <div class="mod_price">
426
-                                        <i>¥</i>
427
-                                        <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
428
-                                 </span>
429
-                                    </div>
430
-                                </div>
431
-                            </div>
432
-
433
-
434
-                            {/eyou:arcview}
435
-                            {/eyou:sql}
436
-
437
-
438
-                        </div>
439
-                    </div>
440
-                </div>
441
-
442
-
443
-            </div>
444
-        </div>
445
-        <div class="f-link part">
446
-            <p class="tt"><strong>友情链接</strong></p>
447
-            <ul id="flink" class="container">
448
-                {eyou:links type='text' groupid='1' loop='30' titlelen='15'}
449
-                <li><a href='{$field.url}' {$field.nofollow} {$field.target}>{$field.title}</a> </li>
450
-                {/eyou:links}
451
-            </ul>
452
-        </div>
453
-    </div>
454
-
8
+    {eyou:include file='/template/pc/components/index/content.htm' /}
455 9
 </div>
456 10
 
11
+
457 12
 {eyou:include file='/template/pc/common/include/footer.htm' /}
458 13
 {eyou:include file='/template/pc/common/include/bottom.htm' /}
459 14
 
460
-<script>
461
-    layui.use('element', function(){
462
-        var $ = layui.jquery
463
-            ,element = layui.element; //Tab的切换功能,切换事件监听等,需要依赖element模块
464
-
465
-        //触发事件
466
-        var active = {
467
-            tabAdd: function(){
468
-                //新增一个Tab项
469
-                element.tabAdd('demo', {
470
-                    title: '新选项'+ (Math.random()*1000|0) //用于演示
471
-                    ,content: '内容'+ (Math.random()*1000|0)
472
-                    ,id: new Date().getTime() //实际使用一般是规定好的id,这里以时间戳模拟下
473
-                })
474
-            }
475
-            ,tabDelete: function(othis){
476
-                //删除指定Tab项
477
-                element.tabDelete('demo', '44'); //删除:“商品管理”
478
-
479
-
480
-                othis.addClass('layui-btn-disabled');
481
-            }
482
-            ,tabChange: function(){
483
-                //切换到指定Tab项
484
-                element.tabChange('demo', '22'); //切换到:用户管理
485
-            }
486
-        };
487
-
488
-        $('.site-demo-active').on('click', function(){
489
-            var othis = $(this), type = othis.data('type');
490
-            active[type] ? active[type].call(this, othis) : '';
491
-        });
492
-
493
-        //Hash地址的定位
494
-        var layid = location.hash.replace(/^#test=/, '');
495
-        element.tabChange('test', layid);
496
-
497
-        element.on('tab(test)', function(elem){
498
-            location.hash = 'test='+ $(this).attr('lay-id');
499
-        });
500 15
 
501
-    });
502
-</script>
503 16
 

+ 1
- 35
template/mobile/lists_search.htm Wyświetl plik

@@ -21,41 +21,7 @@
21 21
             <div class="row">
22 22
 
23 23
 
24
-                {eyou:list pagesize='24' mod='6' id='field'}
25
-                <div class="col-xs-6 col-sm-4 col-md-3 search-li">
26
-                    <div class="item">
27
-
28
-                        <a class="link" target="_self" href="javascript:;" rel="nofollow">
29
-                            <i class="autoleft fa fa-angle-right" title=""></i>
30
-                        </a>
31
-
32
-                        <a class="a" href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id'])}" title="{$field.title}" >
33
-                            <img src="{$field.litpic}" alt="" title="">
34
-                            <h3>{$field.title}</h3>
35
-                            <p>
36
-                                {$field.seo_description|msubstr=###,0,35,true}
37
-                            </p>
38
-                            <p>{$field.add_time|MyDate='Y-m-d',###}</p>
39
-                        </a>
40
-                    </div>
41
-                </div>
42
-                {/eyou:list}
43
-                <!--
44
-                <i>{eyou:tag sort='now' getall='0' id='fieldtag'}{$fieldtag.tag}{/eyou:tag}</i>
45
-                -->
46
-
47
-
48
-                <ul class="links widget">
49
-
50
-                    <li><a href="" target="_blank" title="{$field.title}">
51
-
52
-                            <span></span>
53
-                            <em></em>
54
-                        </a>
55
-                    </li>
56
-                    {eyou:eq name='mod' value='0'}<li class="line"></li>{/eyou:eq}
57
-
58
-                </ul>
24
+                {eyou:include file='/template/pc/components/search/content.htm' /}
59 25
 
60 26
 
61 27
             </div>

+ 45
- 0
template/mobile/lists_yjcp_cp.htm Wyświetl plik

@@ -0,0 +1,45 @@
1
+{eyou:assign name='page' value='ciping' /}
2
+{eyou:include file='/template/pc/common/main/param.htm' /}
3
+{eyou:include file='/template/pc/common/include/top.htm' /}
4
+{eyou:include file='/template/pc/common/other/background.htm' /}
5
+{eyou:include file='/template/pc/common/include/header.htm' /}
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+<div id="ciping">
26
+
27
+
28
+
29
+    <div id="mask"></div>
30
+
31
+    {eyou:include file='/template/pc/components/nav/style_1.htm' /}
32
+
33
+
34
+    <div class="container">
35
+        <!-- 广告位AD4  -->
36
+
37
+        <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>
38
+
39
+
40
+    </div>
41
+
42
+
43
+
44
+    {eyou:include file='/template/pc/common/include/footer.htm' /}
45
+    {eyou:include file='/template/pc/common/include/bottom.htm' /}

+ 1
- 103
template/mobile/view_zczygz_cl.htm Wyświetl plik

@@ -19,109 +19,7 @@
19 19
 
20 20
 
21 21
     <div class="container">
22
-        <div class="part">
23
-            <div class="bar clearfix">
24
-                <h1 class="tt"> {$eyou.field.title} </h1>
25
-                <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
26
-                        {$eyou.field.click}
27
-                    </small> </span> </div>
28
-            </div>
29
-            <div class="items">
30
-                <div class="row post-single">
31
-                    <div class="col-xs-12 col-sm-12 col-md-8">
32
-                        <div class="pic fl">
33
-                            <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
34
-                            <img class="img-cover" src="{$eyou.field.litpic}" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
35
-                        <div class="list">
36
-                            <p>产品名称:{$eyou.field.title}</p>
37
-                            <p class="cate">所属分类:<a href="" class="mcolor">产品购买</a></p>
38
-                            <p class="site">官方网址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></p>
39
-                            <p class="cate">产品价格:
40
-                                <span class="mod_price" style="margin: 0px 0px;">
41
-                                    <i>¥</i>
42
-                                    <span class="more2_info_price_txt">{$eyou.field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
43
-                                     </span>
44
-                                </span>
45
-                            </p>
46
-                            <p class="seo">
47
-
48
-                                <!--SEO查询: <a rel="nofollow" class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
49
-                                <a rel="nofollow" class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a rel="nofollow" class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
50
-
51
-                                产品简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
52
-
53
-                            </p>
54
-
55
-                            <a class="btn transition layui-btn-s" target="_self" data-method="notice" href="javascript:;" rel="nofollow">
56
-                               购买产品
57
-                                <i class="fa fa-chevron-circle-right"></i>
58
-                            </a>
59
-
60
-
61
-
62
-                        </div>
63
-                    </div>
64
-                </div>
65
-            </div>
66
-        </div>
67
-        <div class="part">
68
-            <p class="tt"><span>文档介绍</span></p>
69
-            <div class="items">
70
-                <div class="art-main">
71
-                    {$eyou.field.content_5}
72
-                </div>
73
-            </div>
74
-        </div>
75
-
76
-
77
-
78
-        <!-- 广告位AD3  -->
79
-        <div class="part related">
80
-            <p class="tt"><span>相关推荐</span></p>
81
-            <div class="items">
82
-                <div class="row">
83
-
84
-
85
-                    <?php
86
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
87
-                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,6";
88
-                    ?>
89
-                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
90
-                    {eyou:arcview aid='$listSql.aid'}
91
-
92
-                    <?php
93
-                    $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
94
-                    ?>
95
-                    <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
96
-                        <div class="item art-item transition">
97
-                            <a class="art-a" href="{$ar_url}" title="" >
98
-                                <img class="img-cover" src="{$field.litpic}" alt="" title="">
99
-                            </a>
100
-                            <h3 class="art-title" style="">
101
-                                {eyou:if condition='((int)$field.is_recom === 1)'}
102
-                                <i class="more2_info_self">推荐</i>
103
-                                {/eyou:if}
104
-
105
-                                <a class="" href="{$ar_url}" title="{$field.title}" >
106
-                                    {$field.title|msubstr=###,0,30,true}
107
-                                </a>
108
-                            </h3>
109
-                            <div class="mod_price">
110
-                                <i>¥</i>
111
-                                <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
112
-                                 </span>
113
-                            </div>
114
-                        </div>
115
-                    </div>
116
-
117
-
118
-                    {/eyou:arcview}
119
-                    {/eyou:sql}
120
-
121
-
122
-                </div>
123
-            </div>
124
-        </div>
22
+        {eyou:include file='/template/pc/components/detail/cl.htm' /}
125 23
     </div>
126 24
 
127 25
 </div>

+ 1
- 65
template/mobile/view_zczygz_new.htm Wyświetl plik

@@ -18,71 +18,7 @@
18 18
     ?>
19 19
 
20 20
     <div class="container">
21
-        <div class="part">
22
-            <div class="bar clearfix">
23
-                <h1 class="tt">{$eyou.field.title}</h1>
24
-                <div class="r-intro fr">
25
-                <span class="data fr">
26
-                    <small class="info"><i class="fa fa-clock-o"></i>
27
-                    {$eyou.field.update_time|MyDate="Y-m-d",###}
28
-                    </small>
29
-                    <small class="info"><i class="fa fa-eye"></i>
30
-                        {$eyou.field.click}
31
-                    </small>
32
-                </span>
33
-                </div>
34
-            </div>
35
-            <div class="items">
36
-                <div class="art-main">
37
-                    <div>
38
-
39
-                        {$eyou.field.content_5}
40
-
41
-                    </div>
42
-
43
-                    <div class="art-copyright br mb">
44
-                        <div>本文地址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></div>
45
-                        <div><span class="copyright">版权声明:</span>{eyou:global name='web_attr_16' /}</div>
46
-                    </div>
47
-                    <p class="art-tag">相关标签: <span class="padding">  </span> </p>
48
-                </div>
49
-            </div>
50
-        </div>
51
-        <!-- 广告位AD3  -->
52
-        <div class="part related">
53
-            <p class="tt"><span>相关推荐</span></p>
54
-            <div class="items">
55
-                <div class="row">
56
-
57
-
58
-                    <?php
59
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
60
-                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
61
-                    ?>
62
-                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
63
-                    {eyou:arcview aid='$listSql.aid'}
64
-
65
-                    <?php
66
-                    $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
67
-                    ?>
68
-                    <div class="col-xs-6 col-sm-4 col-md-3">
69
-                        <div class="item art-item transition">
70
-                            <a class="art-a" href="{$a_url}" title="{$field.title}" >
71
-                                <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
72
-                            </a>
73
-                            <h3><a class="" href="{$a_url}" title="{$field.title}" >{$field.title|msubstr=###,0,15,true}</a></h3>
74
-                            <p>{$field.seo_description|msubstr=###,0,35,true}</p>
75
-                        </div>
76
-                    </div>
77
-
78
-
79
-                    {/eyou:arcview}
80
-                    {/eyou:sql}
81
-
82
-
83
-                </div>
84
-            </div>
85
-        </div>
21
+        {eyou:include file='/template/pc/components/detail/new.htm' /}
86 22
     </div>
87 23
 
88 24
 </div>

+ 8
- 113
template/mobile/view_zczygz_zc.htm Wyświetl plik

@@ -4,132 +4,27 @@
4 4
 {eyou:include file='/template/pc/common/other/background.htm' /}
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6 6
 
7
+<div id="zc_detail">
8
+    <div id="mask"></div>
7 9
 
8
-<div id="mask"></div>
10
+    {eyou:include file='/template/pc/components/nav/style_1.htm' /}
9 11
 
10
-{eyou:include file='/template/pc/components/nav/style_1.htm' /}
11
-
12
-<?php
12
+    <?php
13 13
 
14 14
 /*    echo "<pre>";
15 15
     var_dump($eyou['field']);
16 16
     echo "</pre>";*/
17 17
 
18
-?>
19
-
20
-<div class="container">
21
-    <div class="part">
22
-        <div class="bar clearfix">
23
-            <h1 class="tt"> {$eyou.field.title} </h1>
24
-            <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
25
-                        {$eyou.field.click}
26
-                    </small> </span> </div>
27
-        </div>
28
-        <div class="items">
29
-            <div class="row post-single">
30
-                <div class="col-xs-12 col-sm-12 col-md-8">
31
-                    <div class="pic fl">
32
-                        <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
33
-                        <img class="img-cover" src="{$eyou.field.litpic}" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
34
-                    <div class="list">
35
-                        <p>文档名称:{$eyou.field.title}</p>
36
-                        <p class="cate">所属分类:<a href="" class="mcolor">资源下载</a></p>
37
-                        <p class="site">官方网址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></p>
38
-                        <p class="seo">
39
-
40
-                            <!--SEO查询: <a rel="nofollow" class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
41
-                            <a rel="nofollow" class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a rel="nofollow" class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
42
-
43
-                            文档简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
44
-
45
-                        </p>
46
-
47
-                        <?php
48
-                        if(!empty($eyou['field']['down'])){
49
-                            ?>
50
-
51
-                            <a class="btn transition" target="_self" href="javascript:;" rel="nofollow" id="down_btn" title="{$eyou.field.title}" aid="{$eyou.field.aid}">
52
-                                下载文档
53
-                                <i class="fa fa-chevron-circle-right"></i>
54
-                            </a>
55
-
56
-                            <?php
57
-                        }else{
58
-                            ?>
18
+    ?>
59 19
 
60
-                            <a class="btn transition" target="_self" href="javascript:;" rel="nofollow">
61
-                                暂无文档
62
-                                <i class="fa fa-chevron-circle-right"></i>
63
-                            </a>
20
+    <div class="container">
64 21
 
22
+        {eyou:include file='/template/pc/components/detail/content.htm' /}
65 23
 
66
-                            <?php
67
-                        }
68
-                        ?>
69
-
70
-
71
-
72
-                    </div>
73
-                </div>
74
-            </div>
75
-        </div>
76
-    </div>
77
-    <div class="part">
78
-        <p class="tt"><span>文档介绍</span></p>
79
-        <div class="items">
80
-            <div class="art-main">
81
-                {$eyou.field.content_5}
82
-            </div>
83
-        </div>
84 24
     </div>
85
-
86
-    <!-- 广告位AD3  -->
87
-    <div class="part related">
88
-        <p class="tt"><span>相似站点</span></p>
89
-        <div class="items">
90
-            <div class="row">
91
-
92
-
93
-
94
-
95
-                <?php
96
-
97
-
98
-                if($areaname === 0){
99
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 and area_tag_id=".$area_id;
100
-                }else{
101
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 and area_tag_id=0";
102
-                }
103
-
104
-                //echo $where;
105
-
106
-                $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
107
-                ?>
108
-                {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
109
-                {eyou:arcview aid='$listSql.aid'}
110
-
111
-                <?php
112
-                $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
113
-                ?>
114
-
115
-                <div class="col-xs-6 col-sm-4 col-md-3">
116
-                    <div class="item"> <a class="link" target="_self" href="javascript:;" rel="nofollow"><i class="autoleft fa fa-angle-right" title=""></i></a> <a class="a" href="{$a_url}" title="{$field.title}" > <img class="img-cover br" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
117
-                            <h3>{$field.title|msubstr=###,0,15,true}</h3>
118
-                            <p> {$field.seo_description|msubstr=###,0,35,true}</p>
119
-                        </a> </div>
120
-                </div>
121
-
122
-                {/eyou:arcview}
123
-                {/eyou:sql}
124
-
125
-
126
-            </div>
127
-        </div>
128
-    </div>
129
-
130 25
 </div>
131 26
 
132 27
 
133
-
134 28
 {eyou:include file='/template/pc/common/include/footer.htm' /}
29
+{eyou:include file='/template/pc/common/other/down.htm' /}
135 30
 {eyou:include file='/template/pc/common/include/bottom.htm' /}

+ 1
- 1
template/pc/common/include/bottom.htm Wyświetl plik

@@ -2,7 +2,7 @@
2 2
     <!--百度统计代码添加-->
3 3
 
4 4
     <!--提交和回顶-->
5
-    <a id="quick_submit" class="fa fa-pencil" rel="nofollow" href="tougao/index.html"></a>
5
+    <a id="quick_submit" class="fa fa-pencil"  href=""></a>
6 6
     <div id="backtop" class="fa fa-angle-up"></div>
7 7
 
8 8
     <script src="/template/pc/js/jquery.cookie.min.js" type="text/javascript"></script>

+ 5
- 5
template/pc/common/include/footer.htm Wyświetl plik

@@ -9,12 +9,12 @@
9 9
                         {eyou:global name='web_attr_24' /}|
10 10
                         {eyou:global name='web_attr_25' /}<br>
11 11
                         {eyou:global name='web_attr_21' /}
12
-                        <a target="_self" rel="nofollow" href="https://beian.miit.gov.cn/">{eyou:global name='web_attr_22' /}</a>
12
+                        <a target="_self"  href="https://beian.miit.gov.cn/">{eyou:global name='web_attr_22' /}</a>
13 13
 
14
-                        <a href="javascript:;" target="_self">XML地图</a>
14
+                        <a href="javascript:;" target="_self">sitemap</a>
15 15
                     </p>
16
-                    <img id="light-flogo" class="flogo" src="{eyou:global name='web_attr_31' /}" alt="" title="">
17
-                    <img id="dark-flogo" class="flogo" src="{eyou:global name='web_attr_32' /}" alt="" title="">
16
+                    <img id="light-flogo" class="flogo" src="{eyou:global name='web_attr_31' /}" alt="职称E家LOGO" title="职称E家LOGO">
17
+                    <img id="dark-flogo" class="flogo" src="{eyou:global name='web_attr_32' /}" alt="职称E家LOGO" title="职称E家LOGO">
18 18
              </div>
19 19
 
20 20
         {eyou:else /}
@@ -27,7 +27,7 @@
27 27
                     {eyou:global name='web_attr_21' /}
28 28
                     <a target="_self" rel="nofollow" href="https://beian.miit.gov.cn/">{eyou:global name='web_attr_22' /}</a>
29 29
 
30
-                    <a href="javascript:;" target="_self">XML地图</a>
30
+                    <a href="javascript:;" target="_self">sitemap</a>
31 31
                 </p>
32 32
             </div>
33 33
         {/eyou:if}

+ 5
- 5
template/pc/common/include/header.htm Wyświetl plik

@@ -2,9 +2,9 @@
2 2
 <header class="header">
3 3
     <div class="h-fix">
4 4
         <div class="container">
5
-            <h1 class="logo"> <a href="" title="">
6
-                    <img id="light-logo" src="{eyou:global name='web_attr_31' /}" alt="" title="">
7
-                    <img id="dark-logo" src="{eyou:global name='web_attr_32' /}" alt="" title="">
5
+            <h1 class="logo"> <a href="https://www.zc10000.com" title="">
6
+                    <img id="light-logo" src="{eyou:global name='web_attr_31' /}" alt="职称E家LOGO" title="职称E家LOGO">
7
+                    <img id="dark-logo" src="{eyou:global name='web_attr_32' /}" alt="职称E家LOGO" title="职称E家LOGO">
8 8
                 </a> </h1>
9 9
             <div id="m-btn" class="m-btn"><i class="fa fa-bars"></i></div>
10 10
             <div class="search"> <i class="s-btn off fa fa-search"></i>
@@ -103,12 +103,12 @@
103 103
                 {eyou:user type='userinfo'}
104 104
                 <div id="{$field.htmlid}" style="float: left;">
105 105
                     <div class="submit fr">
106
-                        <a target="_blank" href="https://www.zc10000.com{$field.loginurl}"   class="a transition" rel="nofllow">
106
+                        <a target="_blank" href="https://www.zc10000.com{$field.loginurl}"   class="a transition" rel="nofollow">
107 107
                             <i class="fa fa-heart"></i>登录
108 108
                         </a>
109 109
                     </div>
110 110
                     <div class="submit fr">
111
-                        <a target="_blank" href="https://www.zc10000.com{$field.regurl}"  class="a transition" rel="nofllow">
111
+                        <a target="_blank" href="https://www.zc10000.com{$field.regurl}"  class="a transition" rel="nofollow">
112 112
                             <i class="fa fa-heart"></i>注册
113 113
                         </a>
114 114
                     </div>

+ 12
- 0
template/pc/common/include/tdk/cailiao.htm Wyświetl plik

@@ -0,0 +1,12 @@
1
+
2
+<?php
3
+
4
+$seo_title = '职称材料汇总 | 申报材料范本下载【职称E家】';
5
+$seo_keywords = '申报材料,职称材料';
6
+$seo_description = '各地区各专业相关的职称材料解读,申报材料范本下载,【职称E家】工程师职称申报的专业资讯和辅导网站。';
7
+
8
+?>
9
+
10
+<title>{$seo_title}</title>
11
+<meta name="keywords" content="{$seo_keywords}">
12
+<meta name="description" content="{$seo_description}">

+ 19
- 0
template/pc/common/include/tdk/cl_detail.htm Wyświetl plik

@@ -0,0 +1,19 @@
1
+
2
+
3
+
4
+
5
+<?php
6
+
7
+$title = $eyou['field']['title'];
8
+
9
+$seo_title = $title.'工程师职称申报材料范本下载【职称E家】';
10
+$seo_keywords = $title.'职称,'.$title.'工程师';
11
+$seo_description = $title.'工程师职称申报材料范本下载上【职称E家】,工程师职称申报的专业辅导网站,汇集各地区各专业相关的职称政策文件,申报材料范本下载。';
12
+
13
+?>
14
+
15
+<title>{$seo_title}</title>
16
+<meta name="keywords" content="{$seo_keywords}">
17
+<meta name="description" content="{$seo_description}">
18
+
19
+

+ 12
- 0
template/pc/common/include/tdk/new.htm Wyświetl plik

@@ -0,0 +1,12 @@
1
+
2
+<?php
3
+
4
+$seo_title = '工程师评审资讯_职称申报政策解读【职称E家】';
5
+$seo_keywords = '工程师评审资讯,职称申报政策';
6
+$seo_description = '【职称E家】是工程师职称申报的专业资讯和辅导网站,为工程师评审提供相关的政策文件下载及解读、申报材料范本、在线评测一键匹配等服务,辅导工程师更好的提升职业等级。';
7
+
8
+?>
9
+
10
+<title>{$seo_title}</title>
11
+<meta name="keywords" content="{$seo_keywords}">
12
+<meta name="description" content="{$seo_description}">

+ 12
- 0
template/pc/common/include/tdk/new_detail.htm Wyświetl plik

@@ -0,0 +1,12 @@
1
+
2
+<?php
3
+
4
+$seo_title = $eyou['field']['seo_title'];
5
+$seo_keywords = $eyou['field']['seo_keywords'];
6
+$seo_description = $eyou['field']['seo_description'];
7
+
8
+?>
9
+
10
+<title>{$seo_title}</title>
11
+<meta name="keywords" content="{$seo_keywords}">
12
+<meta name="description" content="{$seo_description}">

+ 18
- 0
template/pc/common/include/tdk/zc_detail.htm Wyświetl plik

@@ -0,0 +1,18 @@
1
+
2
+
3
+
4
+
5
+<?php
6
+$title = $eyou['field']['title'];
7
+$title_ar = explode('通知',$title);
8
+$seo_title = $title;
9
+$seo_keywords = $title_ar[0];
10
+$seo_description = $title_ar[0].'文件下载上【职称E家】,工程师职称申报的专业辅导网站,汇集各地区各专业相关的职称政策文件,申报材料范本下载。';
11
+
12
+?>
13
+
14
+<title>{$seo_title}</title>
15
+<meta name="keywords" content="{$seo_keywords}">
16
+<meta name="description" content="{$seo_description}">
17
+
18
+

+ 19
- 0
template/pc/common/include/tdk/zhengce.htm Wyświetl plik

@@ -0,0 +1,19 @@
1
+
2
+<?php
3
+
4
+if((int)$area_id > 0){
5
+    $seo_title = $area_name.'工程师申报解读_广东职称政策下载【职称E家】';
6
+    $seo_keywords = $area_name.'职称,广东工程师';
7
+    $seo_description = $area_name.'地区职称政策文件下载【与官网同步更新】,各地区各专业相关的职称材料解读,申报材料范本下载,【职称E家】工程师职称申报的专业辅导网站。';
8
+}else{
9
+    $seo_title = '工程师申报资讯_各地职称政策下载【职称E家】';
10
+    $seo_keywords = '职称政策,工程师申报政策';
11
+    $seo_description = '汇集各地职称政策文件【与官网同步更新】,职称E家是工程师进行职称申报的专业资讯网站,为工程师申报提供相关的政策文件下载、申报材料范本、在线评测一键匹配等服务。';
12
+}
13
+
14
+
15
+?>
16
+
17
+<title>{$seo_title}</title>
18
+<meta name="keywords" content="{$seo_keywords}">
19
+<meta name="description" content="{$seo_description}">

+ 23
- 27
template/pc/common/include/top.htm Wyświetl plik

@@ -1,52 +1,48 @@
1 1
 <!DOCTYPE html>
2 2
 <html lang="zh-CN">
3 3
 <head>
4
-    <meta charset="UTF-8">
5
-    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
6
-    <meta name="renderer" content="webkit">
7
-    <meta name="force-rendering" content="webkit">
8
-    <meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
9
-    <meta name="applicable-device" content="pc,mobile">
10
-    <meta name="author" content="order by ">
11 4
 
12 5
 
13 6
     {eyou:if condition='($page === "index")'}
14 7
     {eyou:include file='/template/pc/common/include/tdk/index.htm' /}
15
-    {eyou:elseif condition='($page === "provincial")' /}
16
-    {eyou:include file='/template/pc/common/include/tdk/provincial.htm' /}
17
-    {eyou:elseif condition='($page === "city")' /}
18
-    {eyou:include file='/template/pc/common/include/tdk/city.htm' /}
19
-    {eyou:elseif condition='($page === "zccat")' /}
20
-    {eyou:include file='/template/pc/common/include/tdk/zccat.htm' /}
21
-    {eyou:elseif condition='($page === "zccat-detail-list")' /}
22
-    {eyou:include file='/template/pc/common/include/tdk/zccat-detail.htm' /}
23
-    {eyou:elseif condition='($page === "article_list")' /}
24
-    {eyou:include file='/template/pc/common/include/tdk/article_list.htm' /}
25
-    {eyou:elseif condition='($page === "article-detail")' /}
26
-    {eyou:include file='/template/pc/common/include/tdk/article-detail.htm' /}
27
-    {eyou:elseif condition='($page === "document")' /}
28
-    {eyou:include file='/template/pc/common/include/tdk/document.htm' /}
29
-    {eyou:elseif condition='($page === "down")' /}
30
-    {eyou:include file='/template/pc/common/include/tdk/down.htm' /}
31
-    {eyou:elseif condition='($page === "lunwen-list")' /}
32
-    {eyou:include file='/template/pc/common/include/tdk/lunwen-list.htm' /}
8
+    {eyou:elseif condition='($page === "new")' /}
9
+    {eyou:include file='/template/pc/common/include/tdk/new.htm' /}
10
+    {eyou:elseif condition='($page === "zhengce")' /}
11
+    {eyou:include file='/template/pc/common/include/tdk/zhengce.htm' /}
12
+    {eyou:elseif condition='($page === "cailiao")' /}
13
+    {eyou:include file='/template/pc/common/include/tdk/cailiao.htm' /}
14
+    {eyou:elseif condition='($page === "new_detail")' /}
15
+    {eyou:include file='/template/pc/common/include/tdk/new_detail.htm' /}
16
+    {eyou:elseif condition='($page === "zc_detail")' /}
17
+    {eyou:include file='/template/pc/common/include/tdk/zc_detail.htm' /}
18
+    {eyou:elseif condition='($page === "cl_detail")' /}
19
+    {eyou:include file='/template/pc/common/include/tdk/cl_detail.htm' /}
20
+    {eyou:elseif condition='($page === "ciping")' /}
21
+    {eyou:include file='/template/pc/common/include/tdk/ciping.htm' /}
33 22
     {eyou:elseif condition='($page === "search")' /}
34 23
     {eyou:include file='/template/pc/common/include/tdk/search.htm' /}
35 24
     {eyou:elseif condition='($page === "special")' /}
36 25
     {eyou:include file='/template/pc/common/include/tdk/special.htm' /}
37 26
     {eyou:else /}
27
+
38 28
     {eyou:include file='/template/pc/common/include/tdk/index.htm' /}
39 29
     {/eyou:if}
40 30
 
41 31
 
42
-
32
+    <meta charset="UTF-8">
33
+    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
34
+    <meta name="renderer" content="webkit">
35
+    <meta name="force-rendering" content="webkit">
36
+    <meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
37
+    <meta name="applicable-device" content="pc,mobile">
38
+    <meta name="author" content="order by ">
43 39
 
44 40
 
45 41
     <!--公共样式-->
46 42
     <link rel="stylesheet" href="/template/pc/plug/layui/css/layui.css" media="all">
47 43
     <link rel="stylesheet" href="/template/pc/css/common.css" media="all">
48 44
     <!--后续修改样式 在extend.css 补充叠加 不修改原来的样式文件-->
49
-    <link rel="stylesheet" href="/template/pc/css/extend.css" media="all">
45
+    <link rel="stylesheet" href="/template/pc/css/extend.css?v=<?php echo rand(1,100000); ?>" media="all">
50 46
     <script src="/template/pc/plug/layui/layui.js"></script>
51 47
     <script>
52 48
         layui.config({

+ 1
- 0
template/pc/common/main/param/zhengce.htm Wyświetl plik

@@ -17,5 +17,6 @@
17 17
 {eyou:sql sql='$sql' cachetime='3600' id='area'}
18 18
 {eyou:php}
19 19
 $area_id = ''.$area['id'].'';
20
+$area_name = ''.$area['name'].'';
20 21
 {/eyou:php}
21 22
 {/eyou:sql}

+ 19
- 0
template/pc/common/other/down.htm Wyświetl plik

@@ -0,0 +1,19 @@
1
+<script src="/template/pc/js/down/StreamSaver.js"></script>
2
+<link rel="stylesheet" href="/template/pc/js/overtrue-share/dist/css/share.min.css">
3
+<!--<script src="https://oss.zc10000.com/static/js/jquery-v3.1.1.min.js?t=544151"></script>
4
+<script src="/template/pc/js/overtrue-share/dist/js/jquery.share.min.js"></script>-->
5
+<script src="/template/pc/js/overtrue-share/dist/js/social-share.min.js"></script>
6
+<script>
7
+    var $config = {
8
+        url                 : '', // 网址,默认使用 window.location.href
9
+        source              : '', // 来源(QQ空间会用到), 默认读取head标签:<meta name="site" content="http://overtrue" />
10
+        title               : '', // 标题,默认读取 document.title 或者 <meta name="title" content="share.js" />
11
+        description         : '', // 描述, 默认读取head标签:<meta name="description" content="PHP弱类型的实现原理分析" />
12
+        image               : '', // 图片, 默认取网页中第一个img标签
13
+        sites               : ['qzone', 'qq', 'weibo','wechat', 'douban'], // 启用的站点
14
+        disabled            : ['google', 'facebook', 'twitter'], // 禁用的站点
15
+        wechatQrcodeTitle   : "微信扫一扫:分享", // 微信二维码提示文字
16
+        wechatQrcodeHelper  : '<p>微信里点“发现”,扫一下</p><p>二维码便可将本文分享至朋友圈。</p>',
17
+    };
18
+    socialShare('.social-share', $config);
19
+</script>

+ 2
- 2
template/pc/components/condition/style1.htm Wyświetl plik

@@ -12,7 +12,7 @@
12 12
         }
13 13
         {/eyou:php}
14 14
         <li class="" style="float: left; padding: 2px 10px;list-style: none;">
15
-            <a href='/zc' class="{$class}">全部</a>
15
+            <a href='/zc' class="{$class}">综合</a>
16 16
         </li>
17 17
         {eyou:php}
18 18
         $area_name = '';
@@ -37,7 +37,7 @@
37 37
 
38 38
 
39 39
 
40
-<div style="position:absolute;right: 10px;top: -36px;">
40
+<div style="position:absolute;right: 10px;top: -40px;">
41 41
 
42 42
 
43 43
 

+ 105
- 0
template/pc/components/detail/cl.htm Wyświetl plik

@@ -0,0 +1,105 @@
1
+<div class="part">
2
+    <div class="bar clearfix">
3
+        <h1 class="tt">
4
+            <a href="{$web_domain}{$web_url}">{$eyou.field.title}</a>
5
+        </h1>
6
+        <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
7
+                        {$eyou.field.click}
8
+                    </small> </span> </div>
9
+    </div>
10
+    <div class="items">
11
+        <div class="row post-single">
12
+            <div class="col-xs-12 col-sm-12 col-md-8">
13
+                <div class="pic fl">
14
+                    <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
15
+                    <img class="img-cover" src="{$eyou.field.litpic}" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
16
+                <div class="list">
17
+                    <p>文档名称:<a href="{$web_domain}{$web_url}">{$eyou.field.title}</a></p>
18
+                    <p class="cate">所属分类:<a href="" class="mcolor">产品购买</a></p>
19
+                    <p class="site">官方网址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></p>
20
+                    <p class="cate">产品价格:
21
+                        <span class="mod_price" style="margin: 0px 0px;">
22
+                                    <i>¥</i>
23
+                                    <span class="more2_info_price_txt">{$eyou.field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
24
+                                     </span>
25
+                                </span>
26
+                    </p>
27
+                    <p class="seo">
28
+
29
+                        <!--SEO查询: <a  class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
30
+                        <a  class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a  class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
31
+
32
+                        产品简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
33
+
34
+                    </p>
35
+
36
+                    <a class="btn transition layui-btn-s" target="_self" data-method="notice" href="javascript:;" >
37
+                        购买产品
38
+                        <i class="fa fa-chevron-circle-right"></i>
39
+                    </a>
40
+
41
+
42
+
43
+                </div>
44
+            </div>
45
+        </div>
46
+    </div>
47
+</div>
48
+<div class="part">
49
+    <p class="tt"><span>文档介绍</span></p>
50
+    <div class="items">
51
+        <div class="art-main">
52
+            {$eyou.field.content_5}
53
+        </div>
54
+    </div>
55
+</div>
56
+
57
+
58
+
59
+<!-- 广告位AD3  -->
60
+<div class="part related">
61
+    <p class="tt"><span>相关推荐</span></p>
62
+    <div class="items">
63
+        <div class="row">
64
+
65
+
66
+            <?php
67
+                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
68
+                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,6";
69
+                    ?>
70
+            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
71
+            {eyou:arcview aid='$listSql.aid'}
72
+
73
+            <?php
74
+                    $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
75
+                    ?>
76
+            <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
77
+                <div class="item art-item transition">
78
+                    <a class="art-a" href="{$ar_url}" title="" >
79
+                        <img class="img-cover" src="{$field.litpic}" alt="" title="">
80
+                    </a>
81
+                    <h3 class="art-title" style="">
82
+                        {eyou:if condition='((int)$field.is_recom === 1)'}
83
+                        <i class="more2_info_self">推荐</i>
84
+                        {/eyou:if}
85
+
86
+                        <a class="" href="{$ar_url}" title="{$field.title}" >
87
+                            {$field.title|msubstr=###,0,30,true}
88
+                        </a>
89
+                    </h3>
90
+                    <div class="mod_price">
91
+                        <i>¥</i>
92
+                        <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
93
+                                 </span>
94
+                    </div>
95
+                </div>
96
+            </div>
97
+
98
+
99
+            {/eyou:arcview}
100
+            {/eyou:sql}
101
+
102
+
103
+        </div>
104
+    </div>
105
+</div>

+ 124
- 0
template/pc/components/detail/content.htm Wyświetl plik

@@ -0,0 +1,124 @@
1
+<div class="part">
2
+    <div class="bar clearfix">
3
+        <h1 class="tt"> <a href="{$web_domain}{$web_url}">{$eyou.field.title}</a> </h1>
4
+        <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
5
+                        {$eyou.field.click}
6
+                    </small> </span> </div>
7
+    </div>
8
+    <div class="items">
9
+        <div class="row post-single">
10
+            <div class="col-xs-12 col-sm-12 col-md-8">
11
+                <div class="pic fl">
12
+                    <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
13
+                    <img class="img-cover" src="https://www.zc10000.com/public/static/common/images/ico/{$eyou.field.ext}.png" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
14
+                <div class="list">
15
+
16
+
17
+
18
+
19
+
20
+                    <p>文档名称:<a href="{$web_domain}{$web_url}">{$eyou.field.title}</a></p>
21
+                    <p class="cate">所属分类: 调用标签</p>
22
+                    <p class="site">
23
+                        {eyou:if condition='($is_mobile === false)'}
24
+
25
+                        文件大小: 计算中 &nbsp;&nbsp;&nbsp;&nbsp;
26
+                        上传时间: {$eyou.field.update_time|MyDate="Y-m-d",###}&nbsp;&nbsp;&nbsp;&nbsp;
27
+                        下载次数: {$eyou.field.downcount}
28
+
29
+
30
+                        {eyou:else /}
31
+
32
+                        上传时间: {$eyou.field.update_time|MyDate="Y-m-d",###}&nbsp;&nbsp;&nbsp;&nbsp;<br/>
33
+                        文件大小: 计算中 &nbsp;&nbsp;&nbsp;&nbsp;
34
+                        下载次数: {$eyou.field.downcount}
35
+                        {/eyou:if}
36
+
37
+
38
+                    </p>
39
+                    <p class="seo">
40
+
41
+                        <!--SEO查询: <a  class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
42
+                        <a  class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a  class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
43
+
44
+                        文档简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
45
+
46
+                    </p>
47
+
48
+                    <?php
49
+                        if(!empty($eyou['field']['down'])){
50
+                            ?>
51
+
52
+                    <a class="btn transition" target="_self" href="javascript:;"  id="down_btn" title="{$eyou.field.title}" aid="{$eyou.field.aid}">
53
+                        下载文档
54
+                        <i class="fa fa-chevron-circle-right"></i>
55
+                    </a>
56
+
57
+                    <?php
58
+                        }else{
59
+                        ?>
60
+
61
+                    <a class="btn transition" target="_self" href="javascript:;" >
62
+                        暂无文档
63
+                        <i class="fa fa-chevron-circle-right"></i>
64
+                    </a>
65
+
66
+
67
+                    <?php
68
+                        }
69
+                        ?>
70
+
71
+
72
+
73
+                </div>
74
+            </div>
75
+        </div>
76
+    </div>
77
+</div>
78
+<div class="part">
79
+    <p class="tt"><span>文档介绍</span></p>
80
+    <div class="items">
81
+        <div class="art-main">
82
+            {$eyou.field.content_5}
83
+        </div>
84
+    </div>
85
+</div>
86
+
87
+<!-- 广告位AD3  -->
88
+<div class="part related">
89
+    <p class="tt"><span>相似站点</span></p>
90
+    <div class="items">
91
+        <div class="row">
92
+
93
+
94
+
95
+
96
+            <?php
97
+
98
+
99
+                if($areaname === 0){
100
+                    $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 and area_tag_id=".$area_id; //and is_recom=1
101
+                }else{
102
+                    $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 and area_tag_id=0"; //and is_recom=1
103
+                }
104
+
105
+                //echo $where;
106
+
107
+                $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
108
+                ?>
109
+            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
110
+            {eyou:arcview aid='$listSql.aid'}
111
+
112
+            <?php
113
+                $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
114
+                ?>
115
+
116
+                {eyou:include file='/template/pc/components/goods/zc.htm' /}
117
+
118
+            {/eyou:arcview}
119
+            {/eyou:sql}
120
+
121
+
122
+        </div>
123
+    </div>
124
+</div>

+ 67
- 0
template/pc/components/detail/new.htm Wyświetl plik

@@ -0,0 +1,67 @@
1
+<div class="part">
2
+    <div class="bar clearfix">
3
+        <h1 class="tt">
4
+            <a href="{$web_domain}{$web_url}">{$eyou.field.title}</a>
5
+        </h1>
6
+        <div class="r-intro fr">
7
+                <span class="data fr">
8
+                    <small class="info"><i class="fa fa-clock-o"></i>
9
+                    {$eyou.field.update_time|MyDate="Y-m-d",###}
10
+                    </small>
11
+                    <small class="info"><i class="fa fa-eye"></i>
12
+                        {$eyou.field.click}
13
+                    </small>
14
+                </span>
15
+        </div>
16
+    </div>
17
+    <div class="items">
18
+        <div class="art-main">
19
+            <div>
20
+
21
+                {$eyou.field.content_5}
22
+
23
+            </div>
24
+
25
+            <div class="art-copyright br mb">
26
+                <div>本文地址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></div>
27
+                <div><span class="copyright">版权声明:</span>{eyou:global name='web_attr_16' /}</div>
28
+            </div>
29
+            <p class="art-tag">相关标签: <span class="padding">  </span> </p>
30
+        </div>
31
+    </div>
32
+</div>
33
+<!-- 广告位AD3  -->
34
+<div class="part related">
35
+    <p class="tt"><span>相关推荐</span></p>
36
+    <div class="items">
37
+        <div class="row">
38
+
39
+
40
+            <?php
41
+                $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
42
+                $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
43
+                ?>
44
+            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
45
+            {eyou:arcview aid='$listSql.aid'}
46
+
47
+            <?php
48
+                    $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
49
+                ?>
50
+            <div class="col-xs-6 col-sm-4 col-md-3">
51
+                <div class="item art-item transition">
52
+                    <a class="art-a" href="{$a_url}" title="{$field.title}" >
53
+                        <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
54
+                    </a>
55
+                    <h3><a class="" href="{$a_url}" title="{$field.title}" >{$field.title|msubstr=###,0,15,true}</a></h3>
56
+                    <p>{$field.seo_description|msubstr=###,0,35,true}</p>
57
+                </div>
58
+            </div>
59
+
60
+
61
+            {/eyou:arcview}
62
+            {/eyou:sql}
63
+
64
+
65
+        </div>
66
+    </div>
67
+</div>

+ 14
- 0
template/pc/components/goods/zc.htm Wyświetl plik

@@ -0,0 +1,14 @@
1
+
2
+
3
+<div class="col-xs-12 col-sm-4 col-md-4">
4
+    <div class="item">
5
+        <a class="link" target="_self" href="javascript:;" >
6
+            <i class="autoleft fa fa-angle-right" title=""></i>
7
+        </a>
8
+        <a class="a" href="{$a_url}" title="{$field.title}" >
9
+            <img src="https://www.zc10000.com/public/static/common/images/ico/{$field.ext}.png" alt="{$field.title}" title="{$field.title}">
10
+            <h3>{$field.title}</h3>
11
+            <p>{$field.seo_description|msubstr=###,0,35,true}</p>
12
+        </a>
13
+    </div>
14
+</div>

+ 400
- 0
template/pc/components/index/content.htm Wyświetl plik

@@ -0,0 +1,400 @@
1
+<div id="mask"></div>
2
+<p class="index-breadcrumb"></p>
3
+<div id="banner-bear" class="preserve3d csstransforms3d">
4
+
5
+    <p class="typing web-font transition">
6
+        {eyou:global name='web_attr_17' /}
7
+    </p>
8
+    <div class="primary-menus">
9
+        <ul class="selects">
10
+            <li>常用</li>
11
+            <li class="current" data-target="search_1"><span>政策</span></li>
12
+            <li data-target="search_2"><span>材料</span></li>
13
+        </ul>
14
+        <div class="cont">
15
+            <!--typeid--> <!--modelid-->
16
+            <div class="left-cont">
17
+
18
+                {eyou:searchform type='sonself'}
19
+                <form class="search" id="search_1" action="{$field.action}" method="get" target="_blank" >
20
+                    <input type="text"  name="keywords" class="s" placeholder="请输入关键词">
21
+                    <button type="submit" name="" class="btn">政策搜索</button>
22
+                    {$field.hidden}
23
+                </form>
24
+                {/eyou:searchform}
25
+
26
+                {eyou:searchform type='sonself'}
27
+                <form class="search hidden" id="search_2" action="{$field.action}" method="get" target="_blank" >
28
+                    <input type="text" name="keywords" class="s" placeholder="请输入关键词">
29
+                    <button type="submit" name="" class="btn">材料搜索</button>
30
+                    {$field.hidden}
31
+                </form>
32
+                {/eyou:searchform}
33
+
34
+            </div>
35
+        </div>
36
+    </div>
37
+
38
+
39
+    <!--这个代码不知道干嘛的--->
40
+    <div class="submit fr">
41
+        <a href=""  class="a transition"><i class="fa fa-heart"></i>投稿</a> </div>
42
+    <div class="banner-wrap scenes-ready">
43
+        <div id="stage">
44
+            <div class="space"></div>
45
+            <div class="mountains">
46
+                <div class="mountain mountain-1"></div>
47
+                <div class="mountain mountain-2"></div>
48
+                <div class="mountain mountain-3"></div>
49
+            </div>
50
+            <div class="bear"></div>
51
+        </div>
52
+    </div>
53
+</div>
54
+
55
+<div class="container">
56
+    <!-- 广告位AD1  -->
57
+
58
+    <!-- 收录统计  -->
59
+    <div class="row row-position">
60
+        <div class="col-md-12">
61
+
62
+            <div class="part" id="cate19" data-title="申报资讯">
63
+                <p class="tt sticky">
64
+                    <strong><a href="https://www.zc10000.com/zx" class="ta">申报资讯</a></strong>
65
+                    <a title="更多新闻资讯" href="https://www.zc10000.com/zx">更多+</a>
66
+                </p>
67
+                <div class="items">
68
+                    <div class="row">
69
+
70
+
71
+                        <?php
72
+                        $where = " typeid=1231 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
73
+                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,8";
74
+                        ?>
75
+                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
76
+                        {eyou:arcview aid='$listSql.aid'}
77
+
78
+                        <?php
79
+                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
80
+                        ?>
81
+
82
+                        <div class="col-xs-6 col-sm-4 col-md-3">
83
+                            <div class="item art-item transition">
84
+                                <a class="art-a" href="{$a_url}" title="{$field.title}" >
85
+                                    <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
86
+                                </a>
87
+                                <h3 class="art-title">
88
+                                    <a class="" href="{$a_url}" title="{$field.title}" >
89
+                                        {$field.title}
90
+                                    </a>
91
+                                </h3>
92
+                                <p>{$field.seo_description|msubstr=###,0,35,true}</p>
93
+                            </div>
94
+                        </div>
95
+
96
+
97
+                        {/eyou:arcview}
98
+                        {/eyou:sql}
99
+
100
+
101
+                    </div>
102
+                </div>
103
+            </div>
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+            <div class="part" id="cate2" data-title="">
113
+                <div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">
114
+
115
+                    <div class="tt sticky" style="">
116
+                        <strong><a href="https://www.zc10000.com/zc" class="ta">政策文件</a></strong>
117
+
118
+
119
+                        {eyou:if condition='($is_mobile === false)'}
120
+                        <style>
121
+                            .layui-tab-title li {
122
+                                min-width: 65px;
123
+                                padding: 0 10px;
124
+                                line-height: 30px;
125
+                            }
126
+                            .layui-tab-title .layui-this:after{
127
+                                border-style: none;
128
+                            }
129
+                            .layui-tab-title .layui-this {
130
+                                color: red;
131
+                            }
132
+                        </style>
133
+
134
+                        <span class="layui-tab-title" style="position:absolute;top: 13px;left: 11%;border-bottom-style:none;height: 30px;">
135
+                                    <li class="layui-this">山东</li>
136
+                                    <li>广东</li>
137
+                                    <li>上海</li>
138
+                                    <li>广西</li>
139
+                            </span>
140
+
141
+                        {eyou:else /}
142
+
143
+                        <style>
144
+                            .layui-tab-title li {
145
+                                min-width: 40px;
146
+                                padding: 0 5px;
147
+                                line-height: 30px;
148
+                            }
149
+                            .layui-tab-title .layui-this:after{
150
+                                border-style: none;
151
+                            }
152
+                            .layui-tab-title .layui-this {
153
+                                color: red;
154
+                            }
155
+                        </style>
156
+
157
+                        <span class="layui-tab-title" style="position:absolute;top: 8px;left: 29%;border-bottom-style:none;height: 30px;">
158
+                                    <li class="layui-this">山东</li>
159
+                                    <li>广东</li>
160
+                                    <li>上海</li>
161
+                                    <li>广西</li>
162
+                            </span>
163
+
164
+                        {/eyou:if}
165
+
166
+                        <a title="更多政策文件" href="https://www.zc10000.com/zc">更多+</a>
167
+                    </div>
168
+
169
+
170
+                    <?php
171
+                        $area_ids = ['',5290,1,4813,5879];
172
+                    ?>
173
+
174
+                    <div class="layui-tab-content" style="height: auto;">
175
+
176
+                        <div class="layui-tab-item layui-show">
177
+
178
+                            <div class="items">
179
+                                <div class="row">
180
+                                    <?php
181
+                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[1]; //and is_recom=1
182
+                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
183
+                            ?>
184
+                                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
185
+                                    {eyou:arcview aid='$listSql.aid'}
186
+
187
+                                    <?php
188
+                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
189
+                            ?>
190
+
191
+                                    {eyou:include file='/template/pc/components/goods/zc.htm' /}
192
+
193
+                                    {/eyou:arcview}
194
+                                    {/eyou:sql}
195
+
196
+                                </div>
197
+                            </div>
198
+
199
+
200
+
201
+                        </div>
202
+                        <div class="layui-tab-item">
203
+
204
+
205
+                            <div class="items">
206
+                                <div class="row">
207
+
208
+                                    <?php
209
+                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[2]; //and is_recom=1
210
+                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
211
+                            ?>
212
+                                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
213
+                                    {eyou:arcview aid='$listSql.aid'}
214
+
215
+                                    <?php
216
+                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
217
+                            ?>
218
+
219
+                                    {eyou:include file='/template/pc/components/goods/zc.htm' /}
220
+
221
+                                    {/eyou:arcview}
222
+                                    {/eyou:sql}
223
+
224
+
225
+                                </div>
226
+                            </div>
227
+
228
+                        </div>
229
+                        <div class="layui-tab-item">
230
+
231
+
232
+
233
+                            <div class="items">
234
+                                <div class="row">
235
+
236
+                                    <?php
237
+                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[3]; //and is_recom=1
238
+                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
239
+                            ?>
240
+                                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
241
+                                    {eyou:arcview aid='$listSql.aid'}
242
+
243
+                                    <?php
244
+                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
245
+                            ?>
246
+
247
+                                    {eyou:include file='/template/pc/components/goods/zc.htm' /}
248
+
249
+                                    {/eyou:arcview}
250
+                                    {/eyou:sql}
251
+
252
+
253
+                                </div>
254
+                            </div>
255
+
256
+                        </div>
257
+                        <div class="layui-tab-item">
258
+
259
+
260
+                            <div class="items">
261
+                                <div class="row">
262
+
263
+
264
+                                    <?php
265
+                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[4]; //and is_recom=1
266
+                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
267
+                            ?>
268
+                                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
269
+                                    {eyou:arcview aid='$listSql.aid'}
270
+
271
+                                    <?php
272
+                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
273
+                            ?>
274
+
275
+                                    {eyou:include file='/template/pc/components/goods/zc.htm' /}
276
+
277
+                                    {/eyou:arcview}
278
+                                    {/eyou:sql}
279
+
280
+
281
+                                </div>
282
+                            </div>
283
+                        </div>
284
+                    </div>
285
+
286
+
287
+
288
+                </div>
289
+            </div>
290
+
291
+
292
+
293
+            <div class="part" id="cate2" data-title="业绩材料">
294
+
295
+                <p class="tt sticky">
296
+                    <strong><a href="https://www.zc10000.com/cl" class="ta">业绩材料</a></strong>
297
+                    <a title="更多业绩材料" href="https://www.zc10000.com/cl">更多+</a>
298
+                </p>
299
+
300
+                <div class="items">
301
+                    <div class="row">
302
+
303
+                        <?php
304
+                    $where = " typeid=1233 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
305
+                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,18";
306
+                    ?>
307
+                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
308
+                        {eyou:arcview aid='$listSql.aid'}
309
+
310
+                        <?php
311
+                    $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
312
+                    ?>
313
+                        <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
314
+                            <div class="item art-item transition">
315
+                                <a class="art-a" href="{$ar_url}" title="" >
316
+                                    <img class="img-cover" src="{$field.litpic}" alt="" title="">
317
+                                </a>
318
+                                <h3 class="art-title" style="">
319
+                                    {eyou:if condition='((int)$field.is_recom === 1)'}
320
+                                    <i class="more2_info_self">推荐</i>
321
+                                    {/eyou:if}
322
+
323
+                                    <a class="" href="{$ar_url}" title="{$field.title}" >
324
+                                        {$field.title|msubstr=###,0,30,true}
325
+                                    </a>
326
+                                </h3>
327
+                                <div class="mod_price">
328
+                                    <i>¥</i>
329
+                                    <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
330
+                                 </span>
331
+                                </div>
332
+                            </div>
333
+                        </div>
334
+
335
+
336
+                        {/eyou:arcview}
337
+                        {/eyou:sql}
338
+
339
+
340
+                    </div>
341
+                </div>
342
+            </div>
343
+
344
+
345
+        </div>
346
+    </div>
347
+    <div class="f-link part">
348
+        <p class="tt"><strong>友情链接</strong></p>
349
+        <ul id="flink" class="container">
350
+            {eyou:links type='text' groupid='1' loop='30' titlelen='15'}
351
+            <li><a href='{$field.url}' {$field.nofollow} {$field.target}>{$field.title}</a> </li>
352
+            {/eyou:links}
353
+        </ul>
354
+    </div>
355
+</div>
356
+
357
+
358
+<script>
359
+    layui.use('element', function(){
360
+        var $ = layui.jquery
361
+            ,element = layui.element; //Tab的切换功能,切换事件监听等,需要依赖element模块
362
+
363
+        //触发事件
364
+        var active = {
365
+            tabAdd: function(){
366
+                //新增一个Tab项
367
+                element.tabAdd('demo', {
368
+                    title: '新选项'+ (Math.random()*1000|0) //用于演示
369
+                    ,content: '内容'+ (Math.random()*1000|0)
370
+                    ,id: new Date().getTime() //实际使用一般是规定好的id,这里以时间戳模拟下
371
+                })
372
+            }
373
+            ,tabDelete: function(othis){
374
+                //删除指定Tab项
375
+                element.tabDelete('demo', '44'); //删除:“商品管理”
376
+
377
+
378
+                othis.addClass('layui-btn-disabled');
379
+            }
380
+            ,tabChange: function(){
381
+                //切换到指定Tab项
382
+                element.tabChange('demo', '22'); //切换到:用户管理
383
+            }
384
+        };
385
+
386
+        $('.site-demo-active').on('click', function(){
387
+            var othis = $(this), type = othis.data('type');
388
+            active[type] ? active[type].call(this, othis) : '';
389
+        });
390
+
391
+        //Hash地址的定位
392
+        var layid = location.hash.replace(/^#test=/, '');
393
+        element.tabChange('test', layid);
394
+
395
+        element.on('tab(test)', function(elem){
396
+            location.hash = 'test='+ $(this).attr('lay-id');
397
+        });
398
+
399
+    });
400
+</script>

+ 3
- 3
template/pc/components/list/style12/page/mod_3.htm Wyświetl plik

@@ -91,13 +91,13 @@
91 91
 $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
92 92
 ?>
93 93
 
94
-<div class="col-xs-6 col-sm-4 col-md-3 font-563-active-{$i}">
94
+<div class="col-xs-12 col-sm-4 col-md-4 font-563-active-{$i}">
95 95
     <div class="item">
96
-        <a class="link" target="_self" href="{$ar_url}" rel="nofollow">
96
+        <a class="link" target="_self" href="{$ar_url}" >
97 97
             <i class="autoleft fa fa-angle-right" title="{$field.title}"></i>
98 98
         </a>
99 99
         <a class="a" href="{$ar_url}" title="{$field.title}" >
100
-            <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
100
+            <img src="https://www.zc10000.com/public/static/common/images/ico/{$field.ext}.png" alt="{$field.title}" title="{$field.title}">
101 101
             <h3>{$field.title}</h3>
102 102
             <p>{$field.seo_description|msubstr=###,0,35,true}</p>
103 103
         </a>

+ 6
- 0
template/pc/components/nav/style_1.htm Wyświetl plik

@@ -61,6 +61,12 @@
61 61
 
62 62
         '{$eyou.field.keywords}'搜索结果
63 63
 
64
+        {eyou:elseif condition='($page == "ciping")'}
65
+        <!--文章列表页-->
66
+        {eyou:type typeid='1234' empty=''}
67
+        <a href="/cp">{$field.typename}</a>
68
+        {/eyou:type}
69
+
64 70
         {eyou:else /}
65 71
         <!--系统的面包屑 不符合某些规则-->
66 72
         {eyou:position style="crumb" /}

+ 46
- 0
template/pc/components/search/content.htm Wyświetl plik

@@ -0,0 +1,46 @@
1
+{eyou:list pagesize='24' mod='6' id='field'}
2
+<div class="col-xs-12 col-sm-4 col-md-4 search-li">
3
+    <div class="item">
4
+
5
+        <a class="link" target="_self" href="javascript:;" >
6
+            <i class="autoleft fa fa-angle-right" title=""></i>
7
+        </a>
8
+
9
+        <a class="a" href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id'])}" title="{$field.title}" >
10
+
11
+
12
+
13
+            {eyou:if condition='($field.ext == "")'}
14
+                <img src="https://www.zc10000.com/public/static/common/images/not_adv.jpg" alt="" title="">
15
+            {eyou:else /}
16
+                <img src="https://www.zc10000.com/public/static/common/images/ico/{$field.ext}.png" alt="" title="">
17
+            {/eyou:if}
18
+
19
+
20
+            <h3>{$field.title}</h3>
21
+            <p>
22
+                {$field.seo_description|msubstr=###,0,35,true}
23
+            </p>
24
+            <p class="time">{$field.add_time|MyDate='Y-m-d',###}</p>
25
+        </a>
26
+    </div>
27
+</div>
28
+
29
+
30
+{/eyou:list}
31
+<!--
32
+<i>{eyou:tag sort='now' getall='0' id='fieldtag'}{$fieldtag.tag}{/eyou:tag}</i>
33
+-->
34
+
35
+
36
+<ul class="links widget">
37
+
38
+    <li><a href="" target="_blank" title="{$field.title}">
39
+
40
+        <span></span>
41
+        <em></em>
42
+    </a>
43
+    </li>
44
+    {eyou:eq name='mod' value='0'}<li class="line"></li>{/eyou:eq}
45
+
46
+</ul>

+ 148
- 2
template/pc/css/extend.css Wyświetl plik

@@ -222,9 +222,14 @@
222 222
     }
223 223
 }
224 224
 
225
+.header .nav-bar {
226
+    float: left;
227
+    margin-left: 4% !important;
228
+}
229
+
225 230
 .log-in{
226
-    width: 300px;
227
-    margin-left: 105px;
231
+    width: 265px;
232
+    margin-left: 0px;
228 233
     margin-top: 18px;
229 234
 }
230 235
 #user_nav_z li{
@@ -365,3 +370,144 @@
365 370
     text-align: center;
366 371
 }
367 372
 
373
+.part .item .a h3{
374
+    height: 42px !important;
375
+    max-width: 77% !important;
376
+}
377
+
378
+@media (max-width: 767px) {
379
+    .part .items {
380
+        padding: 0px 15px 15px 15px !important;
381
+    }
382
+    .part .item .a img {
383
+        /*margin-top:  3px !important;*/
384
+    }
385
+}
386
+
387
+.part .item .a img {
388
+    box-shadow: 0 0px 1px 0 rgb(0 0 0 / 20%);
389
+    float: left;
390
+    width: 32px !important;
391
+    height: 42px !important;
392
+    border-radius:  0% !important;
393
+}
394
+
395
+.part .post-single .pic img {
396
+    height: 142px !important;
397
+    width: 100px !important;
398
+    animation: both !important;
399
+    border-radius:0px !important;
400
+    border: none !important;
401
+}
402
+
403
+@media (max-width: 767px) {
404
+    .part .post-single .pic img {
405
+        height: 79px !important;
406
+        width: 55px !important;
407
+    }
408
+
409
+    #index .part .items{
410
+        margin-top: 0px !important;
411
+    }
412
+
413
+    .part .items{
414
+        margin-top: 20px !important;
415
+    }
416
+    .part .bar .tt {
417
+        height: 5.4em !important;
418
+    }
419
+
420
+    .part .bar .tt {
421
+        position: relative;
422
+        width: 76%;
423
+         overflow: auto !important;;
424
+         text-overflow: inherit !important;
425
+         white-space: normal !important;
426
+         border: none !important;
427
+    }
428
+    .part .r-intro{
429
+        top: 50px !important;
430
+    }
431
+    .breadnav .bread {
432
+        padding: 15px 20px !important;
433
+    }
434
+
435
+
436
+    #search .row {
437
+        margin-left: 0px;
438
+        margin-right: 0px;
439
+        width: 100%;
440
+    }
441
+
442
+
443
+}
444
+#search .time{
445
+    line-height: 36px;
446
+}
447
+
448
+.header .submit .a, #banner-bear .submit .a {
449
+    display: block;
450
+    margin: 21px 7px !important;
451
+}
452
+
453
+.ta{
454
+    float: left !important;
455
+    font-size: 17px !important;
456
+    font-weight: bold !important;
457
+    line-height: 16px !important;
458
+}
459
+
460
+#index .sticky{
461
+    height: 57px !important;
462
+}
463
+
464
+@media (max-width: 767px) {
465
+    #index .ta{
466
+        line-height: 3px !important;
467
+    }
468
+    #index .sticky{
469
+        height: 45px !important;
470
+    }
471
+}
472
+.container{
473
+/*    margin-top: 10px;*/
474
+}
475
+#stage .mountain-1 {
476
+    height: 10.7em !important;
477
+    margin-bottom: -10px;
478
+}
479
+#stage .mountain-2 {
480
+    margin-bottom: -10px;
481
+}
482
+
483
+#index .art-item{
484
+    margin-top: 10px;
485
+    margin-bottom: 10px !important;
486
+}
487
+
488
+
489
+#new_detail .part .tt a{
490
+    float: left !important;
491
+    /*color: #000 !important;*/
492
+    font-size: 17px !important;
493
+    font-weight: bold !important;
494
+}
495
+
496
+#zc_detail .part .tt a{
497
+    float: left !important;
498
+    /*color: #000 !important;*/
499
+    font-size: 17px !important;
500
+    font-weight: bold !important;
501
+}
502
+
503
+#cl_detail .part .tt a{
504
+    float: left !important;
505
+    /*color: #000 !important;*/
506
+    font-size: 17px !important;
507
+    font-weight: bold !important;
508
+}
509
+
510
+#cl_detail .part .post-single .pic img {
511
+    height: 187px !important;
512
+    width: 154px !important;
513
+}

+ 1
- 490
template/pc/index.htm Wyświetl plik

@@ -5,499 +5,10 @@
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6 6
 
7 7
 <div id="index">
8
-
9
-<div id="mask"></div>
10
-<p class="index-breadcrumb"></p>
11
-<div id="banner-bear" class="preserve3d csstransforms3d">
12
-
13
-    <p class="typing web-font transition">
14
-        {eyou:global name='web_attr_17' /}
15
-    </p>
16
-    <div class="primary-menus">
17
-        <ul class="selects">
18
-            <li>常用</li>
19
-            <li class="current" data-target="search_1"><span>政策</span></li>
20
-            <li data-target="search_2"><span>材料</span></li>
21
-        </ul>
22
-        <div class="cont">
23
-            <!--typeid--> <!--modelid-->
24
-            <div class="left-cont">
25
-
26
-                {eyou:searchform type='sonself'}
27
-                <form class="search" id="search_1" action="{$field.action}" method="get" target="_blank" >
28
-                    <input type="text"  name="keywords" class="s" placeholder="请输入关键词">
29
-                    <button type="submit" name="" class="btn">政策搜索</button>
30
-                    {$field.hidden}
31
-                </form>
32
-                {/eyou:searchform}
33
-
34
-                {eyou:searchform type='sonself'}
35
-                <form class="search hidden" id="search_2" action="{$field.action}" method="get" target="_blank" >
36
-                    <input type="text" name="keywords" class="s" placeholder="请输入关键词">
37
-                    <button type="submit" name="" class="btn">材料搜索</button>
38
-                    {$field.hidden}
39
-                </form>
40
-                {/eyou:searchform}
41
-
42
-            </div>
43
-        </div>
44
-    </div>
45
-
46
-
47
-    <!--这个代码不知道干嘛的--->
48
-    <div class="submit fr">
49
-        <a href=""  class="a transition"><i class="fa fa-heart"></i>投稿</a> </div>
50
-        <div class="banner-wrap scenes-ready">
51
-            <div id="stage">
52
-                <div class="space"></div>
53
-                <div class="mountains">
54
-                    <div class="mountain mountain-1"></div>
55
-                    <div class="mountain mountain-2"></div>
56
-                    <div class="mountain mountain-3"></div>
57
-                </div>
58
-                <div class="bear"></div>
59
-            </div>
60
-        </div>
61
-    </div>
62
-
63
-<div class="container">
64
-    <!-- 广告位AD1  -->
65
-
66
-    <!-- 收录统计  -->
67
-    <div class="row row-position">
68
-        <div class="col-md-12">
69
-
70
-            <div class="part" id="cate19" data-title="新闻资讯">
71
-                <p class="tt sticky">
72
-                    <strong>新闻资讯</strong>
73
-                    <a title="更多新闻资讯" href="https://www.zc10000.com/zx">更多+</a>
74
-                </p>
75
-                <div class="items">
76
-                    <div class="row">
77
-
78
-
79
-                        <?php
80
-                        $where = " typeid=1231 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
81
-                        $sql = "select aid from ey_archives where $where order by update_time desc limit 0,8";
82
-                        ?>
83
-                        {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
84
-                        {eyou:arcview aid='$listSql.aid'}
85
-
86
-                        <?php
87
-                        $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
88
-                        ?>
89
-
90
-                        <div class="col-xs-6 col-sm-4 col-md-3">
91
-                            <div class="item art-item transition">
92
-                                <a class="art-a" href="{$a_url}" title="{$field.title}" >
93
-                                    <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
94
-                                </a>
95
-                                <h3 class="art-title">
96
-                                    <a class="" href="{$a_url}" title="{$field.title}" >
97
-                                        {$field.title}
98
-                                    </a>
99
-                                </h3>
100
-                                <p>{$field.seo_description|msubstr=###,0,35,true}</p>
101
-                            </div>
102
-                        </div>
103
-
104
-
105
-                        {/eyou:arcview}
106
-                        {/eyou:sql}
107
-
108
-
109
-                    </div>
110
-                </div>
111
-            </div>
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-            <div class="part" id="cate2" data-title="">
121
-                <div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">
122
-
123
-                    <div class="tt sticky" style="">
124
-                        <strong>政策文件</strong>
125
-
126
-
127
-
128
-                        {eyou:if condition='($is_mobile === false)'}
129
-
130
-                        <style>
131
-                            .layui-tab-title li {
132
-                                min-width: 65px;
133
-                                padding: 0 10px;
134
-                                line-height: 30px;
135
-                            }
136
-                            .layui-tab-title .layui-this:after{
137
-                                border-style: none;
138
-                            }
139
-                            .layui-tab-title .layui-this {
140
-                                color: red;
141
-                            }
142
-                        </style>
143
-
144
-                        <span class="layui-tab-title" style="position:absolute;top: 13px;left: 11%;border-bottom-style:none;height: 30px;">
145
-                                    <li class="layui-this">全部</li>
146
-                                    <li>山东</li>
147
-                                    <li>广东</li>
148
-                                    <li>上海</li>
149
-                                    <li>广西</li>
150
-                            </span>
151
-
152
-                        {eyou:else /}
153
-
154
-                        <style>
155
-                            .layui-tab-title li {
156
-                                min-width: 40px;
157
-                                padding: 0 5px;
158
-                                line-height: 30px;
159
-                            }
160
-                            .layui-tab-title .layui-this:after{
161
-                                border-style: none;
162
-                            }
163
-                            .layui-tab-title .layui-this {
164
-                                color: red;
165
-                            }
166
-                        </style>
167
-
168
-                        <span class="layui-tab-title" style="position:absolute;top: 8px;left: 29%;border-bottom-style:none;height: 30px;">
169
-                                    <li class="layui-this">全部</li>
170
-                                    <li>山东</li>
171
-                                    <li>广东</li>
172
-                                    <li>上海</li>
173
-                                    <li>广西</li>
174
-                            </span>
175
-
176
-                        {/eyou:if}
177
-
178
-                        <a title="更多政策文件" href="https://www.zc10000.com/zc">更多+</a>
179
-                    </div>
180
-
181
-
182
-                    <?php
183
-                        $area_ids = ['',5290,1,4813,5879];
184
-                    ?>
185
-
186
-                    <div class="layui-tab-content" style="height: auto;">
187
-                        <div class="layui-tab-item layui-show">
188
-
189
-                            <div class="items">
190
-                                <div class="row">
191
-
192
-
193
-                                    <?php
194
-                                    $where = " typeid=1232 and is_del=0 and status=1"; //and is_recom=1
195
-                                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
196
-                                    ?>
197
-                                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
198
-                                    {eyou:arcview aid='$listSql.aid'}
199
-
200
-                                    <?php
201
-                                    $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
202
-                                    ?>
203
-
204
-                                    <div class="col-xs-6 col-sm-4 col-md-3">
205
-                                        <div class="item">
206
-                                            <a class="link" target="_self" href="javascript:;" rel="nofollow">
207
-                                                <i class="autoleft fa fa-angle-right" title=""></i>
208
-                                            </a>
209
-                                            <a class="a" href="{$a_url}" title="{$field.title}" >
210
-                                                <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
211
-                                                <h3>{$field.title}</h3>
212
-                                                <p>{$field.seo_description|msubstr=###,0,35,true}</p>
213
-                                            </a>
214
-                                        </div>
215
-                                    </div>
216
-
217
-                                    {/eyou:arcview}
218
-                                    {/eyou:sql}
219
-
220
-
221
-
222
-
223
-
224
-
225
-                                </div>
226
-                            </div>
227
-
228
-
229
-                        </div>
230
-                        <div class="layui-tab-item">
231
-
232
-                            <div class="items">
233
-                                <div class="row">
234
-                            <?php
235
-                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[1]; //and is_recom=1
236
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
237
-                            ?>
238
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
239
-                            {eyou:arcview aid='$listSql.aid'}
240
-
241
-                            <?php
242
-                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
243
-                            ?>
244
-
245
-                            <div class="col-xs-6 col-sm-4 col-md-3">
246
-                                <div class="item">
247
-                                    <a class="link" target="_self" href="javascript:;" rel="nofollow">
248
-                                        <i class="autoleft fa fa-angle-right" title=""></i>
249
-                                    </a>
250
-                                    <a class="a" href="{$a_url}" title="{$field.title}" >
251
-                                        <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
252
-                                        <h3>{$field.title}</h3>
253
-                                        <p>{$field.seo_description|msubstr=###,0,35,true}</p>
254
-                                    </a>
255
-                                </div>
256
-                            </div>
257
-
258
-                            {/eyou:arcview}
259
-                            {/eyou:sql}
260
-
261
-                                </div>
262
-                            </div>
263
-
264
-
265
-
266
-                        </div>
267
-                        <div class="layui-tab-item">
268
-
269
-
270
-                            <div class="items">
271
-                                <div class="row">
272
-
273
-                            <?php
274
-                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[2]; //and is_recom=1
275
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
276
-                            ?>
277
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
278
-                            {eyou:arcview aid='$listSql.aid'}
279
-
280
-                            <?php
281
-                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
282
-                            ?>
283
-
284
-                            <div class="col-xs-6 col-sm-4 col-md-3">
285
-                                <div class="item">
286
-                                    <a class="link" target="_self" href="javascript:;" rel="nofollow">
287
-                                        <i class="autoleft fa fa-angle-right" title=""></i>
288
-                                    </a>
289
-                                    <a class="a" href="{$a_url}" title="{$field.title}" >
290
-                                        <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
291
-                                        <h3>{$field.title}</h3>
292
-                                        <p>{$field.seo_description|msubstr=###,0,35,true}</p>
293
-                                    </a>
294
-                                </div>
295
-                            </div>
296
-
297
-                            {/eyou:arcview}
298
-                            {/eyou:sql}
299
-
300
-
301
-                        </div>
302
-                    </div>
303
-
304
-                        </div>
305
-                        <div class="layui-tab-item">
306
-
307
-
308
-
309
-                            <div class="items">
310
-                                <div class="row">
311
-
312
-                            <?php
313
-                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[3]; //and is_recom=1
314
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
315
-                            ?>
316
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
317
-                            {eyou:arcview aid='$listSql.aid'}
318
-
319
-                            <?php
320
-                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
321
-                            ?>
322
-
323
-                            <div class="col-xs-6 col-sm-4 col-md-3">
324
-                                <div class="item">
325
-                                    <a class="link" target="_self" href="javascript:;" rel="nofollow">
326
-                                        <i class="autoleft fa fa-angle-right" title=""></i>
327
-                                    </a>
328
-                                    <a class="a" href="{$a_url}" title="{$field.title}" >
329
-                                        <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
330
-                                        <h3>{$field.title}</h3>
331
-                                        <p>{$field.seo_description|msubstr=###,0,35,true}</p>
332
-                                    </a>
333
-                                </div>
334
-                            </div>
335
-
336
-                            {/eyou:arcview}
337
-                            {/eyou:sql}
338
-
339
-
340
-                        </div>
341
-            </div>
342
-
343
-                        </div>
344
-                        <div class="layui-tab-item">
345
-
346
-
347
-                            <div class="items">
348
-                                <div class="row">
349
-
350
-
351
-                            <?php
352
-                            $where = " typeid=1232 and is_del=0 and status=1 and area_tag_id=".$area_ids[4]; //and is_recom=1
353
-                            $sql = "select aid from ey_archives where $where order by update_time desc limit 0,12";
354
-                            ?>
355
-                            {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
356
-                            {eyou:arcview aid='$listSql.aid'}
357
-
358
-                            <?php
359
-                            $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
360
-                            ?>
361
-
362
-                            <div class="col-xs-6 col-sm-4 col-md-3">
363
-                                <div class="item">
364
-                                    <a class="link" target="_self" href="javascript:;" rel="nofollow">
365
-                                        <i class="autoleft fa fa-angle-right" title=""></i>
366
-                                    </a>
367
-                                    <a class="a" href="{$a_url}" title="{$field.title}" >
368
-                                        <img src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
369
-                                        <h3>{$field.title}</h3>
370
-                                        <p>{$field.seo_description|msubstr=###,0,35,true}</p>
371
-                                    </a>
372
-                                </div>
373
-                            </div>
374
-
375
-                            {/eyou:arcview}
376
-                            {/eyou:sql}
377
-
378
-
379
-                                                </div>
380
-                            </div>
381
-                        </div>
382
-                    </div>
383
-
384
-
385
-
386
-                </div>
387
-            </div>
388
-
389
-
390
-
391
-            <div class="part" id="cate2" data-title="业绩材料">
392
-
393
-            <p class="tt sticky">
394
-                <strong>业绩材料</strong>
395
-                <a title="更多业绩材料" href="https://www.zc10000.com/cl">更多+</a>
396
-            </p>
397
-
398
-            <div class="items">
399
-                <div class="row">
400
-
401
-                    <?php
402
-                    $where = " typeid=1233 and is_del=0 and status=1 and province_id=0 "; //and is_recom=1
403
-                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,18";
404
-                    ?>
405
-                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
406
-                    {eyou:arcview aid='$listSql.aid'}
407
-
408
-                    <?php
409
-                    $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
410
-                    ?>
411
-                    <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
412
-                        <div class="item art-item transition">
413
-                            <a class="art-a" href="{$ar_url}" title="" >
414
-                                <img class="img-cover" src="{$field.litpic}" alt="" title="">
415
-                            </a>
416
-                            <h3 class="art-title" style="">
417
-                                {eyou:if condition='((int)$field.is_recom === 1)'}
418
-                                <i class="more2_info_self">推荐</i>
419
-                                {/eyou:if}
420
-
421
-                                <a class="" href="{$ar_url}" title="{$field.title}" >
422
-                                    {$field.title|msubstr=###,0,30,true}
423
-                                </a>
424
-                            </h3>
425
-                            <div class="mod_price">
426
-                                <i>¥</i>
427
-                                <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
428
-                                 </span>
429
-                            </div>
430
-                        </div>
431
-                    </div>
432
-
433
-
434
-                    {/eyou:arcview}
435
-                    {/eyou:sql}
436
-
437
-
438
-                </div>
439
-            </div>
440
-        </div>
441
-
442
-
443
-        </div>
444
-    </div>
445
-    <div class="f-link part">
446
-        <p class="tt"><strong>友情链接</strong></p>
447
-        <ul id="flink" class="container">
448
-            {eyou:links type='text' groupid='1' loop='30' titlelen='15'}
449
-            <li><a href='{$field.url}' {$field.nofollow} {$field.target}>{$field.title}</a> </li>
450
-            {/eyou:links}
451
-        </ul>
452
-    </div>
453
-</div>
454
-
8
+    {eyou:include file='/template/pc/components/index/content.htm' /}
455 9
 </div>
456 10
 
457 11
 {eyou:include file='/template/pc/common/include/footer.htm' /}
458 12
 {eyou:include file='/template/pc/common/include/bottom.htm' /}
459 13
 
460
-<script>
461
-    layui.use('element', function(){
462
-        var $ = layui.jquery
463
-            ,element = layui.element; //Tab的切换功能,切换事件监听等,需要依赖element模块
464
-
465
-        //触发事件
466
-        var active = {
467
-            tabAdd: function(){
468
-                //新增一个Tab项
469
-                element.tabAdd('demo', {
470
-                    title: '新选项'+ (Math.random()*1000|0) //用于演示
471
-                    ,content: '内容'+ (Math.random()*1000|0)
472
-                    ,id: new Date().getTime() //实际使用一般是规定好的id,这里以时间戳模拟下
473
-                })
474
-            }
475
-            ,tabDelete: function(othis){
476
-                //删除指定Tab项
477
-                element.tabDelete('demo', '44'); //删除:“商品管理”
478
-
479
-
480
-                othis.addClass('layui-btn-disabled');
481
-            }
482
-            ,tabChange: function(){
483
-                //切换到指定Tab项
484
-                element.tabChange('demo', '22'); //切换到:用户管理
485
-            }
486
-        };
487
-
488
-        $('.site-demo-active').on('click', function(){
489
-            var othis = $(this), type = othis.data('type');
490
-            active[type] ? active[type].call(this, othis) : '';
491
-        });
492
-
493
-        //Hash地址的定位
494
-        var layid = location.hash.replace(/^#test=/, '');
495
-        element.tabChange('test', layid);
496
-
497
-        element.on('tab(test)', function(elem){
498
-            location.hash = 'test='+ $(this).attr('lay-id');
499
-        });
500
-
501
-    });
502
-</script>
503 14
 

+ 1
- 1
template/pc/js/main.js
Plik diff jest za duży
Wyświetl plik


+ 1
- 51
template/pc/lists_search.htm Wyświetl plik

@@ -20,42 +20,8 @@
20 20
         <div class="part" style="">
21 21
             <div class="row">
22 22
 
23
+                {eyou:include file='/template/pc/components/search/content.htm' /}
23 24
 
24
-                {eyou:list pagesize='24' mod='6' id='field'}
25
-                <div class="col-xs-6 col-sm-4 col-md-3 search-li">
26
-                    <div class="item">
27
-
28
-                        <a class="link" target="_self" href="javascript:;" rel="nofollow">
29
-                            <i class="autoleft fa fa-angle-right" title=""></i>
30
-                        </a>
31
-
32
-                        <a class="a" href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id'])}" title="{$field.title}" >
33
-                            <img src="{$field.litpic}" alt="" title="">
34
-                            <h3>{$field.title}</h3>
35
-                            <p>
36
-                                {$field.seo_description|msubstr=###,0,35,true}
37
-                            </p>
38
-                            <p>{$field.add_time|MyDate='Y-m-d',###}</p>
39
-                        </a>
40
-                    </div>
41
-                </div>
42
-                {/eyou:list}
43
-                <!--
44
-                <i>{eyou:tag sort='now' getall='0' id='fieldtag'}{$fieldtag.tag}{/eyou:tag}</i>
45
-                -->
46
-
47
-
48
-                <ul class="links widget">
49
-
50
-                    <li><a href="" target="_blank" title="{$field.title}">
51
-
52
-                            <span></span>
53
-                            <em></em>
54
-                        </a>
55
-                    </li>
56
-                    {eyou:eq name='mod' value='0'}<li class="line"></li>{/eyou:eq}
57
-
58
-                </ul>
59 25
 
60 26
 
61 27
             </div>
@@ -72,22 +38,6 @@
72 38
 
73 39
 
74 40
 
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91 41
 
92 42
 </div>
93 43
 

+ 9
- 13
template/pc/lists_yjcp_cp.htm Wyświetl plik

@@ -6,12 +6,6 @@
6 6
 
7 7
 
8 8
 
9
-<div id="ciping">
10
-
11
-
12
-
13
-
14
-
15 9
 
16 10
 
17 11
 
@@ -27,23 +21,25 @@
27 21
 
28 22
 
29 23
 
30
-</div>
31
-
32
-
33
-
34
-
35 24
 
25
+<div id="ciping">
36 26
 
37 27
 
38 28
 
29
+        <div id="mask"></div>
39 30
 
31
+        {eyou:include file='/template/pc/components/nav/style_1.htm' /}
40 32
 
41 33
 
34
+        <div class="container">
35
+            <!-- 广告位AD4  -->
42 36
 
37
+            <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>
43 38
 
44 39
 
40
+    </div>
45 41
 
46 42
 
47 43
 
48
-{eyou:include file='/template/pc/common/include/footer.htm' /}
49
-{eyou:include file='/template/pc/common/include/bottom.htm' /}
44
+    {eyou:include file='/template/pc/common/include/footer.htm' /}
45
+    {eyou:include file='/template/pc/common/include/bottom.htm' /}

+ 4
- 106
template/pc/view_zczygz_cl.htm Wyświetl plik

@@ -12,116 +12,14 @@
12 12
     <?php
13 13
 
14 14
     /*    echo "<pre>";
15
-        var_dump($eyou['field']);
16
-        echo "</pre>";*/
15
+    var_dump($eyou['field']);
16
+    echo "</pre>";*/
17 17
 
18 18
     ?>
19 19
 
20 20
 
21 21
     <div class="container">
22
-        <div class="part">
23
-            <div class="bar clearfix">
24
-                <h1 class="tt"> {$eyou.field.title} </h1>
25
-                <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
26
-                        {$eyou.field.click}
27
-                    </small> </span> </div>
28
-            </div>
29
-            <div class="items">
30
-                <div class="row post-single">
31
-                    <div class="col-xs-12 col-sm-12 col-md-8">
32
-                        <div class="pic fl">
33
-                            <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
34
-                            <img class="img-cover" src="{$eyou.field.litpic}" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
35
-                        <div class="list">
36
-                            <p>产品名称:{$eyou.field.title}</p>
37
-                            <p class="cate">所属分类:<a href="" class="mcolor">产品购买</a></p>
38
-                            <p class="site">官方网址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></p>
39
-                            <p class="cate">产品价格:
40
-                                <span class="mod_price" style="margin: 0px 0px;">
41
-                                    <i>¥</i>
42
-                                    <span class="more2_info_price_txt">{$eyou.field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
43
-                                     </span>
44
-                                </span>
45
-                            </p>
46
-                            <p class="seo">
47
-
48
-                                <!--SEO查询: <a rel="nofollow" class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
49
-                                <a rel="nofollow" class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a rel="nofollow" class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
50
-
51
-                                产品简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
52
-
53
-                            </p>
54
-
55
-                            <a class="btn transition layui-btn-s" target="_self" data-method="notice" href="javascript:;" rel="nofollow">
56
-                               购买产品
57
-                                <i class="fa fa-chevron-circle-right"></i>
58
-                            </a>
59
-
60
-
61
-
62
-                        </div>
63
-                    </div>
64
-                </div>
65
-            </div>
66
-        </div>
67
-        <div class="part">
68
-            <p class="tt"><span>文档介绍</span></p>
69
-            <div class="items">
70
-                <div class="art-main">
71
-                    {$eyou.field.content_5}
72
-                </div>
73
-            </div>
74
-        </div>
75
-
76
-
77
-
78
-        <!-- 广告位AD3  -->
79
-        <div class="part related">
80
-            <p class="tt"><span>相关推荐</span></p>
81
-            <div class="items">
82
-                <div class="row">
83
-
84
-
85
-                    <?php
86
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
87
-                    $sql = "select aid from ey_archives where $where order by update_time desc limit 0,6";
88
-                    ?>
89
-                    {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
90
-                    {eyou:arcview aid='$listSql.aid'}
91
-
92
-                    <?php
93
-                    $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,0,0);
94
-                    ?>
95
-                    <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
96
-                        <div class="item art-item transition">
97
-                            <a class="art-a" href="{$ar_url}" title="" >
98
-                                <img class="img-cover" src="{$field.litpic}" alt="" title="">
99
-                            </a>
100
-                            <h3 class="art-title" style="">
101
-                                {eyou:if condition='((int)$field.is_recom === 1)'}
102
-                                <i class="more2_info_self">推荐</i>
103
-                                {/eyou:if}
104
-
105
-                                <a class="" href="{$ar_url}" title="{$field.title}" >
106
-                                    {$field.title|msubstr=###,0,30,true}
107
-                                </a>
108
-                            </h3>
109
-                            <div class="mod_price">
110
-                                <i>¥</i>
111
-                                <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
112
-                                 </span>
113
-                            </div>
114
-                        </div>
115
-                    </div>
116
-
117
-
118
-                    {/eyou:arcview}
119
-                    {/eyou:sql}
120
-
121
-
122
-                </div>
123
-            </div>
124
-        </div>
22
+        {eyou:include file='/template/pc/components/detail/cl.htm' /}
125 23
     </div>
126 24
 
127 25
 </div>
@@ -129,7 +27,7 @@
129 27
 {eyou:include file='/template/pc/common/include/footer.htm' /}
130 28
 {eyou:include file='/template/pc/common/include/bottom.htm' /}
131 29
 
132
-<div id="buy"  style="display: none;">
30
+<div id="buy" style="display: none;">
133 31
     <div style="padding: 50px  15px 40px 15px; line-height: 22px; background-color: #393D49; color: #fff; font-weight: 300;">
134 32
 
135 33
         <fieldset class="layui-elem-field" style="width:100%;text-align: center;">

+ 1
- 65
template/pc/view_zczygz_new.htm Wyświetl plik

@@ -18,71 +18,7 @@
18 18
 ?>
19 19
 
20 20
 <div class="container">
21
-    <div class="part">
22
-        <div class="bar clearfix">
23
-            <h1 class="tt">{$eyou.field.title}</h1>
24
-            <div class="r-intro fr">
25
-                <span class="data fr">
26
-                    <small class="info"><i class="fa fa-clock-o"></i>
27
-                    {$eyou.field.update_time|MyDate="Y-m-d",###}
28
-                    </small>
29
-                    <small class="info"><i class="fa fa-eye"></i>
30
-                        {$eyou.field.click}
31
-                    </small>
32
-                </span>
33
-            </div>
34
-        </div>
35
-        <div class="items">
36
-            <div class="art-main">
37
-                <div>
38
-
39
-                    {$eyou.field.content_5}
40
-
41
-                </div>
42
-
43
-                <div class="art-copyright br mb">
44
-                    <div>本文地址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></div>
45
-                    <div><span class="copyright">版权声明:</span>{eyou:global name='web_attr_16' /}</div>
46
-                </div>
47
-                <p class="art-tag">相关标签: <span class="padding">  </span> </p>
48
-            </div>
49
-        </div>
50
-    </div>
51
-    <!-- 广告位AD3  -->
52
-    <div class="part related">
53
-        <p class="tt"><span>相关推荐</span></p>
54
-        <div class="items">
55
-            <div class="row">
56
-
57
-
58
-                <?php
59
-                $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 ";
60
-                $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
61
-                ?>
62
-                {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
63
-                {eyou:arcview aid='$listSql.aid'}
64
-
65
-                <?php
66
-                    $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
67
-                ?>
68
-                <div class="col-xs-6 col-sm-4 col-md-3">
69
-                    <div class="item art-item transition">
70
-                        <a class="art-a" href="{$a_url}" title="{$field.title}" >
71
-                            <img class="img-cover" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
72
-                        </a>
73
-                        <h3><a class="" href="{$a_url}" title="{$field.title}" >{$field.title|msubstr=###,0,15,true}</a></h3>
74
-                        <p>{$field.seo_description|msubstr=###,0,35,true}</p>
75
-                    </div>
76
-                </div>
77
-
78
-
79
-                {/eyou:arcview}
80
-                {/eyou:sql}
81
-
82
-
83
-            </div>
84
-        </div>
85
-    </div>
21
+    {eyou:include file='/template/pc/components/detail/new.htm' /}
86 22
 </div>
87 23
 
88 24
 </div>

+ 4
- 109
template/pc/view_zczygz_zc.htm Wyświetl plik

@@ -4,7 +4,7 @@
4 4
 {eyou:include file='/template/pc/common/other/background.htm' /}
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6 6
 
7
-
7
+<div id="zc_detail">
8 8
 <div id="mask"></div>
9 9
 
10 10
 {eyou:include file='/template/pc/components/nav/style_1.htm' /}
@@ -18,118 +18,13 @@
18 18
 ?>
19 19
 
20 20
 <div class="container">
21
-    <div class="part">
22
-        <div class="bar clearfix">
23
-            <h1 class="tt"> {$eyou.field.title} </h1>
24
-            <div class="r-intro fr"> <span class="data fr"> <small class="info"><i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}</small>                     <small class="info"><i class="fa fa-eye"></i>
25
-                        {$eyou.field.click}
26
-                    </small> </span> </div>
27
-        </div>
28
-        <div class="items">
29
-            <div class="row post-single">
30
-                <div class="col-xs-12 col-sm-12 col-md-8">
31
-                    <div class="pic fl">
32
-                        <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
33
-                        <img class="img-cover" src="{$eyou.field.litpic}" alt="{$eyou.field.title}" title="{$eyou.field.title}"> </div>
34
-                    <div class="list">
35
-                        <p>文档名称:{$eyou.field.title}</p>
36
-                        <p class="cate">所属分类:<a href="" class="mcolor">资源下载</a></p>
37
-                        <p class="site">官方网址:<a href="" title="{$eyou.field.title}" >{$web_domain}{$web_url}</a></p>
38
-                        <p class="seo">
39
-
40
-                            <!--SEO查询: <a rel="nofollow" class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
41
-                            <a rel="nofollow" class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a rel="nofollow" class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
42
-
43
-                            文档简介: {$eyou.field.seo_description|msubstr=###,0,65,true}
44
-
45
-                        </p>
46
-
47
-                        <?php
48
-                        if(!empty($eyou['field']['down'])){
49
-                            ?>
50
-
51
-                            <a class="btn transition" target="_self" href="javascript:;" rel="nofollow" id="down_btn" title="{$eyou.field.title}" aid="{$eyou.field.aid}">
52
-                                下载文档
53
-                                <i class="fa fa-chevron-circle-right"></i>
54
-                            </a>
55
-
56
-                        <?php
57
-                        }else{
58
-                        ?>
59
-
60
-                            <a class="btn transition" target="_self" href="javascript:;" rel="nofollow">
61
-                                暂无文档
62
-                                <i class="fa fa-chevron-circle-right"></i>
63
-                            </a>
64
-
65
-
66
-                            <?php
67
-                        }
68
-                        ?>
69
-
70
-
71
-
72
-                    </div>
73
-                </div>
74
-            </div>
75
-        </div>
76
-    </div>
77
-    <div class="part">
78
-        <p class="tt"><span>文档介绍</span></p>
79
-        <div class="items">
80
-            <div class="art-main">
81
-                {$eyou.field.content_5}
82
-            </div>
83
-        </div>
84
-    </div>
85
-
86
-    <!-- 广告位AD3  -->
87
-    <div class="part related">
88
-        <p class="tt"><span>相似站点</span></p>
89
-        <div class="items">
90
-            <div class="row">
91 21
 
92
-
93
-
94
-
95
-                <?php
96
-
97
-
98
-                if($areaname === 0){
99
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 and area_tag_id=".$area_id;
100
-                }else{
101
-                    $where = " typeid=".$tid." and is_del=0 and status=1 and is_recom=1 and province_id=0 and area_tag_id=0";
102
-                }
103
-
104
-                //echo $where;
105
-
106
-                $sql = "select aid from ey_archives where $where order by update_time desc limit 0,4";
107
-                ?>
108
-                {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
109
-                {eyou:arcview aid='$listSql.aid'}
110
-
111
-                <?php
112
-                $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
113
-                ?>
114
-
115
-                <div class="col-xs-6 col-sm-4 col-md-3">
116
-                    <div class="item"> <a class="link" target="_self" href="javascript:;" rel="nofollow"><i class="autoleft fa fa-angle-right" title=""></i></a> <a class="a" href="{$a_url}" title="{$field.title}" > <img class="img-cover br" src="{$field.litpic}" alt="{$field.title}" title="{$field.title}">
117
-                            <h3>{$field.title|msubstr=###,0,15,true}</h3>
118
-                            <p> {$field.seo_description|msubstr=###,0,35,true}</p>
119
-                        </a> </div>
120
-                </div>
121
-
122
-                {/eyou:arcview}
123
-                {/eyou:sql}
124
-
125
-
126
-            </div>
127
-        </div>
128
-    </div>
22
+    {eyou:include file='/template/pc/components/detail/content.htm' /}
129 23
 
130 24
 </div>
131
-
25
+</div>
132 26
 
133 27
 
134 28
 {eyou:include file='/template/pc/common/include/footer.htm' /}
29
+{eyou:include file='/template/pc/common/other/down.htm' /}
135 30
 {eyou:include file='/template/pc/common/include/bottom.htm' /}

Ładowanie…
Anuluj
Zapisz