Compare commits
3 Commits
76b1a65f9f
...
3cce6621ad
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cce6621ad | ||
|
|
5d08291ef6 | ||
|
|
9ce22a7949 |
@@ -34,7 +34,6 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { inject, computed, toRaw } from 'vue';
|
import { inject, computed, toRaw } from 'vue';
|
||||||
import config from '@/config.js';
|
|
||||||
const { insertSortData, navTo, vacanciesTo } = inject('globalFunction');
|
const { insertSortData, navTo, vacanciesTo } = inject('globalFunction');
|
||||||
import { useRecommedIndexedDBStore } from '@/stores/useRecommedIndexedDBStore.js';
|
import { useRecommedIndexedDBStore } from '@/stores/useRecommedIndexedDBStore.js';
|
||||||
const recommedIndexDb = useRecommedIndexedDBStore();
|
const recommedIndexDb = useRecommedIndexedDBStore();
|
||||||
|
|||||||
@@ -55,6 +55,11 @@ import { storeToRefs } from 'pinia';
|
|||||||
import { useColumnCount } from '@/hook/useColumnCount';
|
import { useColumnCount } from '@/hook/useColumnCount';
|
||||||
import img from '@/static/icon/filter.png';
|
import img from '@/static/icon/filter.png';
|
||||||
const { longitudeVal, latitudeVal } = storeToRefs(useLocationStore());
|
const { longitudeVal, latitudeVal } = storeToRefs(useLocationStore());
|
||||||
|
const statusBarHeight = ref(0);
|
||||||
|
// #ifdef H5
|
||||||
|
const sysInfo = uni.getSystemInfoSync();
|
||||||
|
statusBarHeight.value = sysInfo.statusBarHeight || 0;
|
||||||
|
// #endif
|
||||||
const searchValue = ref('');
|
const searchValue = ref('');
|
||||||
const historyList = ref([]);
|
const historyList = ref([]);
|
||||||
const searchParams = ref({});
|
const searchParams = ref({});
|
||||||
|
|||||||
Reference in New Issue
Block a user