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

修改问题文档

... ... @@ -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());
... ...