暖心人
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.
 
 
 

78 lines
2.5 KiB

<template>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="#ffffff"
></u-navbar>
<u-row :custom-style="{padding:'38rpx 66rpx'}">
<u-col :span="12">
<view class="content">
<view style="font-size: 32rpx;font-weight: 400;color: #020B18;line-height: 50rpx;">
知理就是懂得做人的道理具备独立思考的能力 知理的人从书本中学习做人的道理在实践中理解事物的发展规律在学习知识探寻真理的过程中他们形成了自己的世界观和人生观能够独立思考不会人云亦云
</view>
<image style="margin:20px 0;" :src="staticImage.bg" mode="widthFix" class="img"/>
<view style="font-size: 32rpx;font-weight: 400;color: #020B18;line-height: 50rpx;">
知理就是懂得做人的道理具备独立思考的能力 知理的人从书本中学习做人的道理在实践中理解事物的发展规律在学习知识探寻真理的过程中他们形成了自己的世界观和人生观能够独立思考不会人云亦云
</view>
<image style="margin:20px 0;" :src="staticImage.bg" mode="widthFix" class="img"/><view>
知理就是懂得做人的道理具备独立思考的能力 知理的人从书本中学习做人的道理在实践中理解事物的发展规律在学习知识探寻真理的过程中他们形成了自己的世界观和人生观能够独立思考不会人云亦云
</view>
<image :src="staticImage.bg" mode="widthFix" class="img"/>
</view>
</u-col>
</u-row>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
title: '关于我们',
loading: true,
staticImage: {
bg: imghost + '/static/image/BG.png',
newIcon: imghost + '/static/image/new-icon.png',
},
isTop: false,
}
},
onLoad() {
},
computed: {
api() {
return api
},
},
methods: {
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>