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
51cbcdb4
Commit
51cbcdb4
authored
Sep 04, 2023
by
haojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
音色页面不能播放音频的问题
parent
ff239aa5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/pages/VocalCustomization/components/MyDigitalPerson.vue
+1
-1
src/pages/VocalCustomization/components/Record.vue
+1
-1
src/utils/request.ts
+3
-3
No files found.
src/pages/VocalCustomization/components/MyDigitalPerson.vue
View file @
51cbcdb4
...
...
@@ -6,7 +6,7 @@
<template
v-if=
"item.audit_status == LIVE_AUDIT_STATUS.LIVE_AUDIT_STATUS_FINISH || true"
>
<div
class=
"my-person-loading-item"
>
<Audio
:url=
"item.audio_url"
:url=
"item.audio_url
? item.audio_url : item.audition_url
"
mode=
"2"
:id=
"item.id"
@
startPlay=
"startPlay"
...
...
src/pages/VocalCustomization/components/Record.vue
View file @
51cbcdb4
...
...
@@ -3,7 +3,7 @@
<div
class=
"record-items"
v-for=
"item in list"
:key=
"item.id"
>
<div
class=
"left"
>
<Audio
:url=
"item.audio_url"
:url=
"item.audio_url
? item.audio_url : item.audition_url
"
mode=
"3"
:id=
"item.id"
@
startPlay=
"startPlay"
...
...
src/utils/request.ts
View file @
51cbcdb4
...
...
@@ -9,7 +9,7 @@ const error_messaage = '请求错误';
const
getBaseUrl
=
async
()
=>
{
if
(
isDev
())
{
//
// return 'http://156.247.11.21:92/
';
return
'http://156.247.11.21:93
'
;
return
''
;
}
// 默认线上地址
...
...
@@ -30,8 +30,8 @@ const getBaseUrl = async () => {
const
instance
=
axios
.
create
({
baseURL
:
''
,
//
withCredentials: false,
withCredentials
:
isDev
()
?
true
:
false
,
withCredentials
:
false
,
//
withCredentials: isDev() ? true : false,
});
// 请求拦截
...
...
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