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.
73 lines
1.3 KiB
73 lines
1.3 KiB
<?php |
|
/** |
|
* |
|
* Api.php |
|
* User: ChenLong |
|
* DateTime: 2020-12-11 11:09:22 |
|
*/ |
|
|
|
namespace app\admin\model\system; |
|
|
|
use app\common\BaseModel; |
|
use sdModule\layui\Layui; |
|
use think\Model; |
|
|
|
|
|
/** |
|
* Class Api |
|
* @package app\admin\controller\Api |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class Api extends Model |
|
{ |
|
|
|
use BaseModel; |
|
|
|
protected $schema = [ |
|
'id' => 'int', |
|
'api_module_id' => 'int', |
|
'api_name' => 'varchar', |
|
'method' => 'varchar', |
|
'path' => 'varchar', |
|
'token' => 'varchar', |
|
'describe' => 'varchar', |
|
'response' => 'text', |
|
'create_time' => 'datetime', |
|
'update_time' => 'datetime', |
|
'delete_time' => 'int', |
|
|
|
]; |
|
|
|
/** |
|
* 请求参数类型返回值处理 |
|
* @param bool $tag |
|
* @return array |
|
*/ |
|
public static function getMethodSc($tag = true) |
|
{ |
|
return $tag === true |
|
? [ |
|
'get' => Layui::tag()->orange('GET'), |
|
'post' => Layui::tag()->red('POST'), |
|
|
|
] |
|
: [ |
|
'get' => 'GET', |
|
'post' => 'POST', |
|
]; |
|
} |
|
|
|
/** |
|
* 展示处理 |
|
* @param $value |
|
* @return string |
|
*/ |
|
public function getMethodAttr($value) |
|
{ |
|
$field = self::getMethodSc(); |
|
|
|
return $field[$value] ?? $value; |
|
} |
|
|
|
|
|
}
|
|
|