first commit
This commit is contained in:
24
pages/us/us.css
Normal file
24
pages/us/us.css
Normal file
@@ -0,0 +1,24 @@
|
||||
/* 重试页面开始 */
|
||||
.error-block{
|
||||
height: 60%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
top: -10%;
|
||||
margin-top: 300rpx;
|
||||
}
|
||||
.retry_button{
|
||||
margin-top: 10rpx;
|
||||
border-radius: 10%;
|
||||
}
|
||||
.us-pic{
|
||||
height: 200rpx;
|
||||
width: 200rpx;
|
||||
}
|
||||
.us-text{
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
/* 重试页面结束 */
|
||||
33
pages/us/us.vue
Normal file
33
pages/us/us.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<view>
|
||||
<back :pageName='pageName' :pageNameFlag="pageNameFlag"></back>
|
||||
<view class="error-block">
|
||||
<image src="/static/pic/aboutUs.png" class="us-pic"></image>
|
||||
<view class="us-text">
|
||||
灿能云 1.2.1
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import back from '../../components/back.vue';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
pageName:'关于我们',
|
||||
pageNameFlag:1
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
},
|
||||
components: {
|
||||
back
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@import url("us.css");
|
||||
</style>
|
||||
Reference in New Issue
Block a user