#6825 - vnTable_searchBtn_sticky #488

Merged
jsegarra merged 9 commits from 6825_vnTable_searchBtn_sticky into dev 2024-07-08 09:07:17 +00:00
8 changed files with 4 additions and 12 deletions
Showing only changes of commit c2da14e59a - Show all commits

View File

@ -74,7 +74,6 @@ const route = useRoute();
const router = useRouter();
const quasar = useQuasar();
const filterPanel = ref(null);
const DEFAULT_MODE = 'card';
jsegarra marked this conversation as resolved Outdated
Outdated
Review

sin ref, diria que no hace falta

sin ref, diria que no hace falta

Ya no tiene ninguna funcionalidad el tener VnFilterPanel con el ref.

Ya no tiene ninguna funcionalidad el tener VnFilterPanel con el ref.
const TABLE_MODE = 'table';
const mode = ref(DEFAULT_MODE);
@ -206,7 +205,6 @@ defineExpose({
>
<QScrollArea class="fit">
<VnFilterPanel
ref="filterPanel"
:data-key="$attrs['data-key']"
jsegarra marked this conversation as resolved Outdated
Outdated
Review

Esto hace falta?

Esto hace falta?
:search-button="true"
v-model="params"

View File

@ -1,5 +1,5 @@
<script setup>
import { onMounted, ref, computed, onUpdated } from 'vue';
import { onMounted, ref, computed } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';

View File

@ -1,5 +1,5 @@
<script setup>
import { onMounted, ref, computed, reactive, onUnmounted } from 'vue';
import { onMounted, onUnmounted } from 'vue';
import { useI18n } from 'vue-i18n';
import RightMenu from 'src/components/common/RightMenu.vue';
import VnTable from 'components/VnTable/VnTable.vue';

View File

@ -1,8 +1,6 @@
<script setup>
import { onMounted, ref, computed } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
import { useRoute } from 'vue-router';
import EntryFilter from './EntryFilter.vue';
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
import { useStateStore } from 'stores/useStateStore';
@ -12,8 +10,6 @@ import { toDate } from 'src/filters';
const stateStore = useStateStore();
const { t } = useI18n();
const route = useRoute();
const entityId = computed(() => route.params.id);
const tableRef = ref();
const entryFilter = {

View File

@ -6,7 +6,6 @@ import FetchData from 'components/FetchData.vue';
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
import VnInput from 'src/components/common/VnInput.vue';
import toDateString from 'filters/toDateString';
import VnInputDate from 'components/common/VnInputDate.vue';
const { t } = useI18n();

View File

@ -4,7 +4,6 @@ import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
import { useStateStore } from 'stores/useStateStore';
import VnPaginate from 'src/components/ui/VnPaginate.vue';
import { toDate, toDateString, toCurrency } from 'src/filters/index';
import TicketSummary from './Card/TicketSummary.vue';
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
import TicketFilter from './TicketFilter.vue';

View File

@ -1,5 +1,5 @@
<script setup>
import { ref, computed, onUpdated } from 'vue';
import { ref, computed } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';

View File

@ -1,4 +1,4 @@
describe('My entry when is supplier', () => {
describe('EntryMy when is supplier', () => {
jsegarra marked this conversation as resolved Outdated
Outdated
Review

EntryMy

EntryMy
beforeEach(() => {
cy.viewport(1920, 1080);
cy.login('supplier');