| xqd
@@ -25,10 +25,10 @@ class EpisodesBatchUploadController extends AdminController
|
|
|
->title($episode->name)
|
|
|
->breadcrumb(
|
|
|
['text' => $episode->name],
|
|
|
- ['text' => '短剧上传'],
|
|
|
+ ['text' => '剧集上传'],
|
|
|
)
|
|
|
->body($form)
|
|
|
- ->description('短剧上传');
|
|
|
+ ->description('剧集上传');
|
|
|
}
|
|
|
|
|
|
public function store($id = 0)
|
| xqd
@@ -37,7 +37,7 @@ class EpisodesBatchUploadController extends AdminController
|
|
|
$form = new Form();
|
|
|
$response = $form->response();
|
|
|
if(isset($req['lists']) && empty($req['lists'])) {
|
|
|
- return $response->error('请上传短剧');
|
|
|
+ return $response->error('请上传剧集');
|
|
|
}else if(!isset($req['lists'])){
|
|
|
return $this->form()->store();
|
|
|
}
|
| xqd
@@ -74,7 +74,7 @@ class EpisodesBatchUploadController extends AdminController
|
|
|
$form->disableViewCheck();
|
|
|
|
|
|
|
|
|
- $form->multipleFile('lists', '短剧')
|
|
|
+ $form->multipleFile('lists', '剧集')
|
|
|
->chunkSize(1024)
|
|
|
->maxSize(1024 * 1024)
|
|
|
->saveFullUrl()
|