Commit 9bc1d68f authored by Tình Trương's avatar Tình Trương

update

parent d252d47f
...@@ -142,12 +142,6 @@ export default defineComponent({ ...@@ -142,12 +142,6 @@ export default defineComponent({
const position: Ref<string | undefined> = ref(); const position: Ref<string | undefined> = ref();
const phone: Ref<string | undefined> = ref(); const phone: Ref<string | undefined> = ref();
const status: Ref<boolean | number> = ref(true); const status: Ref<boolean | number> = ref(true);
const ratingOptions = ref([
{ id: 1, text: 'VIP_1' },
{ id: 2, text: 'VIP_2' },
]);
const ratingSelected: Ref<number | undefined> = ref();
const getListCustomer = () => { const getListCustomer = () => {
// const response = (await api({ // const response = (await api({
// url: API_PATHS.getListArtist, // url: API_PATHS.getListArtist,
...@@ -255,8 +249,6 @@ export default defineComponent({ ...@@ -255,8 +249,6 @@ export default defineComponent({
dataTest, dataTest,
totalPage, totalPage,
changePageSize, changePageSize,
ratingSelected,
ratingOptions,
}; };
}, },
}); });
<template> <template>
<div class="row q-col-gutter-sm flex-center q-mt-sm"> <div class="row q-col-gutter-sm flex-center q-mt-sm">
<div class="col-auto text-h6 text-weight-regular flex flex-center q-mr-md">
{{ $t('customer.title') }}
<q-separator vertical spaced />
</div>
<q-space></q-space> <q-space></q-space>
<div class="col-2"> <div class="col-2">
<q-input <q-input
...@@ -21,8 +25,8 @@ ...@@ -21,8 +25,8 @@
</div> </div>
<div class="col-2" dense outlined> <div class="col-2" dense outlined>
<q-select <q-select
v-model="ratingSelected" v-model="ratings"
:options="ratingOptions" :options="ratingsOptions"
option-label="text" option-label="text"
option-value="id" option-value="id"
dense dense
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment