Compare commits
No commits in common. "e7063b432d5af4f7e310c727c80a5483dbdb50eb" and "e2efeab20d41e1e2a940120176b7342af888998c" have entirely different histories.
e7063b432d
...
e2efeab20d
|
@ -1,7 +1,7 @@
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
|
|
||||||
async function getSignatureList(page, sort) {
|
async function getSignatureList(page) {
|
||||||
return Vue.axios.get('/admin/live/signature-can?page=' + (page - 1) + "&size=20" + "&sort-type=" + sort);
|
return Vue.axios.get('/admin/live/signature-can?page=' + (page - 1) + "&size=20");
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createSignature(formData) {
|
async function createSignature(formData) {
|
||||||
|
|
|
@ -138,12 +138,6 @@ export default {
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: "300px"
|
width: "300px"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
text: '판매금액(캔)',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'can',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: '구매유저수',
|
text: '구매유저수',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|
|
@ -23,57 +23,6 @@
|
||||||
</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
|
||||||
|
@ -425,7 +374,6 @@ 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: [
|
||||||
{
|
{
|
||||||
|
@ -546,7 +494,7 @@ export default {
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
|
|
||||||
try {
|
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) {
|
if (res.status === 200 && res.data.success === true) {
|
||||||
const data = res.data.data
|
const data = res.data.data
|
||||||
|
@ -732,22 +680,4 @@ 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>
|
||||||
|
|
Loading…
Reference in New Issue