Your Name 10 månader sedan
förälder
incheckning
f65be3977e

+ 41
- 4
application/admin/controller/Custom.php Visa fil

@@ -328,18 +328,19 @@ class Custom extends Base
328 328
             $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
329 329
 
330 330
             //var_dump($post['addonFieldExt']);die;
331
+            $ext = '';
331 332
             //获取文档文件后缀
332 333
             if(!empty($post['addonFieldExt']['down_eyou_remote'])){
333 334
                 $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
334 335
                 $ext = end($file);
335 336
             }else{
336
-                $ext = '';
337
+                //$ext = '';
337 338
             }
338 339
             if(!empty($post['addonFieldExt']['down_eyou_local'])){
339 340
                 $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
340 341
                 $ext = end($file);
341 342
             }else{
342
-                $ext = '';
343
+                //$ext = '';
343 344
             }
344 345
 
345 346
             // --存储数据
@@ -416,6 +417,38 @@ class Custom extends Base
416 417
                         'number' => $num
417 418
                     ];
418 419
                     Db::name('seo_number')->insert($in_data);
420
+                }else if((int)$newData['typeid'] === 371){
421
+                    $last = Db::name('seo_number')->where([
422
+                            "type" => 10,
423
+                            "tid" => (int)$post['typeid'],
424
+                            'topid' => 0,
425
+                            'parentid' => 0,
426
+                            'area_id' => 0,
427
+                        ])->order('number desc')->find();
428
+                    if(empty($last['number'])){
429
+                        $num = 1;
430
+                    }else{
431
+                        $num = (int)$last['number'] + 1;
432
+                    }
433
+                    $in_data = [
434
+                        "type" => 10,    //产品类型
435
+                        "aid" => $aid, //实际的ID
436
+                        "tid" => (int)$post['typeid'], //属于哪个栏目的
437
+                        'is_del' => 0,
438
+                        'is_kan' => 0, // 0正常 1审核
439
+                        'status' => 1,
440
+                        'area_id' => 0,
441
+                        'topid' => 0,
442
+                        'parentid' => 0,
443
+                        'number' => $num
444
+                    ];
445
+                    Db::name('seo_number')->insert($in_data);
446
+
447
+                    //更新主记录 冗余
448
+                    Db::name('archives')
449
+                        ->where(['aid'=>$aid])
450
+                        ->update(['number'=>$num]);
451
+
419 452
                 }else if((int)$newData['typeid'] === 126 || (int)$newData['typeid'] === 825 || (int)$newData['typeid'] === 826){
420 453
                     //资料文档
421 454
                     $last = Db::name('seo_number')->where([
@@ -905,21 +938,25 @@ class Custom extends Base
905 938
             $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
906 939
 
907 940
 
941
+            $ext = '';
908 942
             //获取文档文件后缀
909 943
             if(!empty($post['addonFieldExt']['down_eyou_remote'])){
910 944
                 $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
911 945
                 $ext = end($file);
912 946
             }else{
913
-                $ext = '';
947
+               //$ext = '';
914 948
             }
915 949
 
916 950
             if(!empty($post['addonFieldExt']['down_eyou_local'])){
917 951
                 $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
918 952
                 $ext = end($file);
919 953
             }else{
920
-                $ext = '';
954
+                //$ext = '';
921 955
             }
922 956
 
957
+            //var_dump($post['addonFieldExt']);
958
+            //var_dump($ext);die;
959
+
923 960
             // --存储数据
924 961
             $newData = array(
925 962
                 'typeid'=> $typeid,

+ 91
- 0
application/api/controller/Other.php Visa fil

@@ -636,6 +636,77 @@ class Other extends Base
636 636
         }
637 637
     }
638 638
 
639
+    /*
640
+     * 标签
641
+     * https://www.zc10000.com/api/other/index10000
642
+     * 主要前提是 没有区域 只按发布时间排序就可以
643
+     */
644
+    public function index10000(){
645
+
646
+        //查询所有期刊 参考
647
+        $list = Db::name('archives')
648
+            ->where('typeid','in',[371])
649
+            ->order('add_time asc')
650
+            ->select();
651
+
652
+        //var_dump($list);
653
+        $num = 1;
654
+        foreach ($list as $index => $item){
655
+            $one = Db::name('seo_number')->where([
656
+                "type" => 10,
657
+                "aid" => $item['aid'], //实际的文档aid
658
+                //'is_del' => 0,  //目前都是未删除
659
+            ])->find();
660
+            if(!empty($one)) {
661
+                if((int)$one['number'] === $num){
662
+                    $ks = '序号正常';
663
+                }else{
664
+                    $ks = '<font style="color:red;">序号不正常</font>';
665
+                }
666
+                if((int)$item['is_del'] === 0){
667
+                    $desc = '(原记录正常)';
668
+                }else{
669
+                    $desc = '<font style="color:green;">(原记录已删除)</font>';
670
+                }
671
+                echo '文档ID:'.$item['aid'].'-'.$item['title'].'-已存在-'.$desc.'-序号为:'.$one['number'].'-'.$ks.'<br/>';
672
+                $num++;
673
+
674
+
675
+                //更新主记录
676
+                Db::name('archives')
677
+                    ->where(['aid'=>$item['aid']])
678
+                    ->update(['number'=>(int)$one['number']]);
679
+
680
+            }else{
681
+                if((int)$item['is_del'] === 0){
682
+                    $data = [
683
+                        'type' => 10,
684
+                        'tid' => $item['typeid'],
685
+                        'aid' => $item['aid'],
686
+                        'number' => $num,
687
+                        'is_del' => 0,
688
+                        //'area_id' => 0,  //非栏目
689
+                        //'topid' => 0,     //非栏目
690
+                        //'parentid' => 0    //非栏目
691
+                    ];
692
+                    $res = Db::name('seo_number')->insert($data);
693
+                    echo $item['title'].'-新增成功'.$res.'-序号为:'.$num.'<br/>';
694
+
695
+
696
+                    //更新主记录
697
+                    Db::name('archives')
698
+                        ->where(['aid'=>$item['aid']])
699
+                        ->update(['number'=>$num]);
700
+
701
+                    $num++;
702
+
703
+                }else {
704
+                    echo '<font color="blue">文档ID:'.$item['aid'].'-'.$item['title'].'-原记录已删除-不新增-且不存在序号记录表</font><br/>';
705
+                }
706
+            }
707
+        }
708
+    }
709
+
639 710
     /*
640 711
      *  处理文档  注意有省级区分
641 712
      *  发布时候可以不选 区域
@@ -4054,4 +4125,24 @@ li {
4054 4125
         }
4055 4126
     }
4056 4127
 
4128
+    /*
4129
+     * https://www.zc10000.com/api/other/iop
4130
+     */
4131
+    public function iop()
4132
+    {
4133
+        $list = Db::name('zczygz_content')
4134
+            //->where(['typeid'=>1232])
4135
+            ->select();
4136
+        foreach ($list as $key=>$item){
4137
+
4138
+            if(!empty($item['down'])){
4139
+                $file = explode('.',$item['down']);
4140
+                $ext = end($file);
4141
+
4142
+                Db::name('archives')
4143
+                    ->where(['aid'=>$item['aid']])
4144
+                    ->update(['ext'=>$ext]);
4145
+            }
4146
+        }
4147
+    }
4057 4148
 }

+ 2
- 2
template/pc/common/include/footer.htm Visa fil

@@ -60,7 +60,7 @@
60 60
         <small>我的</small>
61 61
     </a>
62 62
 </div>-->
63
-
63
+{eyou:if condition='($is_mobile !== false)'}
64 64
 <link href="https://www.zc10000.com/template/mobile/users/skin/userfont/iconfont.css" rel="stylesheet" media="screen" type="text/css">
65 65
 <div class="footer-nav">
66 66
     <a href="https://www.zc10000.com" class="nav-item" {eyou:if condition='($page=="index")'}style="color:red;{/eyou:if}">
@@ -84,7 +84,7 @@
84 84
         <div class="nav-item-b">我的</div>
85 85
     </a>
86 86
 </div>
87
-
87
+{/eyou:if}
88 88
 <?php
89 89
 /*
90 90
  * {:hookexec('Footernav/Footernav/show')}

+ 3
- 3
template/pc/common/include/tdk/tag_detail.htm Visa fil

@@ -1,4 +1,4 @@
1 1
 
2
-<title>{$tag_name}-标签-{eyou:global name='web_title' /}</title>
3
-<meta name="keywords" content="{eyou:global name='web_keywords' /}">
4
-<meta name="description" content="{eyou:global name='web_description' /}">
2
+<title>{$tag_name}评定须知【申报材料下载站】</title>
3
+<meta name="keywords" content="{$tag_name}">
4
+<meta name="description" content="{$tag_name}评定须知上【职称E家】专业资讯和职称申报辅导网站,为工程师评审提供相关的政策文件下载及解读、申报材料范本、在线评测一键匹配等服务,辅导工程师更好的提升职业等级。">

+ 3
- 3
template/pc/common/include/tdk/taglist.htm Visa fil

@@ -1,4 +1,4 @@
1 1
 
2
-<title>标签列表-{eyou:global name='web_title' /}</title>
3
-<meta name="keywords" content="{eyou:global name='web_keywords' /}">
4
-<meta name="description" content="{eyou:global name='web_description' /}">
2
+<title>职称专业汇总_职称领域一揽表</title>
3
+<meta name="keywords" content="职称专业汇总,职称专业一揽表">
4
+<meta name="description" content="职称专业汇总及职称专业一揽表下载,专业资讯和职称申报辅导网站,为工程师评审提供相关的政策文件下载及解读、申报材料范本、在线评测一键匹配等服务,辅导工程师更好的提升职业等级。">

+ 7
- 0
template/pc/common/main/param/tag_detail.htm Visa fil

@@ -4,10 +4,17 @@
4 4
     $tagid = $route_param['tagid']?(int)$route_param['tagid']:0;
5 5
     $is_mobile = isMobile();
6 6
 
7
+    $number = $tagid;
7 8
     //var_dump($route_param);die;
8 9
 
9 10
 ?>
10 11
 
12
+{eyou:sql sql="select id,aid from ey_seo_number where type=10 and number=$tagid" cachetime='3600' empty='没有数据'}
13
+{eyou:php}
14
+    $tagid = $field['aid'];
15
+{/eyou:php}
16
+{/eyou:sql}
17
+
11 18
 
12 19
 {eyou:sql sql="select aid,title from ey_archives where aid=$tagid" cachetime='3600' empty='没有数据'}
13 20
 {eyou:php}

+ 4
- 3
template/pc/components/list/style12/page/mod_6.htm Visa fil

@@ -39,7 +39,7 @@
39 39
 <?php
40 40
     //var_dump($route_param['page']);
41 41
     //计算limit属性
42
-    $pagesize = 12;
42
+    $pagesize = 200;
43 43
     if(!empty($route_param['page'])){
44 44
         $curpage = $route_param['page'];
45 45
         $start_li = $pagesize*($curpage-1); //开始位置
@@ -76,10 +76,11 @@
76 76
 
77 77
 
78 78
 
79
-{eyou:artlist idlist="$ids" titlelen='30' limit='0,12' infolen='160' orderby='update_time desc' addfields='handle_time,province_id'}
79
+{eyou:artlist idlist="$ids" titlelen='30' limit='0,200' infolen='160' orderby='update_time desc' addfields='handle_time,province_id'}
80 80
 <?php
81 81
 //var_dump($field['aid']);
82
-$ar_url = 'https://www.zc10000.com/tag'.$field['aid'];
82
+$ar_url = 'https://www.zc10000.com/tag'.$field['number'];
83
+//不存在再查询 一般存在
83 84
 ?>
84 85
 
85 86
 <div class="col-xs-6 col-sm-4 col-md-3 font-563-active-{$i}">

+ 180
- 0
template/pc/components/list/style12/page/mod_page_6.htm Visa fil

@@ -0,0 +1,180 @@
1
+<!--自定义分页开始-->
2
+{eyou:sql sql="select count(*) AS num from ey_archives where $where" cachetime='3600' empty='没有数据' id="res333"}
3
+{eyou:assign name='total_all' value='$res333.num' /}
4
+{/eyou:sql}
5
+<div class="page">
6
+    <div class="page-content">
7
+    <?php
8
+        //需要变量
9
+        $request = request();
10
+        $url = $request->url();
11
+
12
+        if (strpos($url, '-') !== false) {
13
+            $url = explode('-',$url);
14
+            $url = $url[0];
15
+        }else{
16
+
17
+        }
18
+
19
+        $total = $total_all;
20
+        $pagesize = 200;
21
+        $total_page = ceil($total/$pagesize);
22
+        //$curpage = $curpage;
23
+        $total_page_for = $total_page + 1;
24
+        $pro_page = $curpage - 1;
25
+        $pev_page = $curpage + 1;
26
+    ?>
27
+
28
+        {eyou:if condition='($is_mobile === false)'}
29
+
30
+
31
+    <div class="page-a page-pc">
32
+    {eyou:if condition='((int)$total_page > 1)'}
33
+        {eyou:if condition='((int)$curpage === 1)'}
34
+            <li><a>首页</a></li>
35
+            <li><a>上一页</a></li>
36
+        {eyou:else /}
37
+            <li><a href="{$url}">首页</a></li>
38
+            {eyou:if condition='((int)$curpage === 2)'}
39
+                <li><a href="{$url}">上一页</a></li>
40
+            {eyou:else /}
41
+                <li><a href="{$url}-{$pro_page}">上一页</a></li>
42
+            {/eyou:if}
43
+        {/eyou:if}
44
+
45
+        {eyou:for start='1' end="$total_page_for"}
46
+
47
+            {eyou:if condition='((int)$i === 1)'}
48
+                {eyou:if condition='((int)$curpage === $i)'}
49
+                    <li class="active-1"><a>{$i}</a></li>
50
+                {eyou:else /}
51
+                    <li><a href="{$url}" data-ey_fc35fdc="html" data-tmp="1">{$i}</a></li>
52
+                {/eyou:if}
53
+            {eyou:else /}
54
+                {eyou:if condition='((int)$curpage === $i)'}
55
+                    <li class="active-1"><a>{$i}</a></li>
56
+                {eyou:else /}
57
+                    <?php if($total_page > 10){ ?>
58
+
59
+                        <?php if(((int)$curpage-2)<$i && ((int)$curpage+2)>$i || ((int)$total_page-1)<$i && ((int)$total_page+1)>$i || 0<$i && 2>$i){  ?>
60
+
61
+                            <li><a href="{$url}-{$i}" data-ey_fc35fdc="html" data-tmp="1">{$i}</a></li>
62
+
63
+                        <?php }else{ ?>
64
+
65
+                            <?php if(((int)$curpage) > 3 && ((int)$curpage-2) === $i){ ?>
66
+                                <li>...</li>
67
+                            <?php } ?>
68
+
69
+                            <?php  if(((int)$curpage+2) < $total_page && ((int)$curpage+2) === $i){ ?>
70
+                                <li>...</li>
71
+                            <?php } ?>
72
+
73
+                        <?php } ?>
74
+
75
+                    <?php }else{ ?>
76
+                        <li><a href="{$url}-{$i}" data-ey_fc35fdc="html" data-tmp="1">{$i}</a></li>
77
+                    <?php } ?>
78
+                {/eyou:if}
79
+            {/eyou:if}
80
+        {/eyou:for}
81
+        {eyou:if condition='((int)$curpage === (int)$total_page)'}
82
+            <li><a>下一页</a></li>
83
+            <li><a>末页</a></li>
84
+        {eyou:else /}
85
+            <li><a href="{$url}-{$pev_page}" data-ey_fc35fdc="html" data-tmp="1">下一页</a></li>
86
+            <li><a href="{$url}-{$total_page}" data-ey_fc35fdc="html" data-tmp="1">末页</a></li>
87
+        {/eyou:if}
88
+    {/eyou:if}
89
+    </div>
90
+
91
+        {eyou:else /}
92
+
93
+        <div class="page-a page-mobile">
94
+            <div style="width:auto;float: left;">
95
+                {eyou:if condition='((int)$total_page > 1)'}
96
+                {eyou:if condition='((int)$curpage === 1)'}
97
+                <li><a>上一页</a></li>
98
+                {eyou:else /}
99
+                {eyou:if condition='((int)$curpage === 2)'}
100
+                <li><a href="{$url}">上一页</a></li>
101
+                {eyou:else /}
102
+                <li><a href="{$url}-{$pro_page}">上一页</a></li>
103
+                {/eyou:if}
104
+                {/eyou:if}
105
+            </div>
106
+                <div class="selectBox" style="width: 150px;height:30px;">
107
+                    <div class="viewBox">
108
+                        <input type="text" class="viewInput" readonly="readonly" style="width:80%;">
109
+                        <div class="btnImg" style="width:20%;text-align: center;"><img src="template/pc/images/arrow_input_down.png" alt="" style="width: 12px;"></div>
110
+                    </div>
111
+                    <ul class="optionBox" style="width:80%;">
112
+                        {eyou:for start='1' end="$total_page_for"}
113
+
114
+                        <li url="{$url}-{$i}" class="{eyou:if condition='((int)$curpage === $i)'}active-1{/eyou:if}">
115
+                            <a href="{$url}-{$i}" data-ey_fc35fdc="html" data-tmp="1">第 {$i} 页</a>
116
+                        </li>
117
+
118
+                        {/eyou:for}
119
+                    </ul>
120
+                </div>
121
+            <div style="width: auto;float: left;">
122
+                {eyou:if condition='((int)$curpage === (int)$total_page)'}
123
+                <li><a>下一页</a></li>
124
+                {eyou:else /}
125
+                <li><a href="{$url}-{$pev_page}" data-ey_fc35fdc="html" data-tmp="1">下一页</a></li>
126
+                {/eyou:if}
127
+                {/eyou:if}
128
+            </div>
129
+            <div style="clear: both;"></div>
130
+        </div>
131
+
132
+        {/eyou:if}
133
+
134
+    <div class="page-b">
135
+    共<strong>
136
+    {eyou:php}
137
+        echo $total_page;
138
+{/eyou:php}
139
+    </strong>页 <strong>{$total}</strong>条
140
+    </div>
141
+    </div>
142
+</div>
143
+
144
+<script>
145
+    $(function () {
146
+        //var view = $(".optionBox li:first").text();
147
+        var view = $(".optionBox .active-1 a").text();
148
+        $(".viewInput").val(view);
149
+    });
150
+
151
+    $(".viewBox").click(function () {
152
+        if($(".optionBox").css("display")=="none"){
153
+            $(".optionBox").show();
154
+            $(".btnImg img").attr("src","template/pc/images/arrow_input_up.png")
155
+        }else{
156
+            $(".optionBox").hide();
157
+            $(".btnImg img").attr("src","template/pc/images/arrow_input_down.png")
158
+        }
159
+    });
160
+
161
+    var checkOption = $(".optionBox li");
162
+    checkOption.click(function () {
163
+        var index = $(".optionBox li").index(this);
164
+        var indexVal = $(".optionBox li:eq("+index+") a").html();
165
+        $(".viewInput").val(indexVal);
166
+        if($(".optionBox").css("display")=="none"){
167
+            $(".optionBox").show();
168
+            $(".btnImg img").attr("src","template/pc/images/arrow_input_up.png")
169
+        }else{
170
+            $(".optionBox").hide();
171
+            $(".btnImg img").attr("src","template/pc/images/arrow_input_down.png")
172
+        }
173
+
174
+        var url = $(".optionBox li:eq("+index+")").attr('url');
175
+        location.href = 'https://www.zc10000.com' + url;
176
+
177
+    })
178
+</script>
179
+
180
+<!--自定义分页结束-->

+ 1
- 1
template/pc/components/nav/style_1.htm Visa fil

@@ -69,7 +69,7 @@
69 69
 
70 70
         {eyou:elseif condition='($page == "tag_detail")'}
71 71
             <!--文章列表页-->
72
-            标签 '{$tag_name}' 匹配结果
72
+        <a href="https://www.zc10000.com/taglist">标签列表</a> > 标签 '{$tag_name}' 匹配结果
73 73
 
74 74
         {eyou:elseif condition='($page == "taglist")'}
75 75
             <!--文章列表页-->

+ 1
- 1
template/pc/lists_zczygz_tglist.htm Visa fil

@@ -27,7 +27,7 @@
27 27
             <div class="wordpress_pages">
28 28
 
29 29
                 <ul class="pager">
30
-                    {eyou:include file='/template/pc/components/list/style12/page/mod_page.htm' /}
30
+                    {eyou:include file='/template/pc/components/list/style12/page/mod_page_6.htm' /}
31 31
                 </ul>
32 32
 
33 33
             </div>

Loading…
Avbryt
Spara