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.
43 lines
1.0 KiB
43 lines
1.0 KiB
|
1 month ago
|
<?php
|
||
|
|
|
||
|
|
namespace App\Support;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 赛事未绑定评审表单时的内置默认项(与后台可视化评审表 type/key 约定一致)。
|
||
|
|
*/
|
||
|
|
class DefaultReviewSchema
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @return list<array<string, mixed>>
|
||
|
|
*/
|
||
|
|
public static function schemaJson(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
[
|
||
|
|
'key' => 'dim_innovation',
|
||
|
|
'type' => 'number',
|
||
|
|
'label' => '创新性',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'key' => 'dim_feasibility',
|
||
|
|
'type' => 'number',
|
||
|
|
'label' => '可行性',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'key' => 'dim_impact',
|
||
|
|
'type' => 'number',
|
||
|
|
'label' => '社会与产业价值',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'key' => 'comment',
|
||
|
|
'type' => 'textarea',
|
||
|
|
'label' => '评审意见',
|
||
|
|
'required' => false,
|
||
|
|
],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|