You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
791 B
36 lines
791 B
<?php
|
|
|
|
|
|
namespace App\admin\Card\Community;
|
|
|
|
|
|
use App\Models\LanzuUserRelationBind;
|
|
use Dcat\Admin\Admin;
|
|
use Dcat\Admin\Widgets\Metrics\Card;
|
|
|
|
class TotalUser extends Card
|
|
{
|
|
protected function init()
|
|
{
|
|
parent::init();
|
|
$this->title = '绑定用户数';
|
|
$adu = Admin::user();
|
|
if ($adu->isRole('lanzu_cs')){
|
|
$this->content(LanzuUserRelationBind::getCount($adu->id));
|
|
}else{
|
|
$this->content(LanzuUserRelationBind::getCount());
|
|
}
|
|
|
|
}
|
|
|
|
public function renderContent()
|
|
{
|
|
$content = parent::renderContent();
|
|
return <<<HTML
|
|
<div class="d-flex justify-content-between align-items-center mt-1" style="margin-bottom: 2px">
|
|
<h2 class="ml-1 font-large-1">{$content}</h2>
|
|
</div>
|
|
HTML;
|
|
|
|
}
|
|
}
|