|
@@ -90,6 +90,7 @@ export default defineComponent({
|
|
instrumentIds: row.instrumentIds,
|
|
instrumentIds: row.instrumentIds,
|
|
sourceFrom: row.sourceFrom,
|
|
sourceFrom: row.sourceFrom,
|
|
background: row.background,
|
|
background: row.background,
|
|
|
|
+ tagIds: row.tagIds, // 资源标签
|
|
audioPlayTypeArray: row.audioPlayTypes
|
|
audioPlayTypeArray: row.audioPlayTypes
|
|
? row.audioPlayTypes.split(',')
|
|
? row.audioPlayTypes.split(',')
|
|
: [],
|
|
: [],
|
|
@@ -223,12 +224,14 @@ export default defineComponent({
|
|
type: item.type,
|
|
type: item.type,
|
|
enableFlag: 1,
|
|
enableFlag: 1,
|
|
content: item.content,
|
|
content: item.content,
|
|
|
|
+ tagIds: item.tagIds,
|
|
id: item.id || null,
|
|
id: item.id || null,
|
|
delFlag: item.delFlag
|
|
delFlag: item.delFlag
|
|
});
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
//
|
|
//
|
|
|
|
+ console.log(body, "body")
|
|
if (body.length > 0) {
|
|
if (body.length > 0) {
|
|
if (state.searchGroup.type === 'MUSIC') {
|
|
if (state.searchGroup.type === 'MUSIC') {
|
|
await materialRemoveMusic(state.editIds);
|
|
await materialRemoveMusic(state.editIds);
|
|
@@ -397,6 +400,7 @@ export default defineComponent({
|
|
table.instrumentIds = item.instrumentIds;
|
|
table.instrumentIds = item.instrumentIds;
|
|
table.content = item.content;
|
|
table.content = item.content;
|
|
table.coverImg = item.coverImg;
|
|
table.coverImg = item.coverImg;
|
|
|
|
+ table.tagIds = item.tagIds;
|
|
|
|
|
|
if (!state.editOverIds.includes(table.id)) {
|
|
if (!state.editOverIds.includes(table.id)) {
|
|
state.editOverIds.push(table.id);
|
|
state.editOverIds.push(table.id);
|