Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
live-management-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haojie
live-management-web
Commits
b85de4a3
Commit
b85de4a3
authored
Aug 21, 2023
by
haojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复首次进入创建页面没有获取动作的问题
parent
dfa5964d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
src/pages/createLive/components/scripts.vue
+9
-1
stats.html
+0
-0
No files found.
src/pages/createLive/components/scripts.vue
View file @
b85de4a3
...
@@ -256,6 +256,8 @@ const route = useRoute();
...
@@ -256,6 +256,8 @@ const route = useRoute();
// 动作列表
// 动作列表
const
actionList
=
ref
([]);
const
actionList
=
ref
([]);
// 是否首次请求actionList
const
isFirstRequestAction
=
ref
(
true
);
// 编辑信息
// 编辑信息
const
editInfo
=
computed
(()
=>
store
.
getters
[
'live/getEditLive'
]);
const
editInfo
=
computed
(()
=>
store
.
getters
[
'live/getEditLive'
]);
...
@@ -640,10 +642,16 @@ onMounted(async () => {
...
@@ -640,10 +642,16 @@ onMounted(async () => {
// 获取音色音调列表
// 获取音色音调列表
getList
();
getList
();
if
(
isFirstRequestAction
.
value
)
{
getAction
();
isFirstRequestAction
.
value
=
false
;
}
});
});
onActivated
(()
=>
{
onActivated
(()
=>
{
getAction
();
if
(
!
isFirstRequestAction
.
value
)
{
getAction
();
}
});
});
</
script
>
</
script
>
...
...
stats.html
View file @
b85de4a3
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Write
Preview
Markdown
is supported
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