Yizhan-app/pages/my/aboutUs.vue

109 lines
2.0 KiB
Vue

<template>
<view id="myapp" class="bodyA">
<!-- 滚动区域 -->
<view class="content">
<!-- loading -->
<!-- 内容 -->
<view class="appInfo">
<img src="../../static/icon.png" alt="">
<view class="name">智慧后勤</view>v2.0.0
</view>
<!-- <view class="list" @click="toDetail">
功能介绍<van-icon class="right" name="arrow"></van-icon>
</view> -->
<view class="list">版权所有<span class="right">国家电网有限公司</span></view>
<view class="botMsg">国网信通产业集团安徽继远软件提供技术服务</view>
</view>
<!-- 底部 -->
<!-- <view class="footer">
<van-button class="footerBtn">按钮</van-button>
</view> -->
</view>
</template>
<script>
import {
getNoticeData
} from '@/common/api.js'
import {
callbackRequest
} from '@/common/util.js'
export default {
data() {
return {
};
},
mounted() {
},
methods: {
// code
toDetail() {
uni.navigateTo({
url: '/pages/my/fnIntroduce'
})
},
back() {
// window.location.href = "index.html"
window.history.go(-1)
},
},
}
</script>
<style lang="scss" scoped>
.content {
font-size: .38*74upx;
color: #0e1a24;
padding: .3243*74upx;
}
.appInfo {
display: flex;
flex-direction: column;
align-items: center;
color: #4b5b68;
margin-top: 1.0811*74upx;
margin-bottom: 1.1351*74upx;
}
.appInfo img {
width: 2.3243*74upx;
height: 2.3243*74upx;
border-radius: 20upx;
}
.appInfo .name {
font-size: .4865*74upx;
font-weight: bold;
color: #0e1a24;
margin: .3243*74upx 0 .0541*74upx 0;
}
.list {
display: flex;
align-items: center;
font-size: .4324*74upx;
color: #0e1a24;
margin-bottom: .3243*74upx;
background-color: #fff;
padding: .5405*74upx .3243*74upx;
border-radius: .3*74upx;
}
.list .right {
margin-left: auto;
color: #97a5b1;
}
.botMsg {
font-size: .3243*74upx;
color: #bdc4d2;
text-align: center;
position: absolute;
bottom: 1.0811*74upx;
left: 0;
width: 100%;
}
</style>