Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Chemex
Commits
8a67ed64
Commit
8a67ed64
authored
4 years ago
by
celaraze
Browse files
Options
Download
Email Patches
Plain Diff
优化:命名空间导入&返回参数
parent
e25b1a0d
No related merge requests found
Changes
1000
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
app/Admin/Actions/Grid/RowAction/DeviceRecordDeleteActionNew.php
+1
-1
...in/Actions/Grid/RowAction/DeviceRecordDeleteActionNew.php
app/Admin/Actions/Grid/RowAction/DeviceRecordUpdateSSHAction.php
+2
-2
...in/Actions/Grid/RowAction/DeviceRecordUpdateSSHAction.php
app/Admin/Actions/Grid/RowAction/DeviceTrackUpdateDeleteAction.php
+2
-2
.../Actions/Grid/RowAction/DeviceTrackUpdateDeleteAction.php
app/Admin/Actions/Grid/RowAction/MaintenanceRecordCreateAction.php
+2
-2
.../Actions/Grid/RowAction/MaintenanceRecordCreateAction.php
app/Admin/Actions/Grid/RowAction/MaintenanceRecordUpdateAction.php
+2
-2
.../Actions/Grid/RowAction/MaintenanceRecordUpdateAction.php
app/Admin/Actions/Grid/RowAction/PartRecordCreateUpdateTrackAction.php
+2
-2
...ions/Grid/RowAction/PartRecordCreateUpdateTrackAction.php
app/Admin/Actions/Grid/RowAction/ServiceIssueUpdateAction.php
+2
-2
...Admin/Actions/Grid/RowAction/ServiceIssueUpdateAction.php
app/Admin/Actions/Grid/RowAction/ServiceRecordCreateIssueAction.php
+2
-2
...Actions/Grid/RowAction/ServiceRecordCreateIssueAction.php
app/Admin/Actions/Grid/RowAction/ServiceRecordCreateUpdateTrackAction.php
+2
-2
...s/Grid/RowAction/ServiceRecordCreateUpdateTrackAction.php
app/Admin/Actions/Grid/RowAction/SoftwareRecordCreateUpdateTrackAction.php
+2
-2
.../Grid/RowAction/SoftwareRecordCreateUpdateTrackAction.php
app/Admin/Actions/Grid/RowAction/TodoRecordUpdateAction.php
+2
-2
app/Admin/Actions/Grid/RowAction/TodoRecordUpdateAction.php
app/Admin/Actions/Grid/ToolAction/ConsumableInAction.php
+2
-2
app/Admin/Actions/Grid/ToolAction/ConsumableInAction.php
app/Admin/Actions/Grid/ToolAction/ConsumableOutAction.php
+2
-2
app/Admin/Actions/Grid/ToolAction/ConsumableOutAction.php
app/Admin/Actions/Grid/ToolAction/DeviceRecordImportAction.php
+2
-2
...dmin/Actions/Grid/ToolAction/DeviceRecordImportAction.php
app/Admin/Actions/Grid/ToolAction/PartRecordImportAction.php
+2
-2
app/Admin/Actions/Grid/ToolAction/PartRecordImportAction.php
app/Admin/Actions/Grid/ToolAction/PurchasedChannelImportAction.php
+2
-2
.../Actions/Grid/ToolAction/PurchasedChannelImportAction.php
app/Admin/Actions/Grid/ToolAction/SoftwareRecordImportAction.php
+2
-2
...in/Actions/Grid/ToolAction/SoftwareRecordImportAction.php
app/Admin/Actions/Grid/ToolAction/TodoRecordCreateAction.php
+2
-2
app/Admin/Actions/Grid/ToolAction/TodoRecordCreateAction.php
app/Admin/Actions/Grid/ToolAction/UserImportAction.php
+2
-2
app/Admin/Actions/Grid/ToolAction/UserImportAction.php
app/Admin/Actions/Grid/ToolAction/VendorRecordImportAction.php
+2
-2
...dmin/Actions/Grid/ToolAction/VendorRecordImportAction.php
with
39 additions
and
39 deletions
+39
-39
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
app/Admin/Actions/Grid/RowAction/DeviceRecordDeleteActionNew.php
+
1
-
1
View file @
8a67ed64
...
...
@@ -14,7 +14,7 @@ class DeviceRecordDeleteActionNew extends RowAction
$this
->
title
=
'🔨 '
.
admin_trans_label
(
'Delete'
);
}
public
function
render
()
public
function
render
()
:
Modal
{
// 实例化表单类并传递自定义参数
$form
=
DeviceRecordDeleteForm
::
make
()
->
payload
([
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/DeviceRecordUpdateSSHAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class DeviceRecordUpdateSSHAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
// 实例化表单类并传递自定义参数
$form
=
DeviceSSHInfoForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/DeviceTrackUpdateDeleteAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class DeviceTrackUpdateDeleteAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
DeviceTrackUpdateDeleteForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
(),
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/MaintenanceRecordCreateAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -20,9 +20,9 @@ class MaintenanceRecordCreateAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
MaintenanceRecordCreateForm
::
make
()
->
payload
([
'item'
=>
$this
->
item
,
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/MaintenanceRecordUpdateAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class MaintenanceRecordUpdateAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
MaintenanceRecordUpdateForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/PartRecordCreateUpdateTrackAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class PartRecordCreateUpdateTrackAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
PartRecordCreateUpdateTrackForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/ServiceIssueUpdateAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class ServiceIssueUpdateAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
ServiceIssueUpdateForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/ServiceRecordCreateIssueAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class ServiceRecordCreateIssueAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
ServiceIssueCreateForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/ServiceRecordCreateUpdateTrackAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class ServiceRecordCreateUpdateTrackAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
ServiceRecordCreateUpdateTrackForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/SoftwareRecordCreateUpdateTrackAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class SoftwareRecordCreateUpdateTrackAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
SoftwareRecordCreateUpdateTrackForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/RowAction/TodoRecordUpdateAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class TodoRecordUpdateAction extends RowAction
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
$form
=
TodoRecordUpdateForm
::
make
()
->
payload
([
'id'
=>
$this
->
getKey
()]);
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/ConsumableInAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class ConsumableInAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/ConsumableOutAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class ConsumableOutAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/DeviceRecordImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class DeviceRecordImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/PartRecordImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class PartRecordImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/PurchasedChannelImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class PurchasedChannelImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/SoftwareRecordImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class SoftwareRecordImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/TodoRecordCreateAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class TodoRecordCreateAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/UserImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class UserImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
app/Admin/Actions/Grid/ToolAction/VendorRecordImportAction.php
+
2
-
2
View file @
8a67ed64
...
...
@@ -17,9 +17,9 @@ class VendorRecordImportAction extends AbstractTool
/**
* 渲染模态框.
*
* @return Modal
|string
* @return Modal
*/
public
function
render
()
public
function
render
()
:
Modal
{
return
Modal
::
make
()
->
lg
()
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
4
5
…
50
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help