| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <template>
- <view class="container">
- <!-- <u-navbar :is-fixed="false" :border-bottom="false" :is-back="true" back-icon-name="arrow-leftward" title="关于"
- back-icon-size="35" :background="{ background: '#3F9EFF' }" title-color="#000">
- </u-navbar> -->
- <uNavBar dark :fixed="true" backgroundColor="#3F9EFF" statusBar="false" left-icon="left" left-text="返回"
- :title="title" @clickLeft="toBack">
- </uNavBar>
- <view class="content">
- <view class="form">
- <view class="cell">
- <view class="name">APP版本</view>
- <input type="text" placeholder="" disabled="true" v-model="version" class="ipt"
- placeholder-class="hold" style="color: #82848A;" />
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import http from '@/http/api.js'
- import pickRegions from '@/components/pick-regions/pick-regions.vue';
- import uNavBar from '@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue'
- import {
- version
- } from '@/common/setting.js'
- export default {
- components: {
- pickRegions,
- uNavBar
- },
- data() {
- return {
- version: '',
- title:'关于'
- };
- },
- onLoad() {
- this.version=version;
- },
- methods: {
- toBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- }
- };
- </script>
- <style lang="scss">
- .container {
- background-color: #f7f7f7;
- min-height: 100vh;
- padding: 0 0 200rpx;
- overflow: hidden;
- }
- .complie {
- vertical-align: middle;
- padding: 10rpx 20rpx;
- font-size: 32rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #14b9c8;
- }
- .content {
- background-color: #ffffff;
- overflow: hidden;
- }
- .avatar {
- margin-top: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- font-size: 30rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #14b9c8;
- .avatar-image {
- width: 162rpx;
- height: 162rpx;
- background: #ffffff;
- border-radius: 50%;
- background-color: #82848a;
- margin-bottom: 15rpx;
- }
- }
- .form {
- padding: 0 36rpx;
- .cell {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 40rpx 0;
- font-size: 30rpx;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #666666;
- &:not(:last-of-type) {
- border-bottom: 2rpx solid #efefef;
- }
- .ipt {
- flex: 1;
- margin-left: 40rpx;
- text-align: right;
- font-size: 23rpx;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #333333;
- }
- .hold {
- font-size: 27rpx;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #c8c8ce;
- }
- }
- }
- .back {
- margin-top: 40rpx;
- text-align: center;
- height: 109rpx;
- background: #ffffff;
- font-size: 34rpx;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #141414;
- line-height: 109rpx;
- }
- </style>
|