You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

81 lines
1.2 KiB

<template>
<view class="zanwei">
<view class="head">
<view class="imgs">
<image src="../../static/fanhui.png" mode="" @click="back"></image>
</view>
<view class="title">
绵阳·云上招商城
</view>
</view>
<view class="img">
<image src="https://zsy-m.mianyang.cn/upload/2022/06/10/20ff2094-2d8f-4235-9949-98ba5dc31ddb.png" mode=""></image>
</view>
<view class="text">
项目正在建设中...
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
back(){
uni.navigateBack({
delta:1
})
}
}
}
</script>
<style lang="scss" scoped>
.zanwei{
width: 100vw;
height: 100vh;
.head{
width: 750rpx;
font-size: 36rpx;
font-weight: 500;
color: #000000;
text-align: center;
margin-top: 80rpx;
padding: 0rpx 25rpx;
box-sizing: border-box;
display: flex;
.imgs{
width: 30rpx;
height: 30rpx;
image{
width: 30rpx;
height: 30rpx;
}
}
.title{
width: 670rpx;
}
}
.img{
width: 324rpx;
height: 324rpx;
margin: 0px auto;
margin-top: 132rpx;
image{
width: 324rpx;
height: 324rpx;
}
}
.text{
width: 240rpx;
font-size: 26rpx;
font-weight: 400;
color: #636676;
margin: 0rpx auto;
}
}
</style>