Compare commits

..

No commits in common. "e7063b432d5af4f7e310c727c80a5483dbdb50eb" and "e2efeab20d41e1e2a940120176b7342af888998c" have entirely different histories.

3 changed files with 3 additions and 79 deletions

View File

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

View File

@ -138,12 +138,6 @@ export default {
align: 'center',
width: "300px"
},
{
text: '판매금액(캔)',
align: 'center',
sortable: false,
value: 'can',
},
{
text: '구매유저수',
align: 'center',

View File

@ -23,57 +23,6 @@
</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
@ -425,7 +374,6 @@ export default {
creator_id: null,
is_active: null,
selected_signature_can: {},
sort_type: 'NEWEST',
headers: [
{
@ -546,7 +494,7 @@ export default {
this.isLoading = true
try {
let res = await api.getSignatureList(this.page, this.sort_type);
let res = await api.getSignatureList(this.page);
if (res.status === 200 && res.data.success === true) {
const data = res.data.data
@ -732,22 +680,4 @@ 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>