This commit is contained in:
pengxiaolong
2025-06-23 22:00:46 +08:00
parent acc81963e9
commit 36a240f854
79 changed files with 426 additions and 154 deletions

View File

@@ -1,45 +1,57 @@
<template>
<view class="forum">
<view class="bg">
<image class="bgImg" src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/HomeBackground.png" mode="scaleToFill" />
<view class="forum">
<view class="bg">
<image
class="bgImg"
src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/HomeBackground.png"
mode="scaleToFill"
/>
</view>
<view class="title">论坛</view>
</view>
<view class="content">
<view class="building">
<view>
<image
style="width: 500rpx;"
src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/building.png"
mode="scaleToFill"
/>
</view>
<view class="buildingTitle">建设中~</view>
</view>
<view class="content">
<view class="building">
<view>
<image
style="width: 500rpx"
src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/building.png"
mode="scaleToFill"
/>
</view>
<view class="buildingTitle">建设中~</view>
</view>
<view class="tabBar">
</view>
<view class="tabBar">
<tabBar :tabIndex="1"></tabBar>
</view>
</template>
<script>
import tabBar from "../../components/tabBar/tabBar";
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
},
components: {
tabBar
}
export default {
data() {
return {
title: "Hello",
};
},
onShareAppMessage(res) {
if (res.from === "menu") {
return {
title: "分享",
path: getCurrentPages()[getCurrentPages().length - 1].route,
};
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
},
components: {
tabBar,
},
};
</script>
<style scoped>
@@ -64,14 +76,14 @@ import tabBar from "../../components/tabBar/tabBar";
font-weight: bold;
}
/* 建设中 */
.content{
.content {
position: absolute;
top: 250rpx;
left: 0rpx;
right: 0rpx;
bottom: 100rpx;
}
.building{
.building {
width: 100%;
height: 90%;
display: flex;
@@ -79,11 +91,11 @@ import tabBar from "../../components/tabBar/tabBar";
justify-content: center;
align-items: center;
}
.buildingTitle{
.buildingTitle {
font-size: 40rpx;
color: #999999;
font-weight: bold;
text-align: center;
margin-top: 50rpx;
}
</style>
</style>