|
@@ -4,14 +4,14 @@
|
4
|
4
|
<div class="app-container">
|
5
|
5
|
<el-input @keyup.enter.native="handleFilter" style="width: 200px;" class="filter-item" placeholder="名稱" v-model="listQuery.name">
|
6
|
6
|
</el-input>
|
7
|
|
- <el-select clearable @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.chipsSort" placeholder="點數">
|
|
7
|
+ <!-- <el-select clearable @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.chipsSort" placeholder="點數">
|
8
|
8
|
<el-option v-for="item in chipsSortOptions" :key="item.label" :label="item.label" :value="item.key">
|
9
|
9
|
</el-option>
|
10
|
10
|
</el-select>
|
11
|
11
|
<el-select clearable @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.updatedSort" placeholder="更新時間">
|
12
|
12
|
<el-option v-for="item in updatedSortOptions" :key="item.label" :label="item.label" :value="item.key">
|
13
|
13
|
</el-option>
|
14
|
|
- </el-select>
|
|
14
|
+ </el-select> -->
|
15
|
15
|
<el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleFilter">搜尋</el-button>
|
16
|
16
|
</div>
|
17
|
17
|
<el-table :data="list" v-loading.body="listLoading" element-loading-text="Loading" border fit highlight-current-row
|