Skip to content

Commit

Permalink
chore: eslint check update
Browse files Browse the repository at this point in the history
  • Loading branch information
cern committed Apr 25, 2023
1 parent 9c736e4 commit 998ef37
Showing 1 changed file with 50 additions and 46 deletions.
96 changes: 50 additions & 46 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,54 +13,54 @@
</a-layout-header>
<a-layout-content>
<div class="main-content">
<div class="layout-content">
<div class="layout-content-header">
<a-breadcrumb style="margin: 16px 0">
<a-breadcrumb-item>Home</a-breadcrumb-item>
<a-breadcrumb-item>
<nuxt-link to="/song">
歌单
</nuxt-link>
</a-breadcrumb-item>
</a-breadcrumb>
<div class="cotent-search">
<div>
<a-select
class="cotent-search-select"
:default-value="selectionDefaultValue"
@change="handleChange"
>
<a-select-option value="all">
全部语言
</a-select-option>
<a-select-option value="zh">
中文
</a-select-option>
<a-select-option value="en">
英语
</a-select-option>
<a-select-option value="ko" disabled>
韩语
</a-select-option>
<a-select-option value="ja">
日语
</a-select-option>
</a-select>
<div class="layout-content">
<div class="layout-content-header">
<a-breadcrumb style="margin: 16px 0">
<a-breadcrumb-item>Home</a-breadcrumb-item>
<a-breadcrumb-item>
<nuxt-link to="/song">
歌单
</nuxt-link>
</a-breadcrumb-item>
</a-breadcrumb>
<div class="cotent-search">
<div>
<a-select
class="cotent-search-select"
:default-value="selectionDefaultValue"
@change="handleChange"
>
<a-select-option value="all">
全部语言
</a-select-option>
<a-select-option value="zh">
中文
</a-select-option>
<a-select-option value="en">
英语
</a-select-option>
<a-select-option value="ko" disabled>
韩语
</a-select-option>
<a-select-option value="ja">
日语
</a-select-option>
</a-select>
</div>
<a-input-search
v-model="inputVal"
class="cotent-search-search"
placeholder="请输入歌名"
@search="onSearch"
/>
</div>
<a-input-search
v-model="inputVal"
class="cotent-search-search"
placeholder="请输入歌名"
@search="onSearch"
/>
</div>
<div class="layout-content-content">
<a-config-provider :locale="locale">
<nuxt-child keep-alive :datalist="searchList" to="/song" />
</a-config-provider>
</div>
</div>
<div class="layout-content-content">
<a-config-provider :locale="locale">
<nuxt-child keep-alive :datalist="searchList" to="/song" />
</a-config-provider>
</div>
</div>
</div>
</a-layout-content>
<a-layout-footer style="text-align: center">
Expand Down Expand Up @@ -204,7 +204,11 @@ body,
.ant-layout-content {
--transparent: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
background-image: -webkit-cross-fade(var(--transparent),url('../static/Dionysus.png'),100%);
background-image: -webkit-cross-fade(
var(--transparent),
url('../static/Dionysus.png'),
100%
);
}
.main-content {
Expand Down

0 comments on commit 998ef37

Please sign in to comment.