feat(components): \!
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-30 13:22:42 +08:00
parent 1d8532eccf
commit b95fb364df
3 changed files with 24 additions and 18 deletions

View File

@@ -48,15 +48,16 @@
hover-class="none">
</navigator>
<MerList :get-user-location="getUserLocal" />
<Popup :src="require('../../static/popTip.png')" />
</view>
</template>
<script setup lang="ts">
import Taro from '@tarojs/taro';
import {ref} from 'vue';
import {getHomeList, getStoreList} from '@/api/home';
import {getHomeList} from '@/api/home';
import MerList from '@/components/MerList.vue';
import {showTips} from '@/utils';
import Popup from '@/components/Popup.vue';
const statusBarHeight = Taro.getSystemInfoSync().statusBarHeight;
const BarHeight = ref((statusBarHeight as number) + 7);