Browse Source

修改分类是否已在首页显示提示

master
liangyuyan 5 years ago
parent
commit
e3a5cd3f46
  1. 2
      app/Admin/Controllers/v3/CategoryController.php

2
app/Admin/Controllers/v3/CategoryController.php

@ -32,7 +32,7 @@ class CategoryController extends AdminController
$logo = "<img src='$src' style='margin-left: 20px; max-width:35px;max-height:35px' class='img'/>"; $logo = "<img src='$src' style='margin-left: 20px; max-width:35px;max-height:35px' class='img'/>";
$actions = ''; $actions = '';
$actions = (in_array($branch['id'],$select)) ?'<span style="margin-left: 20px;">已绑定</span>':$actions;
$actions = (in_array($branch['id'],$select)) ?'<span style="margin-left: 20px;color: #dda451;">在首页显示</span>':$actions;
return "{$branch['id']} - {$branch['title']} $logo $actions"; return "{$branch['id']} - {$branch['title']} $logo $actions";
}); });

Loading…
Cancel
Save