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>
相关推荐
huatian5几秒前
Rust 语法整理
开发语言·后端·rust
阿蔹1 分钟前
Python基础语法三---函数和数据容器
开发语言·python
xingzhemengyou11 分钟前
Python 多线程同步
开发语言·python
2501_916766546 分钟前
【Java】final关键字
java·开发语言
2501_9462309814 分钟前
Cordova&OpenHarmony维修搜索功能实现
javascript
前端不太难16 分钟前
RN 列表里的「局部状态」和「全局状态」边界
开发语言·javascript·ecmascript
foo1st31 分钟前
HTML中常用HASH算法使用笔记
javascript·html·哈希算法
38242782731 分钟前
python3网络爬虫开发实战 第二版:绑定回调
开发语言·数据库·python
星月心城37 分钟前
面试八股文-JavaScript(第五天)
开发语言·javascript·ecmascript
wjs202441 分钟前
PostgreSQL 时间/日期处理指南
开发语言