|
@@ -470,13 +470,15 @@ 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
|
|
|
? state.searchForm.useAppId.join(',')
|
|
|
: state.searchForm.useAppId,
|
|
|
audioPlayTypes: [] as any,
|
|
|
- musicCategoryId: musicCategoryId || generateFirst
|
|
|
+ musicCategoryId: musicCategoryId || generateFirst,
|
|
|
+ asyncFlag
|
|
|
} as any
|
|
|
if (audioPlayTypes) {
|
|
|
if (audioPlayTypes === 'PLAY_SING') {
|
|
@@ -866,7 +868,6 @@ export default defineComponent({
|
|
|
</NFormItem>
|
|
|
<NFormItem label="修复数据分类" path="generateFirst" v-auth="music-list/search/data1836581471828160514">
|
|
|
<NInputNumber showButton={false} placeholder="请输入修复数据分类" clearable v-model:value={state.searchForm.generateFirst} />
|
|
|
-
|
|
|
</NFormItem>
|
|
|
|
|
|
<NFormItem>
|