Toggle navigation
Toggle navigation
This project
Loading...
Sign in
OnePoem
/
OnePoem-Server
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
李帅
2022-12-26 17:15:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dfe2190b4675b9fdd158a26a054d0bc97278c301
dfe2190b
1 parent
5fdbd6e8
1.微调一下接口,打印参数
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
app/Admin/Renderable/TemplateTable.php
app/Jobs/AdminMakeImmerse.php
app/Admin/Renderable/TemplateTable.php
View file @
dfe2190
...
...
@@ -18,7 +18,7 @@ class TemplateTable extends LazyRenderable
public
function
grid
()
:
Grid
{
return
Grid
::
make
(
new
VideoTemp
(),
function
(
Grid
$grid
)
{
$grid
->
model
()
->
with
([
'componentsTable'
]);
$grid
->
model
()
->
with
([
'componentsTable'
])
->
where
(
"state"
,
1
)
;
$grid
->
column
(
'id'
,
'ID'
)
->
sortable
();
$grid
->
column
(
'title'
);
$grid
->
column
(
''
,
'组件信息'
)
...
...
app/Jobs/AdminMakeImmerse.php
View file @
dfe2190
...
...
@@ -57,7 +57,7 @@ class AdminMakeImmerse implements ShouldQueue
// 素材准备
$drawtext
=
$this
->
getTextContentString
();
$watermark
=
$this
->
getAbsolutePath
(
'
ffmpeg
/LOGO_eng.png'
);
$watermark
=
$this
->
getAbsolutePath
(
'
images
/LOGO_eng.png'
);
$is_bgm
=
$template
->
bg_music
;
$bgm
=
$this
->
getAbsolutePath
(
$template
->
bgm_url
);
...
...
Please
register
or
login
to post a comment