多一些不为什么的坚持🤳
贤蛋 🥚大眼萌 ,一名很普通但不想普通的程序媛🙊
📝本文章收录于专栏:Vue3.0移动端项目-旅游网
第二篇:【Vue3.0移动端项目–旅游网】–配置tabBar &首页搭建
第三篇:【Vue3.0移动端项目–旅游网】-- 城市页面搭建
通过 Git 管理项目,养成良好的开发习惯,可以创建分支。最后开发完可以合并分支。
git checkout -b loading
git branch
loding 是在发送网络请求等待结果的期间显示的,顾设置为全局组件
src/components/loading/loading.vue
在App.vue文件中引入该组件
完整代码:
<template>
<div
class="loading"
v-if="mainStore.isShowLoading"
>
<div
class="loding-bg"
@click="loadingClick"
>
<van-loading
class="loading-moule"
type="spinner"
color="#38B0DE"
size="32px"
text-size="16px"
vertical
>加载中...</van-loading>
</div>
</div>
</template>
<script setup>
import { useMainStore } from "@/stores/modules/main";
const mainStore = useMainStore()
const loadingClick = () => {
mainStore.isShowLoading = false
}
</script>
<style lang="less" scoped>
.loading {
.loding-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.1);
}
.loading-moule {
position: fixed;
top: 50%;
left: 0;
width: 100%;
z-index: 99;
}
}
</style>
效果:
bug: 地址栏输入对象的路由页面,导航栏不会触发 active 状态
git add .
git commit -m "loading分支"
git push -u origin loading
git checkout mater
git merge loading
git push
git branch -d loading
补充:
网络数据请求地址数据
项目github 地址:https://github.com/fdfd-0313/cz-trip.git