test #35

Merged
klaus merged 3 commits from test into main 2024-06-03 22:24:24 +00:00
2 changed files with 73 additions and 3 deletions
Showing only changes of commit e7063b432d - Show all commits

View File

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

View File

@ -23,6 +23,57 @@
</v-btn> </v-btn>
</v-col> </v-col>
</v-row> </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-row>
<v-col> <v-col>
<v-data-table <v-data-table
@ -374,6 +425,7 @@ export default {
creator_id: null, creator_id: null,
is_active: null, is_active: null,
selected_signature_can: {}, selected_signature_can: {},
sort_type: 'NEWEST',
headers: [ headers: [
{ {
@ -494,7 +546,7 @@ export default {
this.isLoading = true this.isLoading = true
try { 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) { if (res.status === 200 && res.data.success === true) {
const data = res.data.data const data = res.data.data
@ -680,4 +732,22 @@ export default {
display: block; display: block;
margin: 0 auto; 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> </style>