作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

托管成功短信提示

@@ -332,12 +332,12 @@ class WeChatBaseController extends BaseController @@ -332,12 +332,12 @@ class WeChatBaseController extends BaseController
332 foreach($vo as $k=>$v){ 332 foreach($vo as $k=>$v){
333 if($v['form_type'] == 1){ 333 if($v['form_type'] == 1){
334 $result1[] = $v['insurance_price']; 334 $result1[] = $v['insurance_price'];
335 - if($v['order_expire_time'] > time() or $v['status'] == 1 or $v['order_about_time'] > (time()-30*24*60*60)){ 335 + if($v['order_expire_time'] > time() or $v['status'] == 1 or $v['order_about_time'] < (time()-30*24*60*60)){
336 $result2[] = $v['insurance_price']; 336 $result2[] = $v['insurance_price'];
337 } 337 }
338 }else if($v['form_type'] == 2){ 338 }else if($v['form_type'] == 2){
339 $result1[] = $v['subjoin_price']; 339 $result1[] = $v['subjoin_price'];
340 - if($v['order_expire_time'] > time() or $v['status'] == 1 or $v['order_about_time'] > (time()-30*24*60*60)){ 340 + if($v['order_expire_time'] > time() or $v['status'] == 1 or $v['order_about_time'] < (time()-30*24*60*60)){
341 $result2[] = $v['subjoin_price']; 341 $result2[] = $v['subjoin_price'];
342 } 342 }
343 } 343 }