Skip to content

Commit

Permalink
fix: wujie 初始化赋值
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaviilee committed Nov 15, 2024
1 parent 149aebf commit fcc5900
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/common-header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- 资料片过滤 -->
<zlpBy @filter="filterMeta" type="zlp" :client="client"></zlpBy>
<!-- 无界筛选 -->
<versionBy :value="is_wujie" @filter="onWujieChange"></versionBy>
<versionBy v-if="client == 'std'" :value="is_wujie" @filter="onWujieChange"></versionBy>
</div>
<div class="m-filter--right">
<!-- 排序过滤 -->
Expand Down Expand Up @@ -57,7 +57,7 @@ export default {
rows: 1,
is_wujie: 0,
is_wujie: '',
}
},
computed: {
Expand Down
2 changes: 1 addition & 1 deletion src/views/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default {
search: "", //搜索字串
lang: "", //语言
zlp: "", //资料片
is_wujie: 0, //无界过滤
is_wujie: "", //无界过滤
drawer: false,
drawer_title: "",
Expand Down

0 comments on commit fcc5900

Please sign in to comment.