Skip to content

Commit

Permalink
fix(item): 按目录筛选
Browse files Browse the repository at this point in the history
  • Loading branch information
X3ZvaWQ committed Nov 15, 2024
1 parent 5a94148 commit 89c9f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/item/sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default {
if (AucGenre === null) return {};
let params = {
AucGenre: AucGenre === "" ? "empty" : Number(AucGenre),
AucSubTypeID: data.AucSubType === "" ? "empty" : Number(data.AucSubType),
AucSubTypeID: data.AucSubType === "" ? "" : Number(data.AucSubType),
};
return { name: "normal", params: params };
},
Expand Down

0 comments on commit 89c9f4b

Please sign in to comment.