Your Name 10 月之前
父節點
當前提交
447b9cb01e

+ 34
- 15
application/api/controller/Diyajax.php 查看文件

84
         }
84
         }
85
 
85
 
86
         //php
86
         //php
87
-        $filename = $one['title'];
88
-        $file = $artData['down'];
87
+        $ext = explode('.',$artData['down']);
88
+        $ext = end($ext);
89
+        $filename = $one['title'].'.'.$ext;
90
+        $file = $artData['down'].'?attname='.$filename;
89
         //$filename = basename($file);
91
         //$filename = basename($file);
90
         //echo $file;
92
         //echo $file;
91
-        if(!empty($file)){
92
-            header("Content-type:application/octet-stream");
93
-            header("Content-Disposition:attachment;filename = ".$filename);
94
-            header("Accept-ranges:bytes");
95
-            header("Accept-length:".filesize($file));
96
-            readfile($file);
97
-
98
-            //记录下载次数
99
-            Db::name('users_down')->where(['id'=>$id])->setInc('num');
100
-
101
-        }else{
102
-            respose(['code'=>0, 'msg'=>'文件下载地址不存在!', 'data'=>[]]);
103
-        }
93
+
94
+
95
+        //记录下载次数
96
+        Db::name('users_down')->where(['id'=>$id])->setInc('num');
97
+
98
+        header('location:'.$file);
99
+        //$this->downFileCurl($file,$filename);
100
+
101
+    }
102
+
103
+    public function downFileCurl($url, $file_name)
104
+    {
105
+        header('Content-Description: File Transfer');
106
+        header('Content-Type: application/vnd.android.package-archive');
107
+        header('Content-Disposition: attachment; filename=' . $file_name);
108
+        header('Content-Transfer-Encoding: binary');
109
+        header('Expires: 0');
110
+        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
111
+        header('Pragma: public');
112
+        $ch = curl_init();
113
+        curl_setopt($ch, CURLOPT_URL, $url);
114
+        curl_setopt($ch, CURLOPT_HEADER, 0);
115
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
116
+        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
117
+        curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
118
+            echo $buffer;
119
+            return strlen($buffer);
120
+        });
121
+        curl_exec($ch);
122
+        curl_close($ch);
104
     }
123
     }
105
 }
124
 }

+ 63
- 5
template/mobile/users/users_reg_field.htm 查看文件

180
     border-bottom: 1px solid #eee;"type="text" class="form-control" required id="{$vo.fieldArr}_{$vo.name|default=''}" name="{$vo.fieldArr}[{$vo.name|default=''}]" value="{$vo.dfvalue|default=''}" lay-verify="city" autocomplete="off"
180
     border-bottom: 1px solid #eee;"type="text" class="form-control" required id="{$vo.fieldArr}_{$vo.name|default=''}" name="{$vo.fieldArr}[{$vo.name|default=''}]" value="{$vo.dfvalue|default=''}" lay-verify="city" autocomplete="off"
181
                placeholder="请选择您的所在城市">
181
                placeholder="请选择您的所在城市">
182
 
182
 
183
+
184
+        <div id="in_city_bak"></div>
183
         <div id="in_city" style="display: none;"></div>
185
         <div id="in_city" style="display: none;"></div>
184
 
186
 
185
     </div>
187
     </div>
186
 </div>
188
 </div>
187
 <style>
189
 <style>
190
+
191
+    .city_a_le1:first-child{
192
+        overflow-y: auto !important;
193
+    }
194
+    #in_city_bak{
195
+        position: fixed;
196
+        top:0;left: 0;z-index: 500;
197
+        display: none;
198
+        background: #000;
199
+        opacity: 0.8;
200
+        width: 100%;height: 100%;
201
+    }
188
     #in_city{
202
     #in_city{
189
-        position:absolute !important;top:30px !important;left:0px !important;
203
+        position:fixed !important;top:8%  !important;left:5% !important;z-index: 1000;
190
         padding-top: 10px;
204
         padding-top: 10px;
205
+        width: 90%;height:80%;
191
     }
206
     }
192
     #in_city h1{
207
     #in_city h1{
193
         font-size: 20px !important;
208
         font-size: 20px !important;
202
     }
217
     }
203
 
218
 
204
     #quxiao{
219
     #quxiao{
205
-        display: none !important;
220
+   /*     display: none !important;*/
221
+    }
222
+    .city_a_le1{
223
+        height: 100%;
224
+    }
225
+
226
+    .screen a {
227
+        padding: 10px 10px;
228
+        font-size: 12px;
229
+        width: 100%;
230
+        margin: 0 auto;
231
+/*        line-height: 15px;*/
232
+        word-wrap: break-word;/*英文的时候需要加上这句,自动换行*/
233
+        word-break:break-all;
234
+        display: block;float: left;
235
+        border-bottom:none !important;
236
+    }
237
+    .screen .shar {
238
+        border: none !important;
239
+/*        border-right: solid 1px #c92436;*/
240
+        color: red;
241
+    }
242
+
243
+    .city_a_le1{
244
+        padding: 10px 0px;
245
+    }
246
+
247
+    .screen{
248
+        float: left;
249
+        width: 20%;
250
+        height: 100%;
251
+    }
252
+    .city_pos{
253
+        float: left;
254
+        width: 80%;
255
+        height: 100%;
256
+    }
257
+    #quxiao{
258
+        bottom: -40px !important;
206
     }
259
     }
260
+
261
+
207
 </style>
262
 </style>
208
 <script type="text/javascript">
263
 <script type="text/javascript">
209
 
264
 
226
     var placeThis; //当前选择标签
281
     var placeThis; //当前选择标签
227
     apay.click(function (obj) {  //城市导航
282
     apay.click(function (obj) {  //城市导航
228
         inCity.payment($(this));
283
         inCity.payment($(this));
284
+        $('#in_city_bak').show();
229
     })
285
     })
230
 
286
 
231
     inCity.place(pla); //出发地
287
     inCity.place(pla); //出发地
237
     $(document).on('click','#quxiao',function(){
293
     $(document).on('click','#quxiao',function(){
238
 
294
 
239
         $("#in_city").hide();
295
         $("#in_city").hide();
296
+        $('#in_city_bak').hide();
240
 
297
 
241
     });
298
     });
242
 
299
 
246
         if (!$target.closest('#in_city').length && !$target.is('#in_city')) {
303
         if (!$target.closest('#in_city').length && !$target.is('#in_city')) {
247
            /* alert('You clicked outside the div!');*/
304
            /* alert('You clicked outside the div!');*/
248
             $("#in_city").hide();
305
             $("#in_city").hide();
306
+            $('#in_city_bak').hide();
249
         }
307
         }
250
     });
308
     });
251
 
309
 
331
 {eyou:case value="radio"}
389
 {eyou:case value="radio"}
332
 <!-- 单选项 start -->
390
 <!-- 单选项 start -->
333
 <div class="form-group group_z" style="width:100%;">
391
 <div class="form-group group_z" style="width:100%;">
334
-    <fieldset style="    padding: 0; border:none;">
392
+    <fieldset style="    padding: 0; border:none;height: 36px;line-height: 36px; ">
335
         <!-- <legend>{$vo.title}{eyou:if condition="1 == $vo.is_required"}(必填){/eyou:if}</legend>-->
393
         <!-- <legend>{$vo.title}{eyou:if condition="1 == $vo.is_required"}(必填){/eyou:if}</legend>-->
336
         {eyou:volist name="$vo.dfvalue" id="v2"}
394
         {eyou:volist name="$vo.dfvalue" id="v2"}
337
-        <label class="radio-label" style="margin-right: 5%;">
338
-            <span>{$v2}</span>
395
+        <label class="radio-label" style="margin-right: 5%;margin-bottom:0px;">
396
+            <span style="font-size: 15px;color: #999;">{$v2}</span>
339
             <input type="radio" class="radio" name="{$vo.fieldArr}[{$vo.name|default=''}]" value="{$v2}" {eyou:if condition="isset($vo['trueValue']) AND in_array($v2, $vo['trueValue'])"}checked="checked"{/eyou:if}>
397
             <input type="radio" class="radio" name="{$vo.fieldArr}[{$vo.name|default=''}]" value="{$v2}" {eyou:if condition="isset($vo['trueValue']) AND in_array($v2, $vo['trueValue'])"}checked="checked"{/eyou:if}>
340
             <span class="check-mark"></span>
398
             <span class="check-mark"></span>
341
         </label>
399
         </label>

+ 3
- 0
template/mobile/users/users_welcome.htm 查看文件

246
                     <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
246
                     <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
247
                     <div class="nav-item-b">测评</div>
247
                     <div class="nav-item-b">测评</div>
248
                 </a>
248
                 </a>
249
+                <?php
250
+
251
+                ?>
249
                 <a href="/?m=user&amp;c=Users&amp;a=login" class="nav-item" {eyou:if condition='($page=="user")'}style="color:red;{/eyou:if}">
252
                 <a href="/?m=user&amp;c=Users&amp;a=login" class="nav-item" {eyou:if condition='($page=="user")'}style="color:red;{/eyou:if}">
250
                     <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
253
                     <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
251
                     <div class="nav-item-b">我的</div>
254
                     <div class="nav-item-b">我的</div>

+ 5
- 1
template/pc/common/include/footer.htm 查看文件

79
         <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
79
         <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
80
         <div class="nav-item-b">测评</div>
80
         <div class="nav-item-b">测评</div>
81
     </a>
81
     </a>
82
-    <a href="/?m=user&amp;c=Users&amp;a=login" class="nav-item" {eyou:if condition='($page=="user")'}style="color:red;{/eyou:if}">
82
+
83
+    <?php
84
+        $n_url = urlencode(request()->domain().request()->url());
85
+    ?>
86
+    <a href="https://www.zc10000.com/?m=user&amp;c=Users&amp;a=login&referurl={$n_url}" class="nav-item" {eyou:if condition='($page=="user")'}style="color:red;{/eyou:if}">
83
         <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
87
         <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
84
         <div class="nav-item-b">我的</div>
88
         <div class="nav-item-b">我的</div>
85
     </a>
89
     </a>

+ 13
- 0
template/pc/js/city/cityTemplate.js 查看文件

5
     inCity.top = placeThis.offset().top+27;  //城市选择框  top位置
5
     inCity.top = placeThis.offset().top+27;  //城市选择框  top位置
6
     inCity.left = placeThis.offset().left;   //城市选择框  left位置
6
     inCity.left = placeThis.offset().left;   //城市选择框  left位置
7
     $(inCity.id).css({"top":inCity.top+"px","left":inCity.left+"px","width":inCity.width+"px","height":inCity.height+"px"});
7
     $(inCity.id).css({"top":inCity.top+"px","left":inCity.left+"px","width":inCity.width+"px","height":inCity.height+"px"});
8
+
9
+    $('#in_city_bak').show();
8
 }
10
 }
9
 inCity.place = function (e) {
11
 inCity.place = function (e) {
10
     e.click(function(){
12
     e.click(function(){
12
         //城市显示
14
         //城市显示
13
         inCity.cssParents(); 
15
         inCity.cssParents(); 
14
         $(inCity.id).show();
16
         $(inCity.id).show();
17
+
18
+        $('#in_city_bak').show();
15
         return false;
19
         return false;
16
     })
20
     })
17
 }
21
 }
21
         //城市显示
25
         //城市显示
22
         inCity.cssParents();  
26
         inCity.cssParents();  
23
         $(inCity.id).show();
27
         $(inCity.id).show();
28
+
29
+        $('#in_city_bak').show();
30
+
24
         return false;
31
         return false;
25
     })
32
     })
26
 }
33
 }
177
     $this.addClass("shar");
184
     $this.addClass("shar");
178
     $this.parent().next().children().hide();
185
     $this.parent().next().children().hide();
179
     $this.parent().next().children().eq(ind).show();
186
     $this.parent().next().children().eq(ind).show();
187
+
188
+    $('#in_city_bak').show();
180
 }
189
 }
181
 // 给input赋值
190
 // 给input赋值
182
 inCity.cityClick = function ($this) {
191
 inCity.cityClick = function ($this) {
184
         var a_city = $(this).text();  //当前选择的城市
193
         var a_city = $(this).text();  //当前选择的城市
185
         $(inCity.id).hide();  //隐藏城市选择框 
194
         $(inCity.id).hide();  //隐藏城市选择框 
186
         placeThis.val(a_city);  //赋值
195
         placeThis.val(a_city);  //赋值
196
+
197
+
198
+        $('#in_city_bak').hide();
199
+
187
         return false;
200
         return false;
188
     })
201
     })
189
 }
202
 }

+ 5
- 1
template/pc/js/common.js 查看文件

67
                     //layer.alert(data.msg, {icon: 5});
67
                     //layer.alert(data.msg, {icon: 5});
68
                     layer.confirm(data.msg, {icon: 3,title:false}, function(){
68
                     layer.confirm(data.msg, {icon: 3,title:false}, function(){
69
                         if(data.url != ''){
69
                         if(data.url != ''){
70
-                            window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
70
+                            //window.open('https://www.zc10000.com/?m=user&c=Users&a=login', '_blank');
71
+                            var currentUrl = window.location.href;
72
+                            var r_url = '&referurl=' + encodeURIComponent(currentUrl); //{$web_domain}{$web_url}
73
+                            //window.location.href = 'https://www.zc10000.com/?m=user&c=Users&a=login'+r_url;
74
+                            window.open('https://www.zc10000.com/?m=user&c=Users&a=login'+r_url,'_blank');
71
                         }else{
75
                         }else{
72
                             layer.closeAll();
76
                             layer.closeAll();
73
                         }
77
                         }

Loading…
取消
儲存