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

修改问题文档

@@ -46,7 +46,8 @@ class Shop extends Frontend @@ -46,7 +46,8 @@ class Shop extends Frontend
46 $userModel = new \app\index\model\User(); 46 $userModel = new \app\index\model\User();
47 $user = $userModel->findData(['id'=>$user_id]); 47 $user = $userModel->findData(['id'=>$user_id]);
48 if(!empty($user)){ 48 if(!empty($user)){
49 - if($user['is_svip'] == '1' || ($user['is_vip'] == '1' && in_array($province_id,$user['province_ids']))){ 49 + $province_ids = explode(',',$user['province_ids']);
  50 + if($user['is_svip'] == '1' || ($user['is_vip'] == '1' && in_array($province_id,$province_ids))){
50 $encrypt = '1'; 51 $encrypt = '1';
51 } 52 }
52 } 53 }
@@ -666,7 +666,7 @@ @@ -666,7 +666,7 @@
666 var mapObj; 666 var mapObj;
667 var geoc; 667 var geoc;
668 var locationLng = 117.233; 668 var locationLng = 117.233;
669 - var locationLat = 39.11365; 669 + var locationLat = 36.11365;
670 $(function () { 670 $(function () {
671 // showTableData(); 671 // showTableData();
672 // initMap(); 672 // initMap();
@@ -708,8 +708,8 @@ @@ -708,8 +708,8 @@
708 success:function(res){ 708 success:function(res){
709 if(res.code == 1){ 709 if(res.code == 1){
710 province_id = res.data.province_id; 710 province_id = res.data.province_id;
711 - lng = r.point.lng;  
712 - lat = r.point.lat; 711 + locationLng = lng = r.point.lng;
  712 + locationLat = lat = r.point.lat;
713 //初始化产品热卖 713 //初始化产品热卖
714 initGoodsList(); 714 initGoodsList();
715 }else{ 715 }else{
@@ -65,6 +65,9 @@ @@ -65,6 +65,9 @@
65 } 65 }
66 66
67 /*验证码登录样式*/ 67 /*验证码登录样式*/
  68 + .content .contentMain .loginBox .msgFormBox{
  69 + display: none;
  70 + }
68 .content .contentMain .loginBox .formBox form .form-group{ 71 .content .contentMain .loginBox .formBox form .form-group{
69 margin: 30px 30px 20px 30px; 72 margin: 30px 30px 20px 30px;
70 position: relative; 73 position: relative;
@@ -126,7 +129,7 @@ @@ -126,7 +129,7 @@
126 129
127 /*密码登录样式*/ 130 /*密码登录样式*/
128 .content .contentMain .loginBox .pswFormBox{ 131 .content .contentMain .loginBox .pswFormBox{
129 - display: none; 132 + display: block;
130 } 133 }
131 .content .contentMain .loginBox .pswFormBox .form-group{ 134 .content .contentMain .loginBox .pswFormBox .form-group{
132 position: relative; 135 position: relative;