시그니처 캔 리스트 - 정렬 추가

This commit is contained in:
Yu Sung 2024-05-30 13:08:45 +09:00
parent 00616f917b
commit e7063b432d
2 changed files with 73 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import Vue from 'vue';
async function getSignatureList(page) {
return Vue.axios.get('/admin/live/signature-can?page=' + (page - 1) + "&size=20");
async function getSignatureList(page, sort) {
return Vue.axios.get('/admin/live/signature-can?page=' + (page - 1) + "&size=20" + "&sort-type=" + sort);
}
async function createSignature(formData) {

View File

@ -23,6 +23,57 @@
</v-btn>
</v-col>
</v-row>
<v-row class="row-sort">
<v-col>
<input
id="sort-newest"
v-model="sort_type"
type="radio"
value="NEWEST"
class="radio-sort"
@change="changeSortType"
>
<label
for="sort-newest"
class="radio-label-sort"
>
최신순
</label>
</v-col>
<v-col>
<input
id="sort-can-high"
v-model="sort_type"
type="radio"
value="CAN_HIGH"
class="radio-sort"
@change="changeSortType"
>
<label
for="sort-can-high"
class="radio-label-sort"
>
높은캔순
</label>
</v-col>
<v-col>
<input
id="sort-can-low"
v-model="sort_type"
type="radio"
value="CAN_LOW"
class="radio-sort"
@change="changeSortType"
>
<label
for="sort-can-low"
class="radio-label-sort"
>
낮은캔순
</label>
</v-col>
<v-col cols="10" />
</v-row>
<v-row>
<v-col>
<v-data-table
@ -374,6 +425,7 @@ export default {
creator_id: null,
is_active: null,
selected_signature_can: {},
sort_type: 'NEWEST',
headers: [
{
@ -494,7 +546,7 @@ export default {
this.isLoading = true
try {
let res = await api.getSignatureList(this.page);
let res = await api.getSignatureList(this.page, this.sort_type);
if (res.status === 200 && res.data.success === true) {
const data = res.data.data
@ -680,4 +732,22 @@ export default {
display: block;
margin: 0 auto;
}
.row-sort {
margin-top: 40px;
}
.radio-sort {
display: none;
}
.radio-label-sort {
font-weight: normal;
color: black;
}
.radio-sort:checked + .radio-label-sort {
font-weight: bold;
color: #3bb9f1;
}
</style>