|
@@ -470,7 +470,6 @@ export default defineComponent({
|
|
|
const userId = state.searchForm.userId
|
|
|
const audioPlayTypes = state.searchForm.audioPlayTypes
|
|
|
const { generateFirst, musicCategoryId, ...res } = state.searchForm
|
|
|
- const asyncFlag = musicCategoryId ? null : generateFirst ? false : null
|
|
|
let search = {
|
|
|
...res,
|
|
|
useAppId: state.searchForm.useAppId
|
|
@@ -478,7 +477,6 @@ export default defineComponent({
|
|
|
: state.searchForm.useAppId,
|
|
|
audioPlayTypes: [] as any,
|
|
|
musicCategoryId: musicCategoryId || generateFirst,
|
|
|
- asyncFlag
|
|
|
} as any
|
|
|
if (audioPlayTypes) {
|
|
|
if (audioPlayTypes === 'PLAY_SING') {
|
|
@@ -1019,6 +1017,7 @@ export default defineComponent({
|
|
|
{state.beatTimeOpen && (
|
|
|
<MusiceBeatTime
|
|
|
id={state.productItem.id}
|
|
|
+ asyncFlag={state.searchForm.generateFirst ? false : true}
|
|
|
onClose={() => {
|
|
|
state.beatTimeOpen = false
|
|
|
}}
|