Commit 93cc1f2d by 宁成龙

完善转让翻译

parent 54c57f90
......@@ -19,22 +19,16 @@ class UserTransferAction extends BatchAction
protected $htmlClasses = ['btn btn-primary btn-sm btn-mini'];
// 注意action的构造方法参数一定要给默认值
public function __construct($title = null, $action = 1)
public function __construct()
{
$this->title = $title;
$this->action = $action;
}
// 确认弹窗信息
public function confirm()
{
return '您确定要已选中的文章吗?';
$this->title = trans('user.labels.transfer');
$this->action = 1;
}
public function render()
{
$form = AssignUserHandle::make();
$buttonName = trans('user.labels.handle');
$buttonName = trans('user.labels.transfer');
return Modal::make()->lg()->title($this->title)->body($form->payload([]))->onLoad($this->getModalScript())->button('<button class="btn btn-primary">
<i class="feather icon-check-circle"></i><span class="d-none d-sm-inline" style="margin-left: 5px">' . $buttonName . '</span>
</button>');
......@@ -62,14 +56,7 @@ JS;
// 处理请求
public function handle(Request $request)
{
// 获取选中的文章ID数组
$keys = $this->getKey();
// 获取请求参数
$action = $request->get('action');
$message = $action ? '文章发布成功' : '文章下线成功';
$message = admin_trans("succeeded");
return $this->response()->success($message)->refresh();
}
......
......@@ -59,8 +59,8 @@ class UserService
public static function userListTool(Grid $grid)
{
$grid->tools([
new UserTransferAction("转让销售"),
new UserAssignAction("分配销售"),
new UserTransferAction(),
new UserAssignAction(),
]);
}
......
<?php
return [
'labels' => [
'User' => 'User',
'user' => 'User',
'user_detail' => 'User Detail',
'handle' => 'Handle',
'transfer' => 'Transfer',
'assign' => 'Assign',
],
'fields' => [
'user_sn' => '客户编码',
......@@ -28,17 +33,17 @@ return [
]
],
'options' => [
"status"=>[
"1"=>"正常",
"-1"=>"禁用"
"status" => [
"1" => "正常",
"-1" => "禁用"
],
"reg_source"=>[
"1"=>"网站",
"2"=>"人工新增"
"reg_source" => [
"1" => "网站",
"2" => "人工新增"
],
"account_properties"=>[
"1"=>"个人",
"2"=>"企业"
"account_properties" => [
"1" => "个人",
"2" => "企业"
],
],
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment