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

修改问题文档

... ... @@ -306,8 +306,8 @@ class Goods extends Frontend
$data[$key]['insurance'] = $insurance;
if(empty($user_id)){
$text = "(请您先登录)";
$data[$key]['store_phone'] = "***********$text";
$data[$key]['store_address'] = "***********$text";
$data[$key]['store_phone'] = substr_replace($vo['store_phone'],'****',3,4).$text;
$data[$key]['store_address'] = substr_replace($vo['store_phone'],'********',3).$text;
}
//当前用户若不是会员加密部分信息
if($insurance == '2'){
... ... @@ -315,8 +315,8 @@ class Goods extends Frontend
if(empty($user_id)){
$text = "(请您先登录)";
}
$data[$key]['store_phone'] = "***********$text";
$data[$key]['store_address'] = "***********$text";
$data[$key]['store_phone'] = substr_replace($vo['store_phone'],'****',3,4).$text;
$data[$key]['store_address'] = substr_replace($vo['store_phone'],'********',3).$text;
}
//计算平均分
$score_count = $evaluateModel->where(['goods_id'=>$vo['id']])->count();
... ...
... ... @@ -62,8 +62,8 @@ class Shop extends Frontend
$data['is_collect'] = $is_collect;
if(empty($user_id)){
$text = "(请您先登录)";
$data['phone'] = "***********$text";
$data['address'] = "***********$text";
$data['phone'] = substr_replace($data['phone'],'****',3,4).$text;
$data['address'] = substr_replace($data['address'],'********',3).$text;
}
//当前用户若不是会员加密部分信息
if($encrypt == '2'){
... ... @@ -71,8 +71,8 @@ class Shop extends Frontend
if(empty($user_id)){
$text = "(请您先登录)";
}
$data['phone'] = "***********$text";
$data['address'] = "***********$text";
$data['phone'] = substr_replace($data['phone'],'****',3,4).$text;
$data['address'] = substr_replace($data['address'],'********',3).$text;
}
$this->assign('data',$data);
// dump(collection($data)->toArray());
... ...