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.
39 lines
716 B
39 lines
716 B
<?php
|
|
|
|
namespace App\Admin\Actions\Grid;
|
|
|
|
use Dcat\Admin\Grid\RowAction;
|
|
use Dcat\Admin\Widgets\Modal;
|
|
use App\Models\v3\Store as StoreModel;
|
|
use Dcat\Admin\Form;
|
|
use App\Models\v3\Goods as GoodsModel;
|
|
use App\Admin\Forms\GoodsCopyForm;
|
|
|
|
class GoodsCopy extends RowAction
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected $title = '复制';
|
|
|
|
public function render()
|
|
{
|
|
$id = $this->getKey();
|
|
|
|
$modal = Modal::make()
|
|
->xl()
|
|
->title($this->title)
|
|
->body(GoodsCopyForm::make()->setKey($id))
|
|
->button($this->title);
|
|
|
|
return $modal;
|
|
}
|
|
|
|
public function parameters()
|
|
{
|
|
|
|
return [
|
|
|
|
];
|
|
}
|
|
}
|