...
|
...
|
@@ -67,8 +67,12 @@ class Shop extends Frontend |
|
|
}
|
|
|
//当前用户若不是会员加密部分信息
|
|
|
if($encrypt == '2'){
|
|
|
$data['phone'] = "***********";
|
|
|
$data['address'] = "***********";
|
|
|
$text = '';
|
|
|
if(empty($user_id)){
|
|
|
$text = "(请您先登录)";
|
|
|
}
|
|
|
$data['phone'] = "***********$text";
|
|
|
$data['address'] = "***********$text";
|
|
|
}
|
|
|
$this->assign('data',$data);
|
|
|
// dump(collection($data)->toArray());
|
...
|
...
|
|