Your Name 9 months ago
parent
commit
dca549ee41

+ 258
- 0
application/api/controller/Diyajax.php View File

@@ -13,6 +13,7 @@
13 13
 
14 14
 namespace app\api\controller;
15 15
 
16
+use think\Config;
16 17
 use think\Db;
17 18
 
18 19
 class Diyajax extends Base
@@ -121,4 +122,261 @@ class Diyajax extends Base
121 122
         curl_exec($ch);
122 123
         curl_close($ch);
123 124
     }
125
+
126
+    /*
127
+     * 获取所有申报专业
128
+     *  /api/Diyajax/getZcList
129
+     */
130
+    public function getZcList()
131
+    {
132
+        $param = request()->param();
133
+        $param['id'] = (int)$param['id'];
134
+        if(!empty($param['id'])){
135
+            if($param['id'] === 10001){
136
+                //不限制
137
+                //查找
138
+                $list = Db::name('zc_position')
139
+                    ->field('id,title')
140
+                    ->where('is_del', 0)
141
+                    ->where('status', 1)
142
+                    ->select();
143
+            }else if($param['id'] === 20000) {
144
+                //全国
145
+                $list = Db::name('zc_position')
146
+                    ->field('id,title')
147
+                    ->where('type', 0)
148
+                    ->where('is_del', 0)
149
+                    ->where('status', 1)
150
+                    ->select();
151
+            }else {
152
+                //具体地区
153
+                $ids = Db::name('zc_map')
154
+                    ->where('map_id',$param['id'])
155
+                    ->where('is_del', 0)
156
+                    ->column('zc_id');
157
+                $list = Db::name('zc_position')
158
+                    ->field('id,title')
159
+                    ->where('type', 1)
160
+                    ->where('is_del', 0)
161
+                    ->where('status', 1)
162
+                    ->whereIn('id', $ids)
163
+                    ->select();
164
+            }
165
+            respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
166
+        }else{
167
+            respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
168
+        }
169
+    }
170
+
171
+    /*
172
+     * getZcDjList
173
+     * /api/Diyajax/getZcDjList
174
+     */
175
+    public function getZcDjList(){
176
+         $param = request()->param();
177
+         $param['id'] = (int)$param['id'];
178
+         if(!empty($param['id'])){
179
+            $dj_group_id = Db::name('zc_position')->where('id', $param['id'])->value('dj_group_id');
180
+            //调用等级
181
+            $list = Db::name('zcdj_position')->where('type',$dj_group_id)->select();
182
+            respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
183
+         }else{
184
+            respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
185
+         }
186
+    }
187
+
188
+    /*
189
+     * //获取毕业专业
190
+     * /api/Diyajax/getZcZyList
191
+     */
192
+    public function getZcZyList()
193
+    {
194
+        $param = request()->param();
195
+        $param['id'] = (int)$param['id'];
196
+        if(!empty($param['id'])){
197
+            $map_ids = Db::name('zc_zy')
198
+                ->where('zc_id', $param['id'])
199
+                ->where('is_del', 0)
200
+                ->column('map_id');
201
+            //调用等级
202
+            $list = Db::name('zczy_position')
203
+                ->where('id','in',$map_ids)
204
+                ->where('is_del', 0)
205
+                ->where('status', 1)
206
+                ->select();
207
+            respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
208
+        }else{
209
+            respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
210
+        }
211
+    }
212
+
213
+    public function getZcZsList()
214
+    {
215
+        $param = request()->param();
216
+        $param['id'] = (int)$param['id'];
217
+        if(!empty($param['id'])){
218
+            $map_ids = Db::name('zc_zs')
219
+                ->where('zc_id', $param['id'])
220
+                ->where('is_del', 0)
221
+                ->column('map_id');
222
+            //调用等级
223
+            $list = Db::name('zczs_position')
224
+                ->where('id','in',$map_ids)
225
+                ->where('is_del', 0)
226
+                ->where('status', 1)
227
+                ->select();
228
+            respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
229
+        }else{
230
+            respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
231
+        }
232
+    }
233
+
234
+
235
+
236
+    /*
237
+     * getZyList
238
+     * /api/Diyajax/getZyList
239
+     * 丢弃
240
+     */
241
+    public function getZyList()
242
+    {
243
+        $param = request()->param();
244
+        $param['xlid'] = (int)$param['xlid'];
245
+        $param['zcid'] = (int)$param['zcid'];
246
+        if(!empty($param['xlid']) && !empty($param['zcid'])){
247
+            $map_ids = Db::name('zc_zy')
248
+                ->where('zc_id', $param['id'])
249
+                ->where('is_del', 0)
250
+                ->column('map_id');
251
+            //调用等级
252
+            $list = Db::name('zczy_position')
253
+                ->where('id','in',$map_ids)
254
+                ->where('is_del', 0)
255
+                ->where('status', 1)
256
+                ->select();
257
+            respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
258
+        }else{
259
+            respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
260
+        }
261
+    }
262
+
263
+    /*
264
+     * 后期再加令牌
265
+     */
266
+   public function getCode()
267
+   {
268
+       $param = request()->param();
269
+       $mobile = $param['mobile'];
270
+       if (empty($mobile)){
271
+           respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
272
+       }
273
+       if (!check_mobile($mobile)) {
274
+           respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
275
+       }
276
+
277
+       /*是否允许再次发送*/
278
+       $where = [
279
+           'mobile'   => $mobile,
280
+           'source'   => 6, //$scene
281
+           'status'   => 1,
282
+           'is_use'   => 0,
283
+           'add_time' => ['>', getTime() - 120]
284
+       ];
285
+       $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
286
+       if (!empty($Result) && false == config('sms_debug')){
287
+           respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
288
+       }
289
+
290
+       $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
291
+       if (intval($Result['status']) == 1) {
292
+           //@unlink($session_file);
293
+           //$this->success('发送成功!');
294
+           respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
295
+       } else {
296
+           //$this->error($Result['msg']);
297
+           respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
298
+       }
299
+   }
300
+
301
+   /*
302
+    * 处理表单提交数据
303
+    */
304
+    public function insData()
305
+    {
306
+        $param = request()->param();
307
+
308
+        $mobile = $param['sjhm'];
309
+        if (empty($mobile)){
310
+            respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
311
+        }
312
+        if (!check_mobile($mobile)) {
313
+            respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
314
+        }
315
+
316
+        //验证码校验 $param['yzm']
317
+        //判断验证码是否存在并且是否可用
318
+        if($param['yzm'] == '0000'){
319
+            //免验证
320
+        }else {
321
+            $RecordWhere = [
322
+                'mobile' => trim($param['sjhm']),
323
+                'code' => trim($param['yzm']),
324
+                'lang' => $this->home_lang
325
+            ];
326
+            $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
327
+            if (!empty($RecordData)) {
328
+                // 验证码存在
329
+                $time = getTime();
330
+                $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
331
+                if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
332
+                    respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
333
+                } else {
334
+                    // 处理手机验证码
335
+                    $RecordWhere = [
336
+                        'source' => 1,
337
+                        'mobile' => $param['sjhm'],
338
+                        'is_use' => 0,
339
+                        'lang' => $this->home_lang
340
+                    ];
341
+                    // 更新数据
342
+                    $RecordData = [
343
+                        'is_use' => 1,
344
+                        'update_time' => $time
345
+                    ];
346
+                    Db::name('sms_log')->where($RecordWhere)->update($RecordData);
347
+                }
348
+            } else {
349
+                respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
350
+            }
351
+        }
352
+
353
+        //插入数据
354
+        $insertData = [
355
+            'yxdq' => $param['yxdq'], //预选地区
356
+            'sbzy' => $param['sbzy'], //申报专业
357
+            'sbdj' => $param['sbdj'], //申报等级
358
+            'bysj' => $param['bysj'], //毕业时间
359
+            'nl' => $param['nl'], //年龄
360
+            'xl' => $param['xl'], //学历
361
+            'xxlx' => $param['xxlx'], //学校类型
362
+            'sjhm' => $param['sjhm'], //手机号码
363
+            'ch' => $param['ch'], //称呼
364
+            'zs' => json_encode($param['zs'],JSON_UNESCAPED_UNICODE), //证书
365
+            'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
366
+            'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
367
+            'addtime' => getTime(),
368
+            'updatetime' => getTime(),
369
+            'is_del' => 0,
370
+            'status' => 1,
371
+        ];
372
+        $res_id = Db::name('zc_form')->insertGetId($insertData);
373
+        if($res_id > 0){
374
+            $str = md5($res_id.time());
375
+            $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
376
+            if($run === 1){
377
+                respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
378
+            }
379
+        }
380
+        respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
381
+    }
124 382
 }

+ 11
- 0
application/home/controller/Lists.php View File

@@ -136,6 +136,17 @@ class Lists extends Base
136 136
         $users_id = (int)session('users_id');
137 137
         $emptyhtml = $this->check_arcrank($this->eyou['field'],$users_id);
138 138
 
139
+
140
+
141
+       if($tid === 1234){
142
+           //一键测评
143
+           //开始调用数据
144
+       }
145
+
146
+
147
+
148
+
149
+        //var_dump($emptyhtml);
139 150
         // /*模板文件*/
140 151
         // $viewfile = $filename = !empty($result['templist'])
141 152
         // ? str_replace('.'.$this->view_suffix, '',$result['templist'])

+ 2
- 2
login.php View File

@@ -27,11 +27,11 @@ $url = $protocol . $domainName;
27 27
 echo $domainName; // 输出当前域名的完整URL
28 28
 
29 29
 if($domainName == 'www.zc10000.com' || $domainName == 'zc10000.com'){
30
-    header('HTTP/1.1 301 Moved Permanently');
30
+/*    header('HTTP/1.1 301 Moved Permanently');
31 31
     // 设置新的位置为主页URL
32 32
     header('Location: https://www.zc10000.com');
33 33
     // 确保之后的代码不会执行
34
-    exit();
34
+    exit();*/
35 35
 }
36 36
 
37 37
 header("Content-type:text/html;charset=utf-8");

+ 54
- 7
template/mobile/lists_yjcp_cp.htm View File

@@ -3,20 +3,67 @@
3 3
 {eyou:include file='/template/pc/common/include/top.htm' /}
4 4
 {eyou:include file='/template/pc/common/other/background.htm' /}
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6
+<!--<link href="/template/pc/plug/step/step.css" rel="stylesheet">-->
7
+
8
+<!-- CSS -->
9
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/bootstrap.min.css">
10
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/font-awesome.min.css">
11
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/form-elements.css">
12
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/style.css">
13
+
14
+<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
15
+<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
16
+<!--[if lt IE 9]>
17
+<?php
18
+/*
19
+ * <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
20
+<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
21
+ */
22
+?>
23
+<![endif]-->
24
+<style>
25
+    .breadnav{
26
+        background: #fff !important;
27
+    }
28
+    .header .container .logo{
29
+        margin:0px !important;
30
+        margin-top:0px !important;
31
+        margin-bottom:0px !important;
32
+    }
33
+    .breadnav .bread a{
34
+        color: #6b7386 !important;
35
+    }
36
+    .footer-copyright{
37
+        background: #fff !important;
38
+        margin-bottom: 0px !important;
39
+        padding-bottom: 20px !important;
40
+    }
41
+</style>
6 42
 <div id="ciping">
7 43
     <div id="mask"></div>
8
-
9 44
     {eyou:include file='/template/pc/components/nav/style_1.htm' /}
45
+    <div class="container-box"  style="overflow: hidden;">
46
+        <!-- 广告位AD4  -->
47
+        <!--<div id="StepWrapper_wrapper"></div>-->
48
+        <!--            <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>-->
10 49
 
50
+        <!--分步表单 start-->
51
+        {eyou:include file='/template/pc/components/index/step.htm' /}
52
+        <!--分步表单 end-->
53
+
54
+    </div>
55
+</div>
11 56
 
12
-    <div class="container">
13
-        <!-- 广告位AD4  -->
14 57
 
15
-        <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>
16 58
 
17 59
 
18
-    </div>
19 60
 
20
-</div>
21 61
 {eyou:include file='/template/pc/common/include/footer.htm' /}
22
-{eyou:include file='/template/pc/common/include/bottom.htm' /}
62
+{eyou:include file='/template/pc/common/include/bottom.htm' /}
63
+<?php
64
+/*
65
+ * layui step js
66
+ * eyou:include file='/template/pc/common/include/script.htm'
67
+ */
68
+?>
69
+{eyou:include file='/template/pc/common/include/step.htm' /}

+ 131
- 0
template/pc/common/include/script.htm View File

@@ -0,0 +1,131 @@
1
+<script>
2
+    layui.config({
3
+        base:'./template/pc/plug/'
4
+    }).extend({
5
+        step: 'step/step'
6
+    }).use([ 'form', 'step'], function (form, step) {
7
+
8
+        //https://gitee.com/runnningman/step-all-device
9
+        //step.getCurrent 获取当前屏幕的序号
10
+        //step.freshHeight() 可以即时刷新当前内容高度
11
+
12
+        let $ = layui.$
13
+        let protocol = {
14
+            _tpl: `
15
+                    <div style="text-align: center">
16
+                        <div>
17
+                            <i class="layui-icon layui-icon-help"></i>
18
+                            用户协议1
19
+                        </div>
20
+                        <div>
21
+                            <i class="layui-icon layui-icon-help"></i>
22
+                            用户协议2
23
+                        </div>
24
+                        <div>
25
+                            <i class="layui-icon layui-icon-help"></i>
26
+                            用户协议3
27
+                        </div>
28
+                        <button id="agree" class="layui-btn next layui-btn-sm layui-btn-normal">同意</button>
29
+                        {{#
30
+                            d.init()
31
+                        }}
32
+                    </div>
33
+                `,
34
+            ctx: {
35
+                init: () => {
36
+                    console.log('content:1')
37
+                    setTimeout(() => {
38
+                        $('#agree').on('click', e => {
39
+                            step.next()
40
+                        })
41
+                    })
42
+                }
43
+            }
44
+        }
45
+
46
+        let information = {
47
+            _tpl: `
48
+                    <div style="text-align: center; padding-right: 5em;">
49
+                        <form class="layui-form">
50
+                            <div class="layui-form-item">
51
+                                <label class="layui-form-label">用户名</label>
52
+                                <div class="layui-input-block">
53
+                                    <input type="text" class="layui-input" required
54
+                                    autocomplete="off"
55
+                                    lay-verify="required" lay-vertype="tips" name="username"
56
+                                    placeholder="填写用户名" />
57
+                                </div>
58
+                            </div>
59
+                            <div class="layui-form-item">
60
+                                <div class="layui-input-block">
61
+                                   <button type="button" class="prev layui-btn   layui-btn-primary layui-btn-sm">上页</button>
62
+                                    <button lay-submit lay-filter="demoSubmit" class="layui-btn layui-btn-sm layui-btn-normal">确定</button>
63
+                                </div>
64
+                            </div>
65
+                        </form>
66
+                        {{#
67
+                            d.init()
68
+                        }}
69
+                    </div>
70
+                `,
71
+            ctx: {
72
+                init: () => {
73
+                    console.log('content:2')
74
+                    form.on('submit(demoSubmit)', data => {
75
+                        step.next()
76
+                        return false
77
+                    })
78
+                    setTimeout(() => {
79
+                        $('.prev').on('click', e => {
80
+                            step.prev()
81
+                        })
82
+                    })
83
+
84
+                }
85
+            }
86
+        }
87
+
88
+        let result = {
89
+            _tpl: `
90
+                    <div style="text-align: center">
91
+                        <div>
92
+                            <i class="layui-icon layui-icon-ok" style="font-size: 50px; color: #5FB878;"></i>
93
+                        </div>
94
+                        <button id="again" class="layui-btn layui-btn-normal">再来一次</button>
95
+                        {{#
96
+                            d.init()
97
+                        }}
98
+                    </div>
99
+                `,
100
+            ctx: {
101
+                init: () => {
102
+                    setTimeout(() => {
103
+                        $('#again').on('click', e => {
104
+                            step.next()
105
+                        })
106
+                    })
107
+                    console.log('content:3')
108
+                }
109
+            }
110
+        }
111
+
112
+        step.run({
113
+            elem: '#StepWrapper_wrapper',
114
+            stepWidth: '16rem',
115
+            contentWidth: '18rem',
116
+            contentHeight: '30rem',
117
+            nodes: [
118
+                {
119
+                    tip: '协议',
120
+                },
121
+                {
122
+                    tip: '信息',
123
+                },
124
+                {
125
+                    tip: '结果',
126
+                }
127
+            ],
128
+            contents: [protocol, information, result]
129
+        })
130
+    })
131
+</script>

+ 279
- 0
template/pc/common/include/step.htm View File

@@ -0,0 +1,279 @@
1
+<!-- Javascript -->
2
+<?php
3
+/*
4
+ * <script src="/template/pc/js/botstrap-step/jquery-1.11.1.min.js"></script>
5
+ */
6
+?>
7
+<script src="/template/pc/js/botstrap-step/bootstrap.min.js"></script>
8
+<script src="/template/pc/js/botstrap-step/jquery.backstretch.min.js"></script>
9
+<script src="/template/pc/js/botstrap-step/retina-1.1.0.min.js"></script>
10
+<script src="/template/pc/js/botstrap-step/scripts.js"></script>
11
+
12
+<!--[if lt IE 10]>
13
+<script src="/template/pc/js/botstrap-step/placeholder.js"></script>
14
+<![endif]-->
15
+
16
+<!--时间组件-->
17
+<script type="text/javascript" src="/template/pc/js/botstrap-step/moment.min.js"></script>
18
+<script type="text/javascript" src="/template/pc/js/botstrap-step/daterangepicker.js"></script>
19
+<script>
20
+    $(function() {
21
+        $(".daterange input").each(function() {
22
+            var $this = $(this);
23
+
24
+            $this.daterangepicker({
25
+                locale : {
26
+                    "format" : "YYYY-MM-DD",// 显示格式
27
+                    "separator" : " / ",// 两个日期之间的分割线
28
+                    // 中文化
29
+                    "applyLabel" : "确定",
30
+                    "cancelLabel" : "取消",
31
+                    "fromLabel" : "开始",
32
+                    "toLabel" : "结束",
33
+                    "daysOfWeek" : [ "日", "一", "二", "三", "四", "五", "六" ],
34
+                    "monthNames" : [ "一月", "二月", "三月", "四月", "五月", "六", "七月", "八月", "九月", "十月", "十一月", "十二月" ],
35
+                    "firstDay" : 1,
36
+                    "defaultDate": new Date(),
37
+                },
38
+                showDropdowns: true,
39
+                singleDatePicker: true,
40
+                opens: 'right', //日期选择框的弹出位置
41
+            }, function(start, end, label) {
42
+                // 点击确定后的事件,下面是为了bootstrap validate得校验,
43
+                // 若未使用,可忽视
44
+                if ($this.parents("form.required-validate").length > 0) {
45
+                    var $form = $this.parents("form.required-validate");
46
+
47
+                    var name = $this.attr("name");
48
+                    if ($form.length > 0) {
49
+                        var data = $form.data('bootstrapValidator');
50
+                        data.updateStatus(name, 'NOT_VALIDATED', null)
51
+                            // Validate the field
52
+                            .validateField(name);
53
+                    }
54
+                }
55
+                // 设置最小宽度,否则显示不全
56
+            }).css("min-width", "210px").next("i").click(function() {
57
+                // 对日期的i标签增加click事件,使其在鼠标点击时可以拉出日期选择
58
+                $(this).parent().find('input').click();
59
+            });
60
+        });
61
+    });
62
+</script>
63
+
64
+<script>
65
+    //获取手机验证码
66
+    /*
67
+    erDiagram
68
+    User -->> Button: 点击
69
+    Button -->> Frontend: 发送请求
70
+    Frontend -->> Backend: 请求验证码
71
+    Backend -->> User: 发送验证码
72
+    User -->> Input: 输入验证码
73
+    Input -->> Frontend: 提交验证码
74
+    Frontend -->> Backend: 验证验证码
75
+     */
76
+
77
+    $(function(){
78
+        /**
79
+         * 点击按钮开始倒计时
80
+         * @param obj 倒计时操作的文档对象
81
+         * @param countdown 倒计时时间
82
+         */
83
+        function setTime(obj, countdown) {
84
+            if (countdown == 0) {
85
+                obj.prop('disabled',false);
86
+                obj.addClass('get-code-hover');
87
+                obj.html("获取验证码");
88
+                return;
89
+            } else {
90
+                obj.prop('disabled', 'disabled');
91
+                obj.removeClass('get-code-hover');
92
+                obj.html("重新发送(" + countdown + ")");
93
+                countdown--;
94
+            }
95
+            setTimeout(function() {
96
+                setTime(obj, countdown);
97
+            }, 1000)
98
+        };
99
+
100
+        // 使用正则表达式验证手机号码
101
+        function isValidPhoneNumber(phoneNumber) {
102
+            var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
103
+            return regex.test(phoneNumber);
104
+        }
105
+
106
+
107
+        $(document).on('click','#retrieve-code',function (){
108
+
109
+
110
+            //验证手机号码
111
+            var phoneNumber = $('#per-phone').val();
112
+            if (isValidPhoneNumber(phoneNumber)) {
113
+                console.log("手机号码有效");
114
+            } else {
115
+                console.log("手机号码无效");
116
+                $('#myModal .modal-body p').html('手机号码无效');
117
+                $('#myModal').modal('show');
118
+                return false;
119
+            }
120
+
121
+            // 显示加载状态
122
+            $('#loadingModal .visually-hidden').html('发送中...');
123
+            $('#loadingModal').modal('show');
124
+
125
+            // 点击事件调用倒计时函数
126
+            setTime($('#retrieve-code'),120);
127
+            //return false;
128
+            //请求ajax 发送短信
129
+            // 发送 AJAX 请求
130
+            $.ajax({
131
+                url: '/api/Diyajax/getCode',
132
+                data: {
133
+                    'mobile' : phoneNumber,
134
+                },
135
+                method: 'GET',
136
+                success: function(data) {
137
+                    // 请求成功后隐藏加载状态
138
+                    $('#loadingModal').modal('hide');
139
+                    // 处理返回的数据
140
+                    console.log('Ajax response:', data);
141
+
142
+                    $('#loadingModal .visually-hidden').html(data.msg);
143
+                    $('#loadingModal').modal('show');
144
+                    setTimeout(function() {
145
+                        $('#loadingModal').modal('hide');
146
+                    }, 3000); // 5秒后取消定时器
147
+
148
+                },
149
+                error: function(xhr, status, error) {
150
+                    // 请求失败后隐藏加载状态
151
+                    $('#loadingModal').modal('hide');
152
+                    // 处理错误
153
+                    console.error('Ajax error:', status, error);
154
+                }
155
+            });
156
+        });
157
+
158
+        //选择地区
159
+        $("#choose1").change(function (){
160
+
161
+            var id = $(this).val();
162
+            if(id > 0) {
163
+                //发送请求
164
+                $('#loadingModal').modal('show');
165
+                $.ajax({
166
+                    url: '/api/Diyajax/getZcList',
167
+                    method: 'POST',
168
+                    dataType: 'json', // 指定响应数据为JSON
169
+                    data: {
170
+                        id : id
171
+                    },
172
+                    success: function(data) {
173
+                        // 请求成功后隐藏加载状态
174
+                        $('#loadingModal').modal('hide');
175
+                        // 处理返回的数据
176
+                        console.log('Ajax response:', data);
177
+                        console.log(data.data);
178
+                        var html = '<option value="0">选择申报专业</option>';
179
+                        $.each(data.data,function (i,e){
180
+                            console.log(e);
181
+                            html += '<option value="'+e.id+'">'+e.title+'</option>';
182
+                        });
183
+                        $('#choose2').empty();
184
+                        $('#choose2').append(html);
185
+                    },
186
+                    error: function(xhr, status, error) {
187
+                        // 请求失败后隐藏加载状态
188
+                        $('#loadingModal').modal('hide');
189
+                        // 处理错误
190
+                        console.error('Ajax error:', status, error);
191
+                    }
192
+                });
193
+            }
194
+
195
+        });
196
+
197
+        //选择专业 触发等级
198
+        $("#choose2").change(function (){
199
+
200
+            var id = $(this).val();
201
+            if(id > 0) {
202
+                //发送请求
203
+                $('#loadingModal').modal('show');
204
+                $.ajax({
205
+                    url: '/api/Diyajax/getZcDjList',
206
+                    method: 'POST',
207
+                    dataType: 'json', // 指定响应数据为JSON
208
+                    data: {
209
+                        id : id
210
+                    },
211
+                    success: function(data) {
212
+                        // 请求成功后隐藏加载状态
213
+                        $('#loadingModal').modal('hide');
214
+                        // 处理返回的数据
215
+                        console.log('Ajax response:', data);
216
+                        console.log(data.data);
217
+                        var html = '<option value="0">选择申报等级</option>';
218
+                        $.each(data.data,function (i,e){
219
+                            console.log(e);
220
+                            html += '<option value="'+e.id+'">'+e.title+'</option>';
221
+                        });
222
+                        $('#choose3').empty();
223
+                        $('#choose3').append(html);
224
+                    },
225
+                    error: function(xhr, status, error) {
226
+                        // 请求失败后隐藏加载状态
227
+                        $('#loadingModal').modal('hide');
228
+                        // 处理错误
229
+                        console.error('Ajax error:', status, error);
230
+                    }
231
+                });
232
+            }
233
+
234
+        });
235
+
236
+        //选择学历 触发专业判断  无法进行判断
237
+        /*
238
+        $("#choose5").change(function (){
239
+            var a = $('#choose2').val();
240
+            var id = $(this).val();
241
+            if(id > 0) {
242
+                //发送请求
243
+                $('#loadingModal').modal('show');
244
+                $.ajax({
245
+                    url: '/api/Diyajax/getZyList',
246
+                    method: 'POST',
247
+                    dataType: 'json', // 指定响应数据为JSON
248
+                    data: {
249
+                        'zcid' : a,
250
+                        'xlid' : id
251
+                    },
252
+                    success: function(data) {
253
+                        // 请求成功后隐藏加载状态
254
+                        $('#loadingModal').modal('hide');
255
+                        // 处理返回的数据
256
+                        console.log('Ajax response:', data);
257
+                        console.log(data.data);
258
+                        var html = '<option value="0">选择申报等级</option>';
259
+                        $.each(data.data,function (i,e){
260
+                            console.log(e);
261
+                            html += '<option value="'+e.id+'">'+e.title+'</option>';
262
+                        });
263
+                        $('#choose3').empty();
264
+                        $('#choose3').append(html);
265
+                    },
266
+                    error: function(xhr, status, error) {
267
+                        // 请求失败后隐藏加载状态
268
+                        $('#loadingModal').modal('hide');
269
+                        // 处理错误
270
+                        console.error('Ajax error:', status, error);
271
+                    }
272
+                });
273
+            }
274
+        });*/
275
+
276
+
277
+
278
+    });
279
+</script>

+ 752
- 0
template/pc/components/index/step.htm View File

@@ -0,0 +1,752 @@
1
+
2
+<?php
3
+    $param = request()->param();
4
+    function isValidChineseMobileNumber($number) {
5
+        return preg_match('/^1\d{10}$/', $number) ? true : false;
6
+    }
7
+    if(!empty($param['p'])){
8
+        //验证手机号码
9
+        if(isValidChineseMobileNumber($param['p'])) {
10
+            $is_cha = 1;
11
+        }else{
12
+            $is_cha = 0;
13
+        }
14
+    }else{
15
+        $is_cha = 0;
16
+    }
17
+
18
+    $is_detail = 0;
19
+    if(!empty($param['h'])){
20
+        $is_cha = 1;
21
+        $is_detail = 1;
22
+
23
+        $sql = "select * from ey_zc_form where code='".$param['h']."' and status=1 and is_del=0 limit 1";
24
+
25
+    }
26
+
27
+    //缓存问题 增加时间参数即可
28
+
29
+?>
30
+
31
+{eyou:if condition='($is_detail === 1)'}
32
+    {eyou:sql sql='$sql' cachetime='3600' empty=''}
33
+        {eyou:php}
34
+            $detail = $field;
35
+        {/eyou:php}
36
+    {/eyou:sql}
37
+
38
+
39
+    <?php
40
+
41
+        //区域
42
+        if((int)$detail['yxdq'] === 10001){
43
+            $area_name = '不限制';
44
+        }else if((int)$detail['yxdq'] === 20000){
45
+            $area_name = '全国';
46
+        }else if((int)$detail['yxdq'] === 0){
47
+            $area_name = '未选';
48
+        }else{
49
+            $area_name = '';
50
+            $sql2 = "select id,name from ey_citysite where id=".$detail['yxdq'];
51
+        }
52
+
53
+        //职称
54
+        $zc_name = '';
55
+        $sql3 = "select id,title from ey_zc_position where id=".$detail['sbzy'];
56
+
57
+        //职称等级
58
+        $zc_dj = '';
59
+        $sql4 = "select id,title from ey_zcdj_position where id=".$detail['sbdj'];
60
+    ?>
61
+
62
+    {eyou:if condition='($area_name == "")'}
63
+        {eyou:sql sql='$sql2' cachetime='3600' empty=''}
64
+            {eyou:php}
65
+                $area_name = $field['name'];
66
+            {/eyou:php}
67
+        {/eyou:sql}
68
+    {/eyou:if}
69
+
70
+    {eyou:sql sql='$sql3' cachetime='3600' empty=''}
71
+        {eyou:php}
72
+            $zc_name = $field['title'];
73
+        {/eyou:php}
74
+    {/eyou:sql}
75
+
76
+    {eyou:sql sql='$sql4' cachetime='3600' empty=''}
77
+        {eyou:php}
78
+            $zc_dj = $field['title'];
79
+        {/eyou:php}
80
+    {/eyou:sql}
81
+
82
+{/eyou:if}
83
+
84
+
85
+
86
+
87
+<style>
88
+    .nav-item-b{
89
+        color: #6b7386 !important;
90
+    }
91
+    .iconfont{
92
+        color: #6b7386;
93
+    }
94
+    .nav-item:nth-child(4) .iconfont{
95
+        color: red !important;
96
+    }
97
+    .nav-item:nth-child(4) .nav-item-b{
98
+        color: red !important;
99
+    }
100
+</style>
101
+<!--time css-->
102
+<link rel="stylesheet" type="text/css" media="all" href="/template/pc/js/botstrap-step/daterangepicker.css" />
103
+<style>
104
+    /* 定位i标签在input标签内 */
105
+    .daterange i {
106
+        position: absolute;
107
+        bottom: 18px;
108
+        right: 14px;
109
+        top: auto;
110
+        cursor: pointer;
111
+    }
112
+    .daterange {
113
+        position: relative;
114
+    }
115
+    .daterangepicker button{
116
+        height: auto !important;
117
+        line-height: 1.5 !important;
118
+    }
119
+    .daterange input{
120
+        padding: 0 20px 0 20px;
121
+    }
122
+    .daterange label{
123
+        /*position: absolute;
124
+        left: 27px;
125
+        color: #888;
126
+        top: 25%;
127
+        font-size: 16px;
128
+        font-weight: 300;*/
129
+    }
130
+    .daterangepicker{
131
+
132
+    }
133
+
134
+    .checkbox-inline input{
135
+        transform: scale(1.2);
136
+    }
137
+    /* daterange i end */
138
+</style>
139
+
140
+<!-- Top menu -->
141
+<?php
142
+
143
+/*
144
+ * <nav class="navbar navbar-inverse navbar-no-bg" role="navigation" >
145
+    <div class="container">
146
+        <div class="navbar-header">
147
+            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#top-navbar-1">
148
+                <span class="sr-only">Toggle navigation</span>
149
+                <span class="icon-bar"></span>
150
+                <span class="icon-bar"></span>
151
+                <span class="icon-bar"></span>
152
+            </button>
153
+            <a class="navbar-brand" href="index.html">Bootstrap Multi Step Registration Form Template</a>
154
+        </div>
155
+        <!-- Collect the nav links, forms, and other content for toggling -->
156
+        <div class="collapse navbar-collapse" id="top-navbar-1">
157
+            <ul class="nav navbar-nav navbar-right">
158
+                <li>
159
+                <span class="li-text">
160
+                    Put some text or
161
+                </span>
162
+                    <a href="#"><strong>links</strong></a>
163
+                    <span class="li-text">
164
+                    here, or some icons:
165
+                </span>
166
+                    <span class="li-social">
167
+                    <a href="#"><i class="fa fa-facebook"></i></a>
168
+                    <a href="#"><i class="fa fa-twitter"></i></a>
169
+                    <a href="#"><i class="fa fa-envelope"></i></a>
170
+                    <a href="#"><i class="fa fa-skype"></i></a>
171
+                </span>
172
+                </li>
173
+            </ul>
174
+        </div>
175
+    </div>
176
+</nav>
177
+ */
178
+
179
+?>
180
+
181
+<!-- Top content -->
182
+<div class="top-content">
183
+
184
+    <div class="inner-bg">
185
+        <div class="container">
186
+            <div class="row">
187
+                <div class="col-sm-8 col-sm-offset-2 text" style="text-align: center;">
188
+                    <h1><strong>Bootstrap</strong> Multi Step Registration Form</h1>
189
+                    <div class="description">
190
+                        <p>
191
+
192
+                        </p>
193
+                    </div>
194
+                </div>
195
+            </div>
196
+            <div class="row">
197
+                <div class="col-sm-6 col-sm-offset-3 form-box">
198
+
199
+                    <form role="form" action="" method="post" class="registration-form">
200
+
201
+
202
+
203
+                        {eyou:if condition='($is_cha === 1)'}
204
+
205
+                        <?php
206
+                        /*
207
+                         * 符合城市地区
208
+                         * 比对每一项资料
209
+                         * 查询功能 先不管
210
+                         */
211
+                        ?>
212
+                        <fieldset>
213
+
214
+                            <div class="form-top">
215
+                                <div class="form-top-left">
216
+                                    <h3>Step 5 / 5</h3>
217
+
218
+
219
+                                    <?php
220
+                                    function hide_phone_number_regex($phone_number) {
221
+                                        return preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $phone_number);
222
+                                    }
223
+
224
+                                    //$phone = "13812345678";
225
+                                    //echo hide_phone_number_regex($phone); // 输出: 138****5678
226
+
227
+                                    ?>
228
+                                    {eyou:if condition='($is_detail === 0)'}
229
+                                        <p>查询结果展示:<br/><br/>
230
+                                            <!--编号: 202410247774<br/>-->
231
+                                            <!-- 姓名: 郑工<br/>-->
232
+                                            手机: <?php echo hide_phone_number_regex($param['p']); ?><br/>
233
+                                        </p>
234
+                                    {eyou:else /}
235
+                                        <p>匹配结果展示:<br/><br/>
236
+                                            <!--编号: 202410247774<br/>-->
237
+                                            姓名: {$detail.ch}<br/>
238
+                                            手机: <?php echo hide_phone_number_regex($detail['sjhm']); ?><br/>
239
+                                        </p>
240
+                                    {/eyou:if}
241
+                                </div>
242
+                                <div class="form-top-right">
243
+                                    <i class="fa fa-twitter"></i>
244
+                                </div>
245
+                            </div>
246
+
247
+
248
+
249
+
250
+
251
+
252
+                            <div class="form-bottom" style="padding:0 !important;background: none;">
253
+
254
+                                {eyou:if condition='($is_detail === 0)'}
255
+                                <div class="panel" style="margin-top:15px;">
256
+                                    <div class="panel-body">
257
+                                        查询最新10条结果:
258
+                                    </div>
259
+                                    <div class="panel-footer">
260
+                                        <ul class="list-group">
261
+                                            <?php
262
+                                            $sql = "select id,code,addtime,ch from ey_zc_form where sjhm='".$param['p']."' and status=1 and is_del=0 order by addtime desc limit 0,10";
263
+                                            ?>
264
+                                            {eyou:sql sql="$sql" cachetime='3600' empty='未找到相关记录' id='field'}
265
+                                            <li class="list-group-item" style="position:relative;">
266
+                                                <a href="/cp?h={$field.code}">{$field.ch}于&nbsp;{$field.addtime|MyDate="Y-m-d H:i:s",###}&nbsp;提交</a>
267
+                                                <span aria-hidden="true" style="position:absolute;right: 0px;top:12px;">&raquo;</span>
268
+                                            </li>
269
+                                            {/eyou:sql}
270
+                                        </ul>
271
+                                    </div>
272
+                                </div>
273
+                                {eyou:else /}
274
+
275
+
276
+                                <div class="well" style="margin-top:20px;">
277
+
278
+                                    预选地区: {$area_name}<br/>
279
+                                    申报专业: {$zc_name}<br/>
280
+                                    申报等级: {$zc_dj}<br/>
281
+
282
+                                </div>
283
+
284
+                                <?php
285
+                                    $xl = ['不限制','中专','高技','大专','本科','硕士','博士'];
286
+                                    $sql = 'select * from ey_zcwd_position where type='.$detail['sbzy'].' and sbdj='.$detail['sbdj'].' and is_del=0 and status=1';
287
+                                    $is_list_empty = '';
288
+                                ?>
289
+                                {eyou:sql sql="$sql" cachetime='-1' empty='' id="field"}
290
+                                <?php
291
+                                    $is_list_empty = $field['id'];
292
+                                ?>
293
+                                <div class="panel panel-primary">
294
+                                    <div class="panel-body">
295
+                                        匹配结果:  {$field.sf}/{$field.cs} 广东地区申报要求对比结果如下:
296
+                                    </div>
297
+                                    <div class="panel-footer" style="padding:3px 5px;">
298
+
299
+                                        <!--查询专业-->
300
+                                        <?php
301
+                                            $sql2 = "select * from ey_zcwe_position where type=".$field['id']." and is_del=0 and status=1";
302
+                                        ?>
303
+                                        {eyou:sql sql="$sql2" cachetime='-1' empty='' id="field2"}
304
+                                        <table class="table table-bordered" style="margin-bottom:0px;margin-top:5px;">
305
+                                            <thead>
306
+                                            <tr>
307
+                                                <th scope="col" style="text-align: center;">情况<br/>{$i}</th>
308
+                                                <th scope="col">字段<br/>信息</th>
309
+                                                <th scope="col">实际<br/>要求</th>
310
+                                                <th scope="col">填写<br/>资料</th>
311
+                                                <th scope="col">匹配<br/>结果</th>
312
+                                            </tr>
313
+                                            </thead>
314
+                                            <tbody>
315
+                                            <?php
316
+                                            //先判断学历是否符合
317
+                                            ?>
318
+                                            <tr>
319
+                                                <th scope="row">1</th>
320
+                                                <td>学历</td>
321
+                                                <td><?php echo $xl[$field2['xlyq']];?></td>
322
+                                                <td><?php echo $xl[$detail['xl']];?></td>
323
+                                                <td>
324
+                                                    <?php
325
+                                                        if($field2['xlyq'] == $detail['xl']){
326
+                                                            echo "符合";
327
+                                                        }else{
328
+                                                            echo "不符合";
329
+                                                        }
330
+                                                    ?>
331
+                                                </td>
332
+                                            </tr>
333
+                                            <tr>
334
+                                                <th scope="row">2</th>
335
+                                                <td>年龄</td>
336
+                                                <td>Thornton</td>
337
+                                                <td>@fat</td>
338
+                                            </tr>
339
+                                            <tr>
340
+                                                <th scope="row">3</th>
341
+                                                <td>毕业<br/>专业</td>
342
+                                                <td>Thornton</td>
343
+                                                <td>@fat</td>
344
+                                            </tr>
345
+                                            <tr>
346
+                                                <th scope="row">4</th>
347
+                                                <td>学校<br/>类型</td>
348
+                                                <td>Thornton</td>
349
+                                                <td>@fat</td>
350
+                                            </tr>
351
+                                            <tr>
352
+                                                <th scope="row">5</th>
353
+                                                <td>毕业<br/>时间</td>
354
+                                                <td>Thornton</td>
355
+                                                <td>@fat</td>
356
+                                            </tr>
357
+                                            <tr>
358
+                                                <th scope="row">6</th>
359
+                                                <td>前置<br/>证书</td>
360
+                                                <td>(且或)</td> <!--列出证书要求-->
361
+                                                <td>符合</td>
362
+                                            </tr>
363
+                                            <tr>
364
+                                                <th scope="row">7</th>
365
+                                                <td>综合<br/>评估</td>
366
+                                                <td colspan="3">未完全符合该项要求!</td>
367
+                                            </tr>
368
+                                            </tbody>
369
+                                        </table>
370
+                                        {/eyou:sql}
371
+                                    </div>
372
+                                </div>
373
+                                {/eyou:sql}
374
+
375
+                                <?php
376
+                                    //var_dump($is_list_empty);
377
+                                ?>
378
+                                {eyou:if condition='(empty($is_list_empty))'}
379
+                                <div class="alert alert-danger" role="alert" style="">
380
+                                    <!--<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
381
+                                    <span class="sr-only">Error:</span>-->
382
+                                    抱歉!暂时未找到相关匹配结果信息!
383
+                                </div>
384
+                                {/eyou:if}
385
+
386
+                                {/eyou:if}
387
+
388
+                                <!--<button type="button" class="btn btn-previous">上一步</button>
389
+                                <button type="button" class="btn btn-next">下一步</button>-->
390
+                                <button type="button" class="btn" onclick="location.href='https://www.zc10000.com/cp'">重新匹配</button>
391
+                                <!--<button type="button" class="btn">下载文档</button>
392
+                                <button type="button" class="btn">分享结果</button>-->
393
+
394
+                                <!--<span id="helpBlock" class="help-block">
395
+                                    点击分享本次结果<br/>
396
+                                    或<br/>
397
+                                    保存本次结果为文档下载 (生成execl功能或者word功能或者图片)<br/>
398
+                                </span>-->
399
+
400
+
401
+                            </div>
402
+
403
+                        </fieldset>
404
+
405
+
406
+
407
+
408
+                        {eyou:else /}
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+                        <?php
417
+                        /*
418
+                         * 选择地区
419
+                         * 申报专业
420
+                         * 选择等级
421
+                         */
422
+                        ?>
423
+                        <fieldset>
424
+                            <div class="form-top">
425
+                                <div class="form-top-left">
426
+                                    <h3>Step 1 / 5</h3>
427
+                                    <p>选择申报专业与等级:</p>
428
+                                </div>
429
+                                <div class="form-top-right">
430
+                                    <i class="fa fa-user"></i>
431
+                                </div>
432
+                            </div>
433
+                            <div class="form-bottom">
434
+                                <div class="form-group">
435
+                                    <!--<label class="sr-only" for="form-first-name">First name</label>
436
+                                    <input type="text" name="form-first-name" placeholder="First name..." class="form-first-name form-control" id="form-first-name">-->
437
+
438
+                                    <select class="form-control" id="choose1" name="yxdq">
439
+                                        <option value="0">选择地区(可选)</option>
440
+                                        <option value="10001">不限制</option>
441
+                                        <option value="20000">全国</option>
442
+                                        {eyou:sql sql="select id,name from ey_citysite where level=1 and status=1" cachetime='3600' empty='' id='field'}
443
+                                            <option value="{$field.id}">{$field.name}</option>
444
+                                        {/eyou:sql}
445
+                                    </select>
446
+                                </div>
447
+                                <div class="form-group">
448
+                                   <!-- <label class="sr-only" for="form-last-name">Last name</label>
449
+                                    <input type="text" name="form-last-name" placeholder="Last name..." class="form-last-name form-control" id="form-last-name">-->
450
+
451
+                                    <select class="form-control" id="choose2" name="sbzy">
452
+                                        <option value="0">选择申报专业</option>
453
+                                        {eyou:sql sql="select id,title from ey_zc_position where is_del=0 and status=1" cachetime='3600' empty='' id='field'}
454
+                                        <option value="{$field.id}">{$field.title}</option>
455
+                                        {/eyou:sql}
456
+                                    </select>
457
+
458
+                                </div>
459
+                                <div class="form-group">
460
+                                    <!--<label class="sr-only" for="form-about-yourself">About yourself</label>
461
+                                    <textarea name="form-about-yourself" placeholder="About yourself..."
462
+                                              class="form-about-yourself form-control" id="form-about-yourself"></textarea>-->
463
+                                    <select class="form-control" id="choose3" name="sbdj">
464
+                                        <option>选择申报等级</option>
465
+                                    </select>
466
+                                </div>
467
+                                <button type="button" class="btn btn-next">下一步</button>
468
+                            </div>
469
+                        </fieldset>
470
+
471
+                        <?php
472
+                        /*
473
+                         * 输入年龄
474
+                         * 选择学历
475
+                         * 输入毕业专业
476
+                         * 选择学校类型
477
+                         * 选择毕业时间
478
+                         */
479
+                        ?>
480
+                        <fieldset>
481
+                            <div class="form-top">
482
+                                <div class="form-top-left">
483
+                                    <h3>Step 2 / 5</h3>
484
+                                    <p>个人基本信息:</p>
485
+                                </div>
486
+                                <div class="form-top-right">
487
+                                    <i class="fa fa-key"></i>
488
+                                </div>
489
+                            </div>
490
+                            <div class="form-bottom">
491
+                                <div class="form-group">
492
+                                    <!--<label class="sr-only" for="form-email">Email</label>
493
+                                    <input type="text" name="form-email" placeholder="Email..." class="form-email form-control" id="form-email">-->
494
+                                    <select class="form-control" id="choose6" name="nl">
495
+                                        <option value="0">选择年龄</option>
496
+                                        {eyou:for start='18' end='80'}
497
+                                        <option value="{$i}">{$i}岁</option>
498
+                                        {/eyou:for}
499
+                                    </select>
500
+                                </div>
501
+                                <div class="form-group">
502
+                                    <!--<label class="sr-only" for="form-password">Password</label>
503
+                                    <input type="password" name="form-password" placeholder="Password..." class="form-password form-control" id="form-password">-->
504
+
505
+
506
+                                    <select class="form-control" id="choose5" name="xl">
507
+                                        <option value="0">选择学历</option>
508
+                                        <option value="1">中专</option>
509
+                                        <option value="2">高技</option>
510
+                                        <option value="3">大专</option>
511
+                                        <option value="4">本科</option>
512
+                                        <option value="5">硕士</option>
513
+                                        <option value="6">博士</option>
514
+                                    </select>
515
+                                </div>
516
+
517
+
518
+
519
+
520
+
521
+                                <div class="form-group">
522
+                                    <!--<label class="sr-only" for="form-repeat-password">Repeat password</label>
523
+                                    <input type="password" name="form-repeat-password" placeholder="Repeat password..."
524
+                                           class="form-repeat-password form-control" id="form-repeat-password">-->
525
+                                    <select class="form-control" id="choose7" name="xxlx">
526
+                                        <option value="0">选择学校类型</option>
527
+                                        <option value="1">全日制</option>
528
+                                        <option value="2">非全日制</option>
529
+                                    </select>
530
+                                </div>
531
+
532
+
533
+
534
+
535
+
536
+                                <div class="form-group" style="padding-left: 5px;">
537
+                                    <label class="col-sm-2 control-label" style="padding-left: 0;">是否以下相关毕业专业</label>
538
+                                    <div class="col-sm-10" style="padding-left: 0;" id="zys">
539
+                                        <!--先初始化证书-->
540
+                                        <!--<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;">
541
+                                            <font>建筑一级证书</font>  <font style="margin-left:15px;">3年</font>
542
+                                        </p>-->
543
+                                    </div>
544
+                                </div>
545
+
546
+                                <!--<label class="sr-only" for="form-google-plus">Google plus</label>
547
+                                    <input type="text" name="form-google-plus" placeholder="Google plus..." class="form-google-plus form-control" id="form-google-plus">-->
548
+                                <!--<div class="form-group radio-box" style="padding-left: 7px;">
549
+                                    <label class="radio-inline">
550
+                                        <input type="radio" class="form-control-radio" name="inlineRadioOptions" id="inlineRadio1" value="option1" checked> 是
551
+                                    </label>
552
+                                    <label class="radio-inline">
553
+                                        <input type="radio" class="form-control-radio" name="inlineRadioOptions" id="inlineRadio2" value="option2"> 否
554
+                                    </label>
555
+                                </div>-->
556
+
557
+                                <div class="form-group">
558
+                                    <!--<label class="sr-only" for="form-password">Password</label>
559
+                                    <input type="password" name="form-password" placeholder="Password..." class="form-password form-control" id="form-password">-->
560
+                                    <div class="form-group daterange">
561
+                                        <label style="margin-left: 5px;">选择毕业时间</label>
562
+                                        <!--range_date-->
563
+                                        <input class="form-control" name="bysj" type="text" value="">
564
+                                        <i class="fa fa-calendar"></i>
565
+                                    </div>
566
+                                </div>
567
+
568
+                                <!--<label class="sr-only" for="form-repeat-password">Repeat password</label>
569
+                                    <input type="password" name="form-repeat-password" placeholder="Repeat password..."
570
+                                           class="form-repeat-password form-control" id="form-repeat-password">-->
571
+                                <!--<div class="form-group">
572
+                                    <input type="text" name="form-first-name" value="默认" placeholder="请输入毕业专业" class="form-first-name form-control" id="form-first-name">
573
+                                </div>-->
574
+
575
+                                <button type="button" class="btn btn-previous">上一步</button>
576
+                                <button type="button" class="btn btn-next">下一步</button>
577
+                            </div>
578
+                        </fieldset>
579
+
580
+                        <?php
581
+                        /* (使用是否 问答形式)
582
+                         * 已有证书
583
+                         * 时间年限
584
+                         * 工作要求 (结果展示)
585
+                         * 其他条件 (结果展示)
586
+                         */
587
+                        ?>
588
+
589
+                        <fieldset>
590
+                            <div class="form-top">
591
+                                <div class="form-top-left">
592
+                                    <h3>Step 3 / 5</h3>
593
+                                    <p>前置条件咨询:</p>
594
+                                </div>
595
+                                <div class="form-top-right">
596
+                                    <i class="fa fa-twitter"></i>
597
+                                </div>
598
+                            </div>
599
+                            <div class="form-bottom">
600
+                                <!--<div class="form-group">
601
+                                    <label class="sr-only" for="form-facebook">Facebook</label>
602
+                                    <input type="text" name="form-facebook" placeholder="Facebook..." class="form-facebook form-control" id="form-facebook">
603
+                                </div>
604
+                                <div class="form-group">
605
+                                    <label class="sr-only" for="form-twitter">Twitter</label>
606
+                                    <input type="text" name="form-twitter" placeholder="Twitter..." class="form-twitter form-control" id="form-twitter">
607
+                                </div>-->
608
+                                <?php
609
+                                //没法判断要不要 是在匹配结果去展示
610
+                                ?>
611
+                                <!--<div class="form-group">
612
+                                    <label class="col-sm-2 control-label" style="padding-left: 0;">本申报专业是否要求前置证书</label>
613
+                                    <div class="col-sm-10" style="padding-left: 0;">
614
+                                        <p class="form-control-static">
615
+                                            <font style="color:red;">需要</font>
616
+                                        </p>
617
+                                        <p class="form-control-static">
618
+                                            <font style="color:red;">不需要</font>
619
+                                        </p>
620
+                                        <p class="form-control-static">
621
+                                            <font style="color:red;">请点击进行下一步</font>
622
+                                        </p>
623
+                                    </div>
624
+                                </div>-->
625
+                                <div class="form-group">
626
+                                    <label class="col-sm-2 control-label" style="padding-left: 0;">选择相关证书以及时间年限</label>
627
+                                    <div class="col-sm-10" style="padding-left: 0;" id="zss">
628
+                                        <!--<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;">
629
+                                                <font>建筑一级证书</font>  <font style="margin-left:15px;">3年</font>
630
+                                        </p>
631
+                                        <p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;">
632
+                                            <font>建筑一级证书</font>  <font style="margin-left:15px;">3年</font>
633
+                                        </p>-->
634
+                                    </div>
635
+                                </div>
636
+
637
+                                <!--<label class="sr-only" for="form-google-plus">Google plus</label>
638
+                                    <input type="text" name="form-google-plus" placeholder="Google plus..." class="form-google-plus form-control" id="form-google-plus">-->
639
+                                <!--<div class="form-group radio-box">
640
+                                    <label class="radio-inline">
641
+                                        <input type="radio" class="form-control-radio" name="inlineRadioOptions2" id="inlineRadio12" value="option1" checked> 有
642
+                                    </label>
643
+                                    <label class="radio-inline">
644
+                                        <input type="radio" class="form-control-radio" name="inlineRadioOptions2" id="inlineRadio22" value="option2"> 无
645
+                                    </label>
646
+                                </div>-->
647
+                                <button type="button" class="btn btn-previous">上一步</button>
648
+                                <button type="button" class="btn btn-next">下一步</button>
649
+                            </div>
650
+                        </fieldset>
651
+
652
+
653
+                        <?php
654
+                        /*
655
+                         * 姓名
656
+                         * 手机号码
657
+                         * 验证码
658
+                         * 获取结果-提交表单
659
+                         */
660
+                        ?>
661
+                        <fieldset>
662
+                            <div class="form-top">
663
+                                <div class="form-top-left">
664
+                                    <h3>Step 4 / 5</h3>
665
+                                    <p>安全验证:</p>
666
+                                </div>
667
+                                <div class="form-top-right">
668
+                                    <i class="fa fa-twitter"></i>
669
+                                </div>
670
+                            </div>
671
+                            <div class="form-bottom">
672
+                                <div class="form-group">
673
+                                    <input type="text" name="ch" value="" placeholder="请输入称呼" class="form-first-name form-control" id="per-name">
674
+                                </div>
675
+                                <div class="form-group">
676
+                                    <input type="text" name="sjhm" value="" placeholder="请输入手机号码" class="form-first-name form-control" id="per-phone">
677
+                                </div>
678
+                                <div class="form-group" style="position:relative;">
679
+                                    <input type="text" name="yzm" value="" placeholder="请输入验证码" class="form-first-name form-control" id="per-code" style="width:60%;">
680
+                                    <button type="button" class="btn btn-default get-code get-code-hover email-retrieve-code" id="retrieve-code" style="width: 38%;position:absolute;right: 0;top: 0;background-color:#19b9e7 !important;padding: 0 7px;">获取验证码</button>
681
+                                </div>
682
+                                <input type="hidden" name="__mobile_1_token__" value=""  id="token" />
683
+                                <button type="button" class="btn btn-previous">上一步</button>
684
+                                <button type="submit" class="btn">获取结果</button>
685
+                            </div>
686
+                        </fieldset>
687
+
688
+
689
+                        {/eyou:if}
690
+                    </form>
691
+
692
+                </div>
693
+            </div>
694
+        </div>
695
+    </div>
696
+
697
+</div>
698
+<div class="col-sm-6 col-sm-offset-3 form-box" id="sele-box" style="padding-top:0;padding-bottom: 50px;text-align: left;margin-top:-60px;">
699
+    <form class="form-inline">
700
+        <div class="form-group" style="text-align: left;">
701
+            <label for="exampleInputFile" style="color: #fff;">如果您提交过资料信息:</label>
702
+            <label class="sr-only" for="form-first-name">请输入手机号码</label>
703
+            <input type="text" name="p" placeholder="请输入手机号码" class="form-first-name form-control" id="form-first-name" value="<?php echo $param['p']?$param['p']:$detail['sjhm']; ?>">
704
+        </div>
705
+        <button type="submit" class="btn btn-default btn-sm">立即查询</button>
706
+    </form>
707
+</div>
708
+
709
+<style>
710
+    @media (min-width: 768px){
711
+        #sele-box{
712
+            text-align: center !important;
713
+            margin-top:-100px !important;
714
+            padding-bottom: 70px !important;
715
+        }
716
+    }
717
+</style>
718
+
719
+
720
+
721
+<!-- 加载状态 -->
722
+<div class="modal" id="loadingModal" tabindex="-1">
723
+    <div class="modal-dialog">
724
+        <div class="modal-content">
725
+            <div class="modal-body text-center">
726
+                <div class="spinner-border text-primary" role="status">
727
+                    <span class="visually-hidden">Loading...</span>
728
+                </div>
729
+            <!--    <p>Loading...</p>-->
730
+            </div>
731
+        </div>
732
+    </div>
733
+</div>
734
+
735
+
736
+<div class="modal fade" tabindex="-1" role="dialog" id="myModal">
737
+    <div class="modal-dialog" role="document">
738
+        <div class="modal-content">
739
+            <div class="modal-header" style="padding: 8px;">
740
+                <button type="button" class="close" data-dismiss="modal" aria-label="Close" style="font-size: 24px;"><span aria-hidden="true">&times;</span></button>
741
+                <h4 class="modal-title">提示</h4>
742
+            </div>
743
+            <div class="modal-body">
744
+                <p>One fine body&hellip;</p>
745
+            </div>
746
+            <div class="modal-footer">
747
+                <button type="button" class="btn btn-default" data-dismiss="modal" style="height: 30px;line-height: 30px;">关闭</button>
748
+                <!--<button type="button" class="btn btn-primary">Save changes</button>-->
749
+            </div>
750
+        </div><!-- /.modal-content -->
751
+    </div><!-- /.modal-dialog -->
752
+</div><!-- /.modal -->

+ 5
- 0
template/pc/js/botstrap-step/bootstrap.min.css
File diff suppressed because it is too large
View File


+ 7
- 0
template/pc/js/botstrap-step/bootstrap.min.js
File diff suppressed because it is too large
View File


BIN
template/pc/js/botstrap-step/cb10b62fa1f10acac99339fcfc511914_1.jpg View File


+ 410
- 0
template/pc/js/botstrap-step/daterangepicker.css View File

@@ -0,0 +1,410 @@
1
+.daterangepicker {
2
+    position: absolute;
3
+    color: inherit;
4
+    background-color: #fff;
5
+    border-radius: 4px;
6
+    border: 1px solid #ddd;
7
+    width: 278px;
8
+    max-width: none;
9
+    padding: 0;
10
+    margin-top: 7px;
11
+    top: 100px;
12
+    left: 20px;
13
+    z-index: 3001;
14
+    display: none;
15
+    font-family: arial;
16
+    font-size: 15px;
17
+    line-height: 1em;
18
+}
19
+
20
+.daterangepicker:before, .daterangepicker:after {
21
+    position: absolute;
22
+    display: inline-block;
23
+    border-bottom-color: rgba(0, 0, 0, 0.2);
24
+    content: '';
25
+}
26
+
27
+.daterangepicker:before {
28
+    top: -7px;
29
+    border-right: 7px solid transparent;
30
+    border-left: 7px solid transparent;
31
+    border-bottom: 7px solid #ccc;
32
+}
33
+
34
+.daterangepicker:after {
35
+    top: -6px;
36
+    border-right: 6px solid transparent;
37
+    border-bottom: 6px solid #fff;
38
+    border-left: 6px solid transparent;
39
+}
40
+
41
+.daterangepicker.opensleft:before {
42
+    right: 9px;
43
+}
44
+
45
+.daterangepicker.opensleft:after {
46
+    right: 10px;
47
+}
48
+
49
+.daterangepicker.openscenter:before {
50
+    left: 0;
51
+    right: 0;
52
+    width: 0;
53
+    margin-left: auto;
54
+    margin-right: auto;
55
+}
56
+
57
+.daterangepicker.openscenter:after {
58
+    left: 0;
59
+    right: 0;
60
+    width: 0;
61
+    margin-left: auto;
62
+    margin-right: auto;
63
+}
64
+
65
+.daterangepicker.opensright:before {
66
+    left: 9px;
67
+}
68
+
69
+.daterangepicker.opensright:after {
70
+    left: 10px;
71
+}
72
+
73
+.daterangepicker.drop-up {
74
+    margin-top: -7px;
75
+}
76
+
77
+.daterangepicker.drop-up:before {
78
+    top: initial;
79
+    bottom: -7px;
80
+    border-bottom: initial;
81
+    border-top: 7px solid #ccc;
82
+}
83
+
84
+.daterangepicker.drop-up:after {
85
+    top: initial;
86
+    bottom: -6px;
87
+    border-bottom: initial;
88
+    border-top: 6px solid #fff;
89
+}
90
+
91
+.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
92
+    float: none;
93
+}
94
+
95
+.daterangepicker.single .drp-selected {
96
+    display: none;
97
+}
98
+
99
+.daterangepicker.show-calendar .drp-calendar {
100
+    display: block;
101
+}
102
+
103
+.daterangepicker.show-calendar .drp-buttons {
104
+    display: block;
105
+}
106
+
107
+.daterangepicker.auto-apply .drp-buttons {
108
+    display: none;
109
+}
110
+
111
+.daterangepicker .drp-calendar {
112
+    display: none;
113
+    max-width: 270px;
114
+}
115
+
116
+.daterangepicker .drp-calendar.left {
117
+    padding: 8px 0 8px 8px;
118
+}
119
+
120
+.daterangepicker .drp-calendar.right {
121
+    padding: 8px;
122
+}
123
+
124
+.daterangepicker .drp-calendar.single .calendar-table {
125
+    border: none;
126
+}
127
+
128
+.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
129
+    color: #fff;
130
+    border: solid black;
131
+    border-width: 0 2px 2px 0;
132
+    border-radius: 0;
133
+    display: inline-block;
134
+    padding: 3px;
135
+}
136
+
137
+.daterangepicker .calendar-table .next span {
138
+    transform: rotate(-45deg);
139
+    -webkit-transform: rotate(-45deg);
140
+}
141
+
142
+.daterangepicker .calendar-table .prev span {
143
+    transform: rotate(135deg);
144
+    -webkit-transform: rotate(135deg);
145
+}
146
+
147
+.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
148
+    white-space: nowrap;
149
+    text-align: center;
150
+    vertical-align: middle;
151
+    min-width: 32px;
152
+    width: 32px;
153
+    height: 24px;
154
+    line-height: 24px;
155
+    font-size: 12px;
156
+    border-radius: 4px;
157
+    border: 1px solid transparent;
158
+    white-space: nowrap;
159
+    cursor: pointer;
160
+}
161
+
162
+.daterangepicker .calendar-table {
163
+    border: 1px solid #fff;
164
+    border-radius: 4px;
165
+    background-color: #fff;
166
+}
167
+
168
+.daterangepicker .calendar-table table {
169
+    width: 100%;
170
+    margin: 0;
171
+    border-spacing: 0;
172
+    border-collapse: collapse;
173
+}
174
+
175
+.daterangepicker td.available:hover, .daterangepicker th.available:hover {
176
+    background-color: #eee;
177
+    border-color: transparent;
178
+    color: inherit;
179
+}
180
+
181
+.daterangepicker td.week, .daterangepicker th.week {
182
+    font-size: 80%;
183
+    color: #ccc;
184
+}
185
+
186
+.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
187
+    background-color: #fff;
188
+    border-color: transparent;
189
+    color: #999;
190
+}
191
+
192
+.daterangepicker td.in-range {
193
+    background-color: #ebf4f8;
194
+    border-color: transparent;
195
+    color: #000;
196
+    border-radius: 0;
197
+}
198
+
199
+.daterangepicker td.start-date {
200
+    border-radius: 4px 0 0 4px;
201
+}
202
+
203
+.daterangepicker td.end-date {
204
+    border-radius: 0 4px 4px 0;
205
+}
206
+
207
+.daterangepicker td.start-date.end-date {
208
+    border-radius: 4px;
209
+}
210
+
211
+.daterangepicker td.active, .daterangepicker td.active:hover {
212
+    background-color: #357ebd;
213
+    border-color: transparent;
214
+    color: #fff;
215
+}
216
+
217
+.daterangepicker th.month {
218
+    width: auto;
219
+}
220
+
221
+.daterangepicker td.disabled, .daterangepicker option.disabled {
222
+    color: #999;
223
+    cursor: not-allowed;
224
+    text-decoration: line-through;
225
+}
226
+
227
+.daterangepicker select.monthselect, .daterangepicker select.yearselect {
228
+    font-size: 12px;
229
+    padding: 1px;
230
+    height: auto;
231
+    margin: 0;
232
+    cursor: default;
233
+}
234
+
235
+.daterangepicker select.monthselect {
236
+    margin-right: 2%;
237
+    width: 56%;
238
+}
239
+
240
+.daterangepicker select.yearselect {
241
+    width: 40%;
242
+}
243
+
244
+.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
245
+    width: 50px;
246
+    margin: 0 auto;
247
+    background: #eee;
248
+    border: 1px solid #eee;
249
+    padding: 2px;
250
+    outline: 0;
251
+    font-size: 12px;
252
+}
253
+
254
+.daterangepicker .calendar-time {
255
+    text-align: center;
256
+    margin: 4px auto 0 auto;
257
+    line-height: 30px;
258
+    position: relative;
259
+}
260
+
261
+.daterangepicker .calendar-time select.disabled {
262
+    color: #ccc;
263
+    cursor: not-allowed;
264
+}
265
+
266
+.daterangepicker .drp-buttons {
267
+    clear: both;
268
+    text-align: right;
269
+    padding: 8px;
270
+    border-top: 1px solid #ddd;
271
+    display: none;
272
+    line-height: 12px;
273
+    vertical-align: middle;
274
+}
275
+
276
+.daterangepicker .drp-selected {
277
+    display: inline-block;
278
+    font-size: 12px;
279
+    padding-right: 8px;
280
+}
281
+
282
+.daterangepicker .drp-buttons .btn {
283
+    margin-left: 8px;
284
+    font-size: 12px;
285
+    font-weight: bold;
286
+    padding: 4px 8px;
287
+}
288
+
289
+.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
290
+    border-right: 1px solid #ddd;
291
+}
292
+
293
+.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
294
+    border-left: 1px solid #ddd;
295
+}
296
+
297
+.daterangepicker.show-ranges.rtl .drp-calendar.right {
298
+    border-right: 1px solid #ddd;
299
+}
300
+
301
+.daterangepicker.show-ranges.ltr .drp-calendar.left {
302
+    border-left: 1px solid #ddd;
303
+}
304
+
305
+.daterangepicker .ranges {
306
+    float: none;
307
+    text-align: left;
308
+    margin: 0;
309
+}
310
+
311
+.daterangepicker.show-calendar .ranges {
312
+    margin-top: 8px;
313
+}
314
+
315
+.daterangepicker .ranges ul {
316
+    list-style: none;
317
+    margin: 0 auto;
318
+    padding: 0;
319
+    width: 100%;
320
+}
321
+
322
+.daterangepicker .ranges li {
323
+    font-size: 12px;
324
+    padding: 8px 12px;
325
+    cursor: pointer;
326
+}
327
+
328
+.daterangepicker .ranges li:hover {
329
+    background-color: #eee;
330
+}
331
+
332
+.daterangepicker .ranges li.active {
333
+    background-color: #08c;
334
+    color: #fff;
335
+}
336
+
337
+/*  Larger Screen Styling */
338
+@media (min-width: 564px) {
339
+    .daterangepicker {
340
+        width: auto;
341
+    }
342
+
343
+    .daterangepicker .ranges ul {
344
+        width: 140px;
345
+    }
346
+
347
+    .daterangepicker.single .ranges ul {
348
+        width: 100%;
349
+    }
350
+
351
+    .daterangepicker.single .drp-calendar.left {
352
+        clear: none;
353
+    }
354
+
355
+    .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
356
+        float: left;
357
+    }
358
+
359
+    .daterangepicker {
360
+        direction: ltr;
361
+        text-align: left;
362
+    }
363
+
364
+    .daterangepicker .drp-calendar.left {
365
+        clear: left;
366
+        margin-right: 0;
367
+    }
368
+
369
+    .daterangepicker .drp-calendar.left .calendar-table {
370
+        border-right: none;
371
+        border-top-right-radius: 0;
372
+        border-bottom-right-radius: 0;
373
+    }
374
+
375
+    .daterangepicker .drp-calendar.right {
376
+        margin-left: 0;
377
+    }
378
+
379
+    .daterangepicker .drp-calendar.right .calendar-table {
380
+        border-left: none;
381
+        border-top-left-radius: 0;
382
+        border-bottom-left-radius: 0;
383
+    }
384
+
385
+    .daterangepicker .drp-calendar.left .calendar-table {
386
+        padding-right: 8px;
387
+    }
388
+
389
+    .daterangepicker .ranges, .daterangepicker .drp-calendar {
390
+        float: left;
391
+    }
392
+}
393
+
394
+@media (min-width: 730px) {
395
+    .daterangepicker .ranges {
396
+        width: auto;
397
+    }
398
+
399
+    .daterangepicker .ranges {
400
+        float: left;
401
+    }
402
+
403
+    .daterangepicker.rtl .ranges {
404
+        float: right;
405
+    }
406
+
407
+    .daterangepicker .drp-calendar.left {
408
+        clear: none !important;
409
+    }
410
+}

+ 1578
- 0
template/pc/js/botstrap-step/daterangepicker.js
File diff suppressed because it is too large
View File


+ 4
- 0
template/pc/js/botstrap-step/font-awesome.min.css
File diff suppressed because it is too large
View File


+ 105
- 0
template/pc/js/botstrap-step/form-elements.css View File

@@ -0,0 +1,105 @@
1
+
2
+input[type="text"],
3
+input[type="password"],
4
+textarea,
5
+textarea.form-control {
6
+    height: 50px;
7
+    margin: 0;
8
+    padding: 0 24px;
9
+    vertical-align: middle;
10
+    background: #f8f8f8;
11
+    border: 3px solid #ddd;
12
+    font-family: 'Roboto', sans-serif;
13
+    font-size: 16px;
14
+    font-weight: 300;
15
+    line-height: 50px;
16
+    color: #888;
17
+    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
18
+    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
19
+    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
20
+}
21
+
22
+.radio-box{
23
+    margin-bottom: 25px;
24
+}
25
+.radio-box .radio-inline{
26
+    font-size: 16px;
27
+    margin-right:15px;
28
+}
29
+input[type="radio"].form-control-radio{
30
+    height: 17px;
31
+    transform: scale(1.5);
32
+}
33
+
34
+
35
+select.form-control {
36
+    height: 50px;
37
+    margin: 0;
38
+    padding: 0 20px;
39
+    vertical-align: middle;
40
+    background: #f8f8f8;
41
+    border: 3px solid #ddd;
42
+    font-family: 'Roboto', sans-serif;
43
+    font-size: 16px;
44
+    font-weight: 300;
45
+    line-height: 50px;
46
+    color: #888;
47
+    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
48
+    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
49
+    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
50
+}
51
+
52
+
53
+textarea,
54
+textarea.form-control {
55
+    padding-top: 10px;
56
+    padding-bottom: 10px;
57
+    line-height: 30px;
58
+}
59
+
60
+input[type="text"]:focus,
61
+input[type="password"]:focus,
62
+textarea:focus,
63
+textarea.form-control:focus {
64
+    outline: 0;
65
+    background: #fff;
66
+    border: 3px solid #ccc;
67
+    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
68
+}
69
+
70
+input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder,
71
+textarea:-moz-placeholder, textarea.form-control:-moz-placeholder { color: #888; }
72
+
73
+input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder,
74
+textarea:-ms-input-placeholder, textarea.form-control:-ms-input-placeholder { color: #888; }
75
+
76
+input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder,
77
+textarea::-webkit-input-placeholder, textarea.form-control::-webkit-input-placeholder { color: #888; }
78
+
79
+
80
+
81
+button.btn {
82
+    height: 50px;
83
+    margin: 0;
84
+    padding: 0 20px;
85
+    vertical-align: middle;
86
+    background: #19b9e7;
87
+    border: 0;
88
+    font-family: 'Roboto', sans-serif;
89
+    font-size: 16px;
90
+    font-weight: 300;
91
+    line-height: 50px;
92
+    color: #fff;
93
+    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
94
+    text-shadow: none;
95
+    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
96
+    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
97
+}
98
+
99
+button.btn:hover { opacity: 0.6; color: #fff; }
100
+
101
+button.btn:active { outline: 0; opacity: 0.6; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
102
+
103
+button.btn:focus { outline: 0; opacity: 0.6; background: #19b9e7; color: #fff; }
104
+
105
+button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 0.6; background: #19b9e7; color: #fff; }

+ 4
- 0
template/pc/js/botstrap-step/jquery-1.11.1.min.js
File diff suppressed because it is too large
View File


+ 4
- 0
template/pc/js/botstrap-step/jquery.backstretch.min.js View File

@@ -0,0 +1,4 @@
1
+/*! Backstretch - v2.0.4 - 2013-06-19
2
+* http://srobbin.com/jquery-plugins/backstretch/
3
+* Copyright (c) 2013 Scott Robbin; Licensed MIT */
4
+(function(a,d,p){a.fn.backstretch=function(c,b){(c===p||0===c.length)&&a.error("No images were supplied for Backstretch");0===a(d).scrollTop()&&d.scrollTo(0,0);return this.each(function(){var d=a(this),g=d.data("backstretch");if(g){if("string"==typeof c&&"function"==typeof g[c]){g[c](b);return}b=a.extend(g.options,b);g.destroy(!0)}g=new q(this,c,b);d.data("backstretch",g)})};a.backstretch=function(c,b){return a("body").backstretch(c,b).data("backstretch")};a.expr[":"].backstretch=function(c){return a(c).data("backstretch")!==p};a.fn.backstretch.defaults={centeredX:!0,centeredY:!0,duration:5E3,fade:0};var r={left:0,top:0,overflow:"hidden",margin:0,padding:0,height:"100%",width:"100%",zIndex:-999999},s={position:"absolute",display:"none",margin:0,padding:0,border:"none",width:"auto",height:"auto",maxHeight:"none",maxWidth:"none",zIndex:-999999},q=function(c,b,e){this.options=a.extend({},a.fn.backstretch.defaults,e||{});this.images=a.isArray(b)?b:[b];a.each(this.images,function(){a("<img />")[0].src=this});this.isBody=c===document.body;this.$container=a(c);this.$root=this.isBody?l?a(d):a(document):this.$container;c=this.$container.children(".backstretch").first();this.$wrap=c.length?c:a('<div class="backstretch"></div>').css(r).appendTo(this.$container);this.isBody||(c=this.$container.css("position"),b=this.$container.css("zIndex"),this.$container.css({position:"static"===c?"relative":c,zIndex:"auto"===b?0:b,background:"none"}),this.$wrap.css({zIndex:-999998}));this.$wrap.css({position:this.isBody&&l?"fixed":"absolute"});this.index=0;this.show(this.index);a(d).on("resize.backstretch",a.proxy(this.resize,this)).on("orientationchange.backstretch",a.proxy(function(){this.isBody&&0===d.pageYOffset&&(d.scrollTo(0,1),this.resize())},this))};q.prototype={resize:function(){try{var a={left:0,top:0},b=this.isBody?this.$root.width():this.$root.innerWidth(),e=b,g=this.isBody?d.innerHeight?d.innerHeight:this.$root.height():this.$root.innerHeight(),j=e/this.$img.data("ratio"),f;j>=g?(f=(j-g)/2,this.options.centeredY&&(a.top="-"+f+"px")):(j=g,e=j*this.$img.data("ratio"),f=(e-b)/2,this.options.centeredX&&(a.left="-"+f+"px"));this.$wrap.css({width:b,height:g}).find("img:not(.deleteable)").css({width:e,height:j}).css(a)}catch(h){}return this},show:function(c){if(!(Math.abs(c)>this.images.length-1)){var b=this,e=b.$wrap.find("img").addClass("deleteable"),d={relatedTarget:b.$container[0]};b.$container.trigger(a.Event("backstretch.before",d),[b,c]);this.index=c;clearInterval(b.interval);b.$img=a("<img />").css(s).bind("load",function(f){var h=this.width||a(f.target).width();f=this.height||a(f.target).height();a(this).data("ratio",h/f);a(this).fadeIn(b.options.speed||b.options.fade,function(){e.remove();b.paused||b.cycle();a(["after","show"]).each(function(){b.$container.trigger(a.Event("backstretch."+this,d),[b,c])})});b.resize()}).appendTo(b.$wrap);b.$img.attr("src",b.images[c]);return b}},next:function(){return this.show(this.index<this.images.length-1?this.index+1:0)},prev:function(){return this.show(0===this.index?this.images.length-1:this.index-1)},pause:function(){this.paused=!0;return this},resume:function(){this.paused=!1;this.next();return this},cycle:function(){1<this.images.length&&(clearInterval(this.interval),this.interval=setInterval(a.proxy(function(){this.paused||this.next()},this),this.options.duration));return this},destroy:function(c){a(d).off("resize.backstretch orientationchange.backstretch");clearInterval(this.interval);c||this.$wrap.remove();this.$container.removeData("backstretch")}};var l,f=navigator.userAgent,m=navigator.platform,e=f.match(/AppleWebKit\/([0-9]+)/),e=!!e&&e[1],h=f.match(/Fennec\/([0-9]+)/),h=!!h&&h[1],n=f.match(/Opera Mobi\/([0-9]+)/),t=!!n&&n[1],k=f.match(/MSIE ([0-9]+)/),k=!!k&&k[1];l=!((-1<m.indexOf("iPhone")||-1<m.indexOf("iPad")||-1<m.indexOf("iPod"))&&e&&534>e||d.operamini&&"[object OperaMini]"==={}.toString.call(d.operamini)||n&&7458>t||-1<f.indexOf("Android")&&e&&533>e||h&&6>h||"palmGetResource"in d&&e&&534>e||-1<f.indexOf("MeeGo")&&-1<f.indexOf("NokiaBrowser/8.5.0")||k&&6>=k)})(jQuery,window);

+ 1
- 0
template/pc/js/botstrap-step/moment.min.js
File diff suppressed because it is too large
View File


+ 8
- 0
template/pc/js/botstrap-step/placeholder.js View File

@@ -0,0 +1,8 @@
1
+
2
+jQuery(document).ready(function(){
3
+
4
+    $('.registration-form input[type="text"], .registration-form input[type="password"], .registration-form textarea').each(function() {
5
+        $(this).val( $(this).attr('placeholder') );
6
+    });
7
+
8
+});

+ 10
- 0
template/pc/js/botstrap-step/retina-1.1.0.min.js View File

@@ -0,0 +1,10 @@
1
+/*!
2
+ * Retina.js v1.1.0
3
+ *
4
+ * Copyright 2013 Imulus, LLC
5
+ * Released under the MIT license
6
+ *
7
+ * Retina.js is an open source script that makes it easy to serve
8
+ * high-resolution images to devices with retina displays.
9
+ */
10
+(function(){var root=typeof exports=="undefined"?window:exports;var config={check_mime_type:true};root.Retina=Retina;function Retina(){}Retina.configure=function(options){if(options==null)options={};for(var prop in options)config[prop]=options[prop]};Retina.init=function(context){if(context==null)context=root;var existing_onload=context.onload||new Function;context.onload=function(){var images=document.getElementsByTagName("img"),retinaImages=[],i,image;for(i=0;i<images.length;i++){image=images[i];retinaImages.push(new RetinaImage(image))}existing_onload()}};Retina.isRetina=function(){var mediaQuery="(-webkit-min-device-pixel-ratio: 1.5),                      (min--moz-device-pixel-ratio: 1.5),                      (-o-min-device-pixel-ratio: 3/2),                      (min-resolution: 1.5dppx)";if(root.devicePixelRatio>1)return true;if(root.matchMedia&&root.matchMedia(mediaQuery).matches)return true;return false};root.RetinaImagePath=RetinaImagePath;function RetinaImagePath(path,at_2x_path){this.path=path;if(typeof at_2x_path!=="undefined"&&at_2x_path!==null){this.at_2x_path=at_2x_path;this.perform_check=false}else{this.at_2x_path=path.replace(/\.\w+$/,function(match){return"@2x"+match});this.perform_check=true}}RetinaImagePath.confirmed_paths=[];RetinaImagePath.prototype.is_external=function(){return!!(this.path.match(/^https?\:/i)&&!this.path.match("//"+document.domain))};RetinaImagePath.prototype.check_2x_variant=function(callback){var http,that=this;if(this.is_external()){return callback(false)}else if(!this.perform_check&&typeof this.at_2x_path!=="undefined"&&this.at_2x_path!==null){return callback(true)}else if(this.at_2x_path in RetinaImagePath.confirmed_paths){return callback(true)}else{http=new XMLHttpRequest;http.open("HEAD",this.at_2x_path);http.onreadystatechange=function(){if(http.readyState!=4){return callback(false)}if(http.status>=200&&http.status<=399){if(config.check_mime_type){var type=http.getResponseHeader("Content-Type");if(type==null||!type.match(/^image/i)){return callback(false)}}RetinaImagePath.confirmed_paths.push(that.at_2x_path);return callback(true)}else{return callback(false)}};http.send()}};function RetinaImage(el){this.el=el;this.path=new RetinaImagePath(this.el.getAttribute("src"),this.el.getAttribute("data-at2x"));var that=this;this.path.check_2x_variant(function(hasVariant){if(hasVariant)that.swap()})}root.RetinaImage=RetinaImage;RetinaImage.prototype.swap=function(path){if(typeof path=="undefined")path=this.path.at_2x_path;var that=this;function load(){if(!that.el.complete){setTimeout(load,5)}else{that.el.setAttribute("width",that.el.offsetWidth);that.el.setAttribute("height",that.el.offsetHeight);that.el.setAttribute("src",path)}}load()};if(Retina.isRetina()){Retina.init(root)}})();

+ 297
- 0
template/pc/js/botstrap-step/scripts.js View File

@@ -0,0 +1,297 @@
1
+
2
+jQuery(document).ready(function() {
3
+
4
+    /*
5
+        Fullscreen background
6
+    */
7
+    $.backstretch("/template/pc/js/botstrap-step/cb10b62fa1f10acac99339fcfc511914_1.jpg");
8
+
9
+    $('#top-navbar-1').on('shown.bs.collapse', function(){
10
+        $.backstretch("resize");
11
+    });
12
+    $('#top-navbar-1').on('hidden.bs.collapse', function(){
13
+        $.backstretch("resize");
14
+    });
15
+
16
+    /*
17
+        Form
18
+    */
19
+    $('.registration-form fieldset:first-child').fadeIn('slow');
20
+
21
+    $('.registration-form input[type="text"], .registration-form input[type="password"], .registration-form textarea').on('focus', function() {
22
+        $(this).removeClass('input-error');
23
+    });
24
+
25
+    // next step
26
+    $('.registration-form .btn-next').on('click', function() {
27
+
28
+
29
+        //校验字段
30
+        var a = $('#choose2').val();
31
+        console.log(a);
32
+        if(a == 0){
33
+            $('#myModal .modal-body p').html('请选择申报专业');
34
+            $('#myModal').modal('show');
35
+            return false;
36
+        }
37
+
38
+        var b = $('#choose3').val();
39
+        console.log(a);
40
+        if(b == 0){
41
+            $('#myModal .modal-body p').html('请选择申报等级');
42
+            $('#myModal').modal('show');
43
+            return false;
44
+        }
45
+
46
+
47
+        console.log($(this).index());
48
+        //调用专业
49
+        if($(this).index() == 3) {
50
+            $('#loadingModal').modal('show');
51
+            $.ajax({
52
+                url: '/api/Diyajax/getZcZyList',
53
+                method: 'POST',
54
+                dataType: 'json', // 指定响应数据为JSON
55
+                data: {
56
+                    id: a
57
+                },
58
+                success: function (data) {
59
+                    // 请求成功后隐藏加载状态
60
+                    $('#loadingModal').modal('hide');
61
+                    // 处理返回的数据
62
+                    console.log('Ajax response:', data);
63
+                    console.log(data.data);
64
+                    var html = '';
65
+                    $.each(data.data, function (i, e) {
66
+                        console.log(e);
67
+                        html += '<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;"><label class="checkbox-inline"><input type="checkbox" name="zy[]" id="inlineCheckbox'+i+'" value="'+e.id+'"> '+e.title+'</label></p>';
68
+                    });
69
+
70
+                    if(html == ''){
71
+                        html = '暂无相关要求';
72
+                    }
73
+
74
+                    $('#zys').empty();
75
+                    $('#zys').append(html);
76
+                },
77
+                error: function (xhr, status, error) {
78
+                    // 请求失败后隐藏加载状态
79
+                    $('#loadingModal').modal('hide');
80
+                    // 处理错误
81
+                    console.error('Ajax error:', status, error);
82
+                }
83
+            });
84
+        }
85
+
86
+        //填完个人资料 点击下一步
87
+        if($(this).index() == 6) {
88
+
89
+            var b = $('#choose6').val();
90
+            console.log(a);
91
+            if(b == 0){
92
+                $('#myModal .modal-body p').html('请选择年龄');
93
+                $('#myModal').modal('show');
94
+                return false;
95
+            }
96
+            var b = $('#choose5').val();
97
+            console.log(a);
98
+            if(b == 0){
99
+                $('#myModal .modal-body p').html('请选择学历');
100
+                $('#myModal').modal('show');
101
+                return false;
102
+            }
103
+            var b = $('#choose7').val();
104
+            console.log(a);
105
+            if(b == 0){
106
+                $('#myModal .modal-body p').html('请选择学校类型');
107
+                $('#myModal').modal('show');
108
+                return false;
109
+            }
110
+
111
+
112
+            //调用证书
113
+            $('#loadingModal').modal('show');
114
+            $.ajax({
115
+                url: '/api/Diyajax/getZcZsList',
116
+                method: 'POST',
117
+                dataType: 'json', // 指定响应数据为JSON
118
+                data: {
119
+                    id: a
120
+                },
121
+                success: function (data) {
122
+                    // 请求成功后隐藏加载状态
123
+                    $('#loadingModal').modal('hide');
124
+                    // 处理返回的数据
125
+                    console.log('Ajax response:', data);
126
+                    console.log(data.data);
127
+                    var html = '';
128
+
129
+                    var options = '';
130
+                    for(i=1;i<=30;i++) {
131
+                        options += '<option value="'+i+'">'+i+'年</option>';
132
+                    }
133
+
134
+                    $.each(data.data, function (i, e) {
135
+                        console.log(e);
136
+                        html += '<p class="form-control-static" style="min-height:20px;padding-top:5px;padding-bottom:0px;"><label class="checkbox-inline"><input type="checkbox" name="zs[]" id="inlineCheckbox' + i + '" value="' + e.id + '"> ' + e.title + '</label><font style="margin-left:15px;"><select className="form-control-s" name="zsnx[]">'+options+'</select></font></p>';
137
+                    });
138
+
139
+                    if(html == ''){
140
+                        html = '暂无相关要求,请进行下一步';
141
+                    }
142
+
143
+                    $('#zss').empty();
144
+                    $('#zss').append(html);
145
+                },
146
+                error: function (xhr, status, error) {
147
+                    // 请求失败后隐藏加载状态
148
+                    $('#loadingModal').modal('hide');
149
+                    // 处理错误
150
+                    console.error('Ajax error:', status, error);
151
+                }
152
+            });
153
+        }
154
+
155
+        if($(this).index() == 2) {
156
+            //获取表单令牌 不能用接口直接过去 得用内部调用
157
+            /*$('#loadingModal').modal('show');
158
+            $.ajax({
159
+                url: '/api/v1/api/get_token',
160
+                method: 'POST',
161
+                dataType: 'json', // 指定响应数据为JSON
162
+                data: {},
163
+                success: function (data) {
164
+                    // 请求成功后隐藏加载状态
165
+                    $('#loadingModal').modal('hide');
166
+                    // 处理返回的数据
167
+                    console.log('Ajax response:', data);
168
+                    console.log(data.data);
169
+
170
+                    $('#token').val(data.value);
171
+                },
172
+                error: function (xhr, status, error) {
173
+                    // 请求失败后隐藏加载状态
174
+                    $('#loadingModal').modal('hide');
175
+                    // 处理错误
176
+                    console.error('Ajax error:', status, error);
177
+                }
178
+            });*/
179
+        }
180
+
181
+
182
+        //继续下一屏切换
183
+        var parent_fieldset = $(this).parents('fieldset');
184
+        var next_step = true;
185
+
186
+        parent_fieldset.find('input[type="text"], input[type="password"], textarea').each(function() {
187
+            if( $(this).val() == "" ) {
188
+                $(this).addClass('input-error');
189
+                next_step = false;
190
+            }
191
+            else {
192
+                $(this).removeClass('input-error');
193
+            }
194
+        });
195
+
196
+        if( next_step ) {
197
+            parent_fieldset.fadeOut(400, function() {
198
+                $(this).next().fadeIn();
199
+            });
200
+        }
201
+
202
+    });
203
+
204
+    // previous step
205
+    $('.registration-form .btn-previous').on('click', function() {
206
+        $(this).parents('fieldset').fadeOut(400, function() {
207
+            $(this).prev().fadeIn();
208
+        });
209
+    });
210
+
211
+    // submit
212
+    $('.registration-form').on('submit', function(e) {
213
+
214
+        /*$(this).find('input[type="text"], input[type="password"], textarea').each(function() {
215
+            if( $(this).val() == "" ) {
216
+                e.preventDefault();
217
+                $(this).addClass('input-error');
218
+            }
219
+            else {
220
+                $(this).removeClass('input-error');
221
+            }
222
+        });*/
223
+
224
+        function isValidPhoneNumber(phoneNumber) {
225
+            var regex = /^1[3-9]\d{9}$/; // 中国手机号码正则表达式,以1开头,第二位是3-9,后面跟着9位数字
226
+            return regex.test(phoneNumber);
227
+        }
228
+
229
+        //开始手动验证
230
+        var a = $('#per-name').val();
231
+        var b = $('#per-phone').val();
232
+        var c = $('#per-code').val();
233
+
234
+        if(a == ''){
235
+            $('#myModal .modal-body p').html('请输入您的称呼');
236
+            $('#myModal').modal('show');
237
+            return false;
238
+        }
239
+        if(b == ''){
240
+            $('#myModal .modal-body p').html('请输入您的手机号码');
241
+            $('#myModal').modal('show');
242
+            return false;
243
+        }
244
+        console.log(isValidPhoneNumber(b));
245
+        if(isValidPhoneNumber(b) === false){
246
+            $('#myModal .modal-body p').html('请输入正确的手机号码格式');
247
+            $('#myModal').modal('show');
248
+            return false;
249
+        }
250
+        if(c == ''){
251
+            $('#myModal .modal-body p').html('请输入验证码');
252
+            $('#myModal').modal('show');
253
+            return false;
254
+        }
255
+
256
+        //发送表单信息到后台
257
+        $('#loadingModal .visually-hidden').html('获取结果中...');
258
+        $('#loadingModal').modal('show');
259
+        var formData = $('.registration-form').serializeArray();
260
+        console.log(formData);
261
+        $.ajax({
262
+            url: '/api/Diyajax/insData',
263
+            method: 'POST',
264
+            dataType: 'json', // 指定响应数据为JSON
265
+            data: formData,
266
+            success: function(data) {
267
+                // 请求成功后隐藏加载状态
268
+                $('#loadingModal').modal('hide');
269
+                // 处理返回的数据
270
+                console.log('Ajax response:', data);
271
+
272
+                $('#loadingModal .visually-hidden').html(data.msg);
273
+                $('#loadingModal').modal('show');
274
+
275
+                if(data.code == 0){
276
+                    setTimeout(function() {
277
+                        $('#loadingModal').modal('hide');
278
+                    }, 3000); // 5秒后取消定时器
279
+                }else{
280
+                    //成功
281
+                    setTimeout(function() {
282
+                        $('#loadingModal').modal('hide');
283
+                        //跳转到结果页
284
+                        location.href = 'https://www.zc10000.com/cp?h='+data.data.code;
285
+                    }, 2000); // 5秒后取消定时器
286
+                }
287
+            },
288
+            error: function(xhr, status, error) {
289
+                // 请求失败后隐藏加载状态
290
+                $('#loadingModal').modal('hide');
291
+                // 处理错误
292
+                console.error('Ajax error:', status, error);
293
+            }
294
+        });
295
+        return false;
296
+    });
297
+});

+ 237
- 0
template/pc/js/botstrap-step/style.css View File

@@ -0,0 +1,237 @@
1
+/*
2
+body {
3
+    font-family: 'Roboto', sans-serif;
4
+    font-size: 16px;
5
+    font-weight: 300;
6
+    color: #888;
7
+    line-height: 30px;
8
+    text-align: center;
9
+}
10
+
11
+strong { font-weight: 500; }
12
+
13
+a, a:hover, a:focus {
14
+    color: #19b9e7;
15
+    text-decoration: none;
16
+    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
17
+}
18
+
19
+h1, h2 {
20
+    margin-top: 10px;
21
+    font-size: 38px;
22
+    font-weight: 100;
23
+    color: #555;
24
+    line-height: 50px;
25
+}
26
+
27
+h3 {
28
+    font-size: 22px;
29
+    font-weight: 300;
30
+    color: #555;
31
+    line-height: 30px;
32
+}
33
+
34
+img { max-width: 100%; }
35
+*/
36
+
37
+::-moz-selection { background: #19b9e7; color: #fff; text-shadow: none; }
38
+::selection { background: #19b9e7; color: #fff; text-shadow: none; }
39
+
40
+.btn-link-1 {
41
+    display: inline-block;
42
+    height: 50px;
43
+    margin: 0 5px;
44
+    padding: 16px 20px 0 20px;
45
+    background: #19b9e7;
46
+    font-size: 16px;
47
+    font-weight: 300;
48
+    line-height: 16px;
49
+    color: #fff;
50
+    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
51
+}
52
+.btn-link-1:hover, .btn-link-1:focus, .btn-link-1:active { outline: 0; opacity: 0.6; color: #fff; }
53
+
54
+.btn-link-2 {
55
+    display: inline-block;
56
+    height: 50px;
57
+    margin: 0 5px;
58
+    padding: 15px 20px 0 20px;
59
+    background: rgba(0, 0, 0, 0.3);
60
+    border: 1px solid #fff;
61
+    font-size: 16px;
62
+    font-weight: 300;
63
+    line-height: 16px;
64
+    color: #fff;
65
+    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
66
+}
67
+.btn-link-2:hover, .btn-link-2:focus,
68
+.btn-link-2:active, .btn-link-2:active:focus { outline: 0; opacity: 0.6; background: rgba(0, 0, 0, 0.3); color: #fff; }
69
+
70
+
71
+/***** Top menu *****/
72
+
73
+.navbar {
74
+    padding-top: 10px;
75
+    background: #333;
76
+    background: rgba(51, 51, 51, 0.3);
77
+    border: 0;
78
+    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
79
+}
80
+.navbar.navbar-no-bg { background: none; }
81
+
82
+ul.navbar-nav {
83
+    font-size: 16px;
84
+    color: #fff;
85
+}
86
+
87
+.navbar-inverse ul.navbar-nav li { padding-top: 8px; padding-bottom: 8px; }
88
+
89
+.navbar-inverse ul.navbar-nav li .li-text { opacity: 0.8; }
90
+
91
+.navbar-inverse ul.navbar-nav li a { display: inline; padding: 0; color: #fff; }
92
+.navbar-inverse ul.navbar-nav li a:hover { color: #fff; opacity: 1; border-bottom: 1px dotted #fff; }
93
+.navbar-inverse ul.navbar-nav li a:focus { color: #fff; outline: 0; opacity: 1; border-bottom: 1px dotted #fff; }
94
+
95
+.navbar-inverse ul.navbar-nav li .li-social a {
96
+    margin: 0 5px;
97
+    font-size: 28px;
98
+    vertical-align: middle;
99
+}
100
+.navbar-inverse ul.navbar-nav li .li-social a:hover,
101
+.navbar-inverse ul.navbar-nav li .li-social a:focus { border: 0; color: #19b9e7; }
102
+
103
+.navbar-brand {
104
+    width: 123px;
105
+    background: url(../img/logo.png) left center no-repeat;
106
+    text-indent: -99999px;
107
+}
108
+
109
+
110
+/***** Top content *****/
111
+
112
+.inner-bg {
113
+    padding: 40px 0 170px 0;
114
+}
115
+
116
+.top-content .text {
117
+    color: #fff;
118
+}
119
+
120
+.top-content .text h1 { color: #fff; }
121
+
122
+.top-content .description {
123
+    margin: 20px 0 10px 0;
124
+}
125
+
126
+.top-content .description p { opacity: 0.8; }
127
+
128
+.top-content .description a {
129
+    color: #fff;
130
+}
131
+.top-content .description a:hover,
132
+.top-content .description a:focus { border-bottom: 1px dotted #fff; }
133
+
134
+.top-content .top-big-link {
135
+    margin-top: 35px;
136
+}
137
+
138
+.form-box {
139
+    padding-top: 40px;
140
+}
141
+
142
+.form-top {
143
+    overflow: hidden;
144
+    padding: 0 25px 15px 25px;
145
+    background: #fff;
146
+    -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0;
147
+    text-align: left;
148
+}
149
+
150
+.form-top-left {
151
+    float: left;
152
+    width: 75%;
153
+    padding-top: 25px;
154
+}
155
+
156
+.form-top-left h3 { margin-top: 0; }
157
+
158
+.form-top-right {
159
+    float: left;
160
+    width: 25%;
161
+    padding-top: 5px;
162
+    font-size: 66px;
163
+    color: #ddd;
164
+    line-height: 100px;
165
+    text-align: right;
166
+}
167
+
168
+.form-bottom {
169
+    padding: 25px 25px 30px 25px;
170
+    background: #eee;
171
+    -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px;
172
+    text-align: left;
173
+}
174
+
175
+form .form-bottom textarea {
176
+    height: 100px;
177
+}
178
+
179
+form .form-bottom button.btn {
180
+    min-width: 105px;
181
+}
182
+
183
+form .form-bottom .input-error {
184
+    border-color: #19b9e7;
185
+}
186
+
187
+form.registration-form fieldset {
188
+    display: none;
189
+}
190
+
191
+
192
+/***** Media queries *****/
193
+
194
+@media (min-width: 992px) and (max-width: 1199px) {}
195
+
196
+@media (min-width: 768px) and (max-width: 991px) {}
197
+
198
+@media (max-width: 767px) {
199
+
200
+    .navbar { padding-top: 0; }
201
+    .navbar.navbar-no-bg { background: #333; background: rgba(51, 51, 51, 0.9); }
202
+    .navbar-brand { height: 60px; margin-left: 15px; }
203
+    .navbar-collapse { border: 0; }
204
+    .navbar-toggle { margin-top: 12px; }
205
+
206
+    .inner-bg { padding: 40px 0 110px 0; }
207
+    .top-content .top-big-link { margin-top: 25px; }
208
+    .top-content .top-big-link a.btn { margin-top: 10px; }
209
+
210
+    .form-bottom { padding-bottom: 25px; }
211
+    form .form-bottom button.btn { margin-bottom: 5px; }
212
+
213
+}
214
+
215
+@media (max-width: 415px) {
216
+
217
+    h1, h2 { font-size: 32px; }
218
+
219
+}
220
+
221
+
222
+/* Retina-ize images/icons */
223
+
224
+@media
225
+only screen and (-webkit-min-device-pixel-ratio: 2),
226
+only screen and (   min--moz-device-pixel-ratio: 2),
227
+only screen and (     -o-min-device-pixel-ratio: 2/1),
228
+only screen and (        min-device-pixel-ratio: 2),
229
+only screen and (                min-resolution: 192dpi),
230
+only screen and (                min-resolution: 2dppx) {
231
+
232
+    /* logo */
233
+    .navbar-brand {
234
+        background-image: url(../img/logo@2x.png) !important; background-repeat: no-repeat !important; background-size: 123px 49px !important;
235
+    }
236
+
237
+}

+ 11
- 0
template/pc/js/scrollable.js View File

@@ -0,0 +1,11 @@
1
+/*!
2
+ * jQuery Tools v1.2.5 - The missing UI library for the Web
3
+ * 
4
+ * scrollable/scrollable.js
5
+ * 
6
+ * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
7
+ * 
8
+ * http://flowplayer.org/tools/
9
+ * 
10
+ */
11
+(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.scrollable={conf:{activeClass:"active",circular:!1,clonedClass:"cloned",disabledClass:"disabled",easing:"swing",initialIndex:0,item:null,items:".items",keyboard:!0,mousewheel:!1,next:".next",prev:".prev",speed:400,vertical:!1,touch:!0,wheelSpeed:0}};function b(a,b){var c=parseInt(a.css(b),10);if(c)return c;var d=a[0].currentStyle;return d&&d.width&&parseInt(d.width,10)}function c(b,c){var d=a(c);return d.length<2?d:b.parent().find(c)}var d;function e(b,e){var f=this,g=b.add(f),h=b.children(),i=0,j=e.vertical;d||(d=f),h.length>1&&(h=a(e.items,b)),a.extend(f,{getConf:function(){return e},getIndex:function(){return i},getSize:function(){return f.getItems().size()},getNaviButtons:function(){return m.add(n)},getRoot:function(){return b},getItemWrap:function(){return h},getItems:function(){return h.children(e.item).not("."+e.clonedClass)},move:function(a,b){return f.seekTo(i+a,b)},next:function(a){return f.move(1,a)},prev:function(a){return f.move(-1,a)},begin:function(a){return f.seekTo(0,a)},end:function(a){return f.seekTo(f.getSize()-1,a)},focus:function(){d=f;return f},addItem:function(b){b=a(b),e.circular?(h.children("."+e.clonedClass+":last").before(b),h.children("."+e.clonedClass+":first").replaceWith(b.clone().addClass(e.clonedClass))):h.append(b),g.trigger("onAddItem",[b]);return f},seekTo:function(b,c,k){b.jquery||(b*=1);if(e.circular&&b===0&&i==-1&&c!==0)return f;if(!e.circular&&b<0||b>f.getSize()||b<-1)return f;var l=b;b.jquery?b=f.getItems().index(b):l=f.getItems().eq(b);var m=a.Event("onBeforeSeek");if(!k){g.trigger(m,[b,c]);if(m.isDefaultPrevented()||!l.length)return f}var n=j?{top:-l.position().top}:{left:-l.position().left};i=b,d=f,c===undefined&&(c=e.speed),h.animate(n,c,e.easing,k||function(){g.trigger("onSeek",[b])});return f}}),a.each(["onBeforeSeek","onSeek","onAddItem"],function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}});if(e.circular){var k=f.getItems().slice(-1).clone().prependTo(h),l=f.getItems().eq(1).clone().appendTo(h);k.add(l).addClass(e.clonedClass),f.onBeforeSeek(function(a,b,c){if(!a.isDefaultPrevented()){if(b==-1){f.seekTo(k,c,function(){f.end(0)});return a.preventDefault()}b==f.getSize()&&f.seekTo(l,c,function(){f.begin(0)})}}),f.seekTo(0,0,function(){})}var m=c(b,e.prev).click(function(){f.prev()}),n=c(b,e.next).click(function(){f.next()});!e.circular&&f.getSize()>1&&(f.onBeforeSeek(function(a,b){setTimeout(function(){a.isDefaultPrevented()||(m.toggleClass(e.disabledClass,b<=0),n.toggleClass(e.disabledClass,b>=f.getSize()-1))},1)}),e.initialIndex||m.addClass(e.disabledClass)),e.mousewheel&&a.fn.mousewheel&&b.mousewheel(function(a,b){if(e.mousewheel){f.move(b<0?1:-1,e.wheelSpeed||50);return!1}});if(e.touch){var o={};h[0].ontouchstart=function(a){var b=a.touches[0];o.x=b.clientX,o.y=b.clientY},h[0].ontouchmove=function(a){if(a.touches.length==1&&!h.is(":animated")){var b=a.touches[0],c=o.x-b.clientX,d=o.y-b.clientY;f[j&&d>0||!j&&c>0?"next":"prev"](),a.preventDefault()}}}e.keyboard&&a(document).bind("keydown.scrollable",function(b){if(e.keyboard&&!b.altKey&&!b.ctrlKey&&!a(b.target).is(":input")){if(e.keyboard!="static"&&d!=f)return;var c=b.keyCode;if(j&&(c==38||c==40)){f.move(c==38?-1:1);return b.preventDefault()}if(!j&&(c==37||c==39)){f.move(c==37?-1:1);return b.preventDefault()}}}),e.initialIndex&&f.seekTo(e.initialIndex,0,function(){})}a.fn.scrollable=function(b){var c=this.data("scrollable");if(c)return c;b=a.extend({},a.tools.scrollable.conf,b),this.each(function(){c=new e(a(this),b),a(this).data("scrollable",c)});return b.api?c:this}})(jQuery);

+ 56
- 3
template/pc/lists_yjcp_cp.htm View File

@@ -3,14 +3,67 @@
3 3
 {eyou:include file='/template/pc/common/include/top.htm' /}
4 4
 {eyou:include file='/template/pc/common/other/background.htm' /}
5 5
 {eyou:include file='/template/pc/common/include/header.htm' /}
6
+<!--<link href="/template/pc/plug/step/step.css" rel="stylesheet">-->
6 7
 
8
+<!-- CSS -->
9
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/bootstrap.min.css">
10
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/font-awesome.min.css">
11
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/form-elements.css">
12
+<link rel="stylesheet" href="/template/pc/js/botstrap-step/style.css">
13
+
14
+<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
15
+<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
16
+<!--[if lt IE 9]>
17
+<?php
18
+/*
19
+ * <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
20
+<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
21
+ */
22
+?>
23
+<![endif]-->
24
+<style>
25
+    .breadnav{
26
+        background: #fff !important;
27
+    }
28
+    .header .container .logo{
29
+        margin:0px !important;
30
+        margin-top:0px !important;
31
+        margin-bottom:0px !important;
32
+    }
33
+    .breadnav .bread a{
34
+        color: #6b7386 !important;
35
+    }
36
+    .footer-copyright{
37
+        background: #fff !important;
38
+        margin-bottom: 0px !important;
39
+        padding-bottom: 20px !important;
40
+    }
41
+</style>
7 42
 <div id="ciping">
8 43
         <div id="mask"></div>
9 44
         {eyou:include file='/template/pc/components/nav/style_1.htm' /}
10
-        <div class="container">
45
+        <div class="container-box"  style="overflow: hidden;">
11 46
             <!-- 广告位AD4  -->
12
-            <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>
47
+            <!--<div id="StepWrapper_wrapper"></div>-->
48
+            <!--            <p>本站正在开发一建测评软件,输入学历、区域、专业、毕业时间、专业名称、申报名称及等级,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地费用参考,敬请期待!</p>-->
49
+
50
+            <!--分步表单 start-->
51
+            {eyou:include file='/template/pc/components/index/step.htm' /}
52
+            <!--分步表单 end-->
53
+
13 54
         </div>
14 55
 </div>
56
+
57
+
58
+
59
+
60
+
15 61
 {eyou:include file='/template/pc/common/include/footer.htm' /}
16
-{eyou:include file='/template/pc/common/include/bottom.htm' /}
62
+{eyou:include file='/template/pc/common/include/bottom.htm' /}
63
+<?php
64
+/*
65
+ * layui step js
66
+ * eyou:include file='/template/pc/common/include/script.htm'
67
+ */
68
+?>
69
+{eyou:include file='/template/pc/common/include/step.htm' /}

+ 62
- 0
template/pc/plug/step/step.css View File

@@ -0,0 +1,62 @@
1
+#StepWrapper_wrapper {
2
+    display:flex;
3
+    flex-flow: column;
4
+    align-items: center;
5
+    justify-content: center;
6
+}
7
+
8
+#StepWrapper {
9
+    width: 100%;
10
+    display: inline-flex;
11
+    justify-content: center;
12
+    padding-bottom: 1.1rem;
13
+    margin-bottom: 1.1rem;
14
+}
15
+
16
+#StepWrapper_content {
17
+    width: 100%;
18
+}
19
+
20
+.s-step{
21
+    display: inline-flex;
22
+    align-items: center;
23
+    justify-content: center;
24
+}
25
+
26
+.s-step > .s-circle {
27
+    border: 0.125rem solid #1E9FFF;
28
+    border-radius: 100%;
29
+    display: flex;
30
+    align-items: center;
31
+    justify-content: center;
32
+    width: 1.5rem;
33
+    height: 1.5rem;
34
+    position: relative;
35
+}
36
+
37
+.s-step > .s-circle > .tip {
38
+    position: absolute;
39
+    top: 1.5rem;
40
+    text-align: center;
41
+}
42
+
43
+.s-step > .s-line {
44
+    border: 0.0625rem solid #1E9FFF;
45
+}
46
+
47
+.s-step > .active {
48
+    background:  #1E9FFF;
49
+    color: #1E9FFF;
50
+}
51
+
52
+.s-step > .active > .s-num {
53
+    color: #ffffff;
54
+}
55
+
56
+#Content_Main, #Content_Main .item {
57
+    background-color: transparent;
58
+}
59
+
60
+#Carousel_item:before {
61
+    content: '';
62
+}

+ 170
- 0
template/pc/plug/step/step.js View File

@@ -0,0 +1,170 @@
1
+layui.define(['jquery', 'carousel', 'laytpl'],exports => {
2
+    let $ = layui.jquery
3
+    let carousel = layui.carousel
4
+    let laytpl = layui.laytpl
5
+
6
+    let processTpl = `
7
+        <div id="StepWrapper">
8
+            <div class="s-step">
9
+                {{# layui.each(d.nodes, (index, item) => {}}
10
+                <div class="
11
+                    s-circle
12
+                    {{# if(index === 0) {}}
13
+                    active
14
+                    {{# } }}
15
+                ">
16
+                    <div class="s-num">{{ index + 1 }}</div>
17
+                    <div class="tip">{{ item.tip }}</div>
18
+                </div>
19
+                {{# if(index !== d.nodes.length -1 ) { }}
20
+                <div class="s-line"></div>
21
+                {{# } }}
22
+                {{#  });}}
23
+            </div>
24
+        </div>
25
+    `
26
+
27
+    let contentTpl = `
28
+        <div id="StepWrapper_content">
29
+            <div class="layui-carousel" id="Content_Main">
30
+                <div id="Carousel_item" carousel-item></div>
31
+            </div> 
32
+        </div>
33
+    `
34
+
35
+    let renderProcess = (dom, nodes) => {
36
+        nodes = nodes || []
37
+        laytpl(processTpl).render({ nodes }, html => {
38
+            $(dom).append(html)
39
+        })
40
+    }
41
+
42
+    let renderContent = (dom, contents) => {
43
+        laytpl(contentTpl).render({}, html => {
44
+            $(dom).append(html)
45
+        })
46
+
47
+        contents = contents || []
48
+        contents.forEach(item => {
49
+            let tpl = `<div class="item">
50
+                ${item._tpl}
51
+            </div>`
52
+            laytpl(tpl).render(item.ctx, html => {
53
+                $('#Carousel_item').append(html)
54
+            })
55
+        })
56
+    }
57
+
58
+    let getCurrent = () => {
59
+        let circles = $('.s-circle')
60
+        let reservIndex = 0
61
+        circles.each((index, item) => {
62
+            if($(item).hasClass('active')) {
63
+                reservIndex = index
64
+            }
65
+        })
66
+        return reservIndex
67
+    }
68
+
69
+    let updateState = (dir) => {
70
+        let circles = $('.s-circle')
71
+        let reservIndex = getCurrent()
72
+        $(circles[reservIndex]).removeClass('active')
73
+        if(dir === 'prev'){
74
+            $(circles[reservIndex - 1 < 0 ? 2 : reservIndex - 1]).addClass('active')
75
+            $('.layui-carousel-arrow[lay-type=sub]').trigger('click')
76
+        } else {
77
+            $(circles[(reservIndex + 1) % circles.length]).addClass('active')
78
+            $('.layui-carousel-arrow[lay-type=add]').trigger('click')
79
+        }
80
+    }
81
+
82
+    let lock = false;
83
+    let updateWidthLock = (dir) => {
84
+        if(lock) {
85
+            return
86
+        }
87
+        lock = true
88
+        updateState(dir)
89
+        setTimeout(() => lock = false, 300);
90
+    }
91
+
92
+    let freshHeight = () => {
93
+        setTimeout(() => {
94
+            let currentItem = $('.item.layui-this')
95
+            let firstChild = currentItem.children(':first')[0]
96
+            $(currentItem).height(firstChild.scrollHeight)
97
+            $('#Carousel_item').height(firstChild.scrollHeight)
98
+            $('#StepWrapper_content').height(firstChild.scrollHeight)
99
+        }, 300)
100
+    }
101
+
102
+    let prev = () => {
103
+        updateWidthLock('prev')
104
+        freshHeight()
105
+    }
106
+
107
+    let next = () => {
108
+        updateWidthLock('next')
109
+        freshHeight()
110
+    }
111
+
112
+    let run = (options) => {
113
+        renderProcess(options.elem, options.nodes)
114
+        renderContent(options.elem, options.contents)
115
+        setTimeout(()=>{
116
+            carousel.render({
117
+                elem: '#Content_Main',
118
+                width: '100%',
119
+                // height: options.contentHeight || '20rem',
120
+                indicator: 'none',
121
+                autoplay: false
122
+            })
123
+
124
+            $('.layui-carousel-arrow').css({
125
+                display: 'none'
126
+            })
127
+
128
+            let stepWidth = options.stepWidth || '16rem'
129
+            let contentWidth = options.contentWidth || '100%'
130
+            let stepCount = options.nodes || []
131
+
132
+            $('.s-step').width(stepWidth)
133
+            $('#StepWrapper_content').width(contentWidth)
134
+
135
+            $('.s-step > .s-line').css({
136
+                width: `calc((100% - 1.5rem * ${stepCount.length}) / ${stepCount.length - 1})`
137
+            })
138
+
139
+            let tips = $('.s-circle > .tip')
140
+            let length = $($('.s-circle')[0]).width() + $($('.s-line')[0]).width()
141
+            tips.each((index, item) => {
142
+                $(item).width(length / 2)
143
+            })
144
+
145
+            let stepWrapperLength = $('.s-step').width() + length / 2
146
+
147
+            $('#StepWrapper').width(stepWrapperLength)
148
+
149
+            // $('.prev').each((index, item) => {
150
+            //     $(item).on('click', e => {
151
+            //         updateWidthLock('prev')
152
+            //     })
153
+            // })
154
+
155
+            // $('.next').each((index, item) => {
156
+            //     $(item).on('click', e => {
157
+            //         updateWidthLock('next')
158
+            //     })
159
+            // })
160
+        })
161
+    }
162
+
163
+    exports('step', {
164
+        run,
165
+        prev,
166
+        next,
167
+        getCurrent,
168
+        freshHeight
169
+    })
170
+})

Loading…
Cancel
Save