12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace App\Http\Requests\Report;
- use App\Http\Requests\Request;
- class SummaryRequest extends Request
- {
-
- public function authorize()
- {
- return true;
- }
-
- public function rules()
- {
- if (!$this->ajax()) {
- return [];
- }
- return [
- 'dataList' => 'nullable|array',
- 'remark' => 'nullable',
- 'fileList' => 'nullable|array',
- 'selectManageList'=>'nullable|array',
- 'selectCustomerList'=>'nullable|array',
- ];
- }
- public function attributes()
- {
- return [
- 'dataList' => '月底总结表格',
- 'remark' => '月度总结内容',
- 'fileList' => '文件',
- ];
- }
- }
|