uniapp实现页面开发中

java 复制代码
<template>  
  <view class="container">  
    <view class="loading-wrapper">  
		<image class="zhutu" src="/static/images/construct.jpg" mode="aspectFit"></image>
		<text class="loading-text">项目信息页面建设中...</text>  
      <!-- <image class="loading-image" src="/static/loading.gif" mode="aspectFit"></image> -->
    </view>  
  </view>  
</template>  
  
<script>  
export default {  
  data() {  
    return {  
      // 你可以在这里添加页面的数据  
    };  
  },  
  methods: {  
    // 你可以在这里添加页面的方法  
  },  
  onLoad() {  
    // 页面加载时的逻辑  
  }  
};  
</script>  
  
<style scoped>  
.container {  
  display: flex;  
  flex-direction: column;  
  align-items: center;  
  justify-content: center;  
  height: 100vh;  
  background-color: #f5f5f5;  
}  
  
.loading-wrapper {  
  display: flex;  
  flex-direction: column;  
  align-items: center;  
  justify-content: center;  
  text-align: center;  
}  
  
.loading-text {  
  margin-top: 20px;  
  font-size: 16px;  
  color: #333;  
}  
  
.loading-image {  
  width: 100px;  
  height: 100px;  
  margin-top: 20px;  
}  
</style>
相关推荐
两年半的个人练习生^_^6 分钟前
每日一学:设计模式之原型模式
java·开发语言·设计模式·原型模式
elseif1237 分钟前
初学者必背【考点清单(大全)】【上篇】
开发语言·c++·笔记·学习·循环结构·分支结构·考纲
并不喜欢吃鱼8 分钟前
从零开始C++----二.(下篇)模版进阶与编译全过程的复习
开发语言·c++
234710212710 分钟前
4.17 学习笔记
开发语言·软件测试·笔记·python·学习
不知名的老吴25 分钟前
View的三大特性之一:迟绑定
开发语言·c++·算法
深邃-33 分钟前
【Web安全】-基础环境安装:虚拟机安装,JDK环境安装(1)
java·开发语言·计算机网络·安全·web安全·网络安全·安全架构
前端老石人35 分钟前
前端网站换肤功能的 3 种实现方案
开发语言·前端·css·html
Legendary_00837 分钟前
LDR6500U PD取电芯片:赋能设备Type-C升级,解锁高效安全取电新体验
c语言·开发语言·安全
冴羽yayujs37 分钟前
2026 年的 JavaScript 已经不是你认识的 JavaScript 了
前端·javascript
Rust研习社42 分钟前
深入理解 Rust 裸指针:内存操作的双刃剑
开发语言·后端·rust