Your Name пре 10 месеци
родитељ
комит
447b9cb01e

+ 34
- 15
application/api/controller/Diyajax.php Прегледај датотеку

@@ -84,22 +84,41 @@ class Diyajax extends Base
84 84
         }
85 85
 
86 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 91
         //$filename = basename($file);
90 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,14 +180,29 @@
180 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 181
                placeholder="请选择您的所在城市">
182 182
 
183
+
184
+        <div id="in_city_bak"></div>
183 185
         <div id="in_city" style="display: none;"></div>
184 186
 
185 187
     </div>
186 188
 </div>
187 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 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 204
         padding-top: 10px;
205
+        width: 90%;height:80%;
191 206
     }
192 207
     #in_city h1{
193 208
         font-size: 20px !important;
@@ -202,8 +217,48 @@
202 217
     }
203 218
 
204 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 262
 </style>
208 263
 <script type="text/javascript">
209 264
 
@@ -226,6 +281,7 @@
226 281
     var placeThis; //当前选择标签
227 282
     apay.click(function (obj) {  //城市导航
228 283
         inCity.payment($(this));
284
+        $('#in_city_bak').show();
229 285
     })
230 286
 
231 287
     inCity.place(pla); //出发地
@@ -237,6 +293,7 @@
237 293
     $(document).on('click','#quxiao',function(){
238 294
 
239 295
         $("#in_city").hide();
296
+        $('#in_city_bak').hide();
240 297
 
241 298
     });
242 299
 
@@ -246,6 +303,7 @@
246 303
         if (!$target.closest('#in_city').length && !$target.is('#in_city')) {
247 304
            /* alert('You clicked outside the div!');*/
248 305
             $("#in_city").hide();
306
+            $('#in_city_bak').hide();
249 307
         }
250 308
     });
251 309
 
@@ -331,11 +389,11 @@
331 389
 {eyou:case value="radio"}
332 390
 <!-- 单选项 start -->
333 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 393
         <!-- <legend>{$vo.title}{eyou:if condition="1 == $vo.is_required"}(必填){/eyou:if}</legend>-->
336 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 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 398
             <span class="check-mark"></span>
341 399
         </label>

+ 3
- 0
template/mobile/users/users_welcome.htm Прегледај датотеку

@@ -246,6 +246,9 @@
246 246
                     <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
247 247
                     <div class="nav-item-b">测评</div>
248 248
                 </a>
249
+                <?php
250
+
251
+                ?>
249 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 253
                     <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
251 254
                     <div class="nav-item-b">我的</div>

+ 5
- 1
template/pc/common/include/footer.htm Прегледај датотеку

@@ -79,7 +79,11 @@
79 79
         <div class="nav-item-t"><i class="iconfont icon-fabu"></i></div>
80 80
         <div class="nav-item-b">测评</div>
81 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 87
         <div class="nav-item-t"><i class="iconfont icon-geren"></i></div>
84 88
         <div class="nav-item-b">我的</div>
85 89
     </a>

+ 13
- 0
template/pc/js/city/cityTemplate.js Прегледај датотеку

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

+ 5
- 1
template/pc/js/common.js Прегледај датотеку

@@ -67,7 +67,11 @@ layui.use(function(){ //亦可加载特定模块:layui.use(['layer', 'laydate'
67 67
                     //layer.alert(data.msg, {icon: 5});
68 68
                     layer.confirm(data.msg, {icon: 3,title:false}, function(){
69 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 75
                         }else{
72 76
                             layer.closeAll();
73 77
                         }

Loading…
Откажи
Сачувај