ufutx_love_mp/src/pages/users/aboutLove.wpy
2024-09-21 11:02:39 +08:00

75 lines
2.0 KiB
Plaintext

<template>
<view class="mainAbout">
<view class="mainIcon text-center">
<image mode="widthFix" src="https://images.ufutx.com/202004/11/4ffffbdb6ff48be065b089edb7321de8.png"></image>
</view>
<view class="font_32 color-333 text-center text-black bold">福恋 | 真实交友 </view>
<view class="font_24 color-666 text-center title">{{versions}} </view>
<view class="textStyle font_28 text-shadow text-black color-666">
婚恋行业的后起之秀,我们的使命是:推进单身进入婚恋、组建合一家庭、幸福一生!秉承“使命、开放、互助、幸福”的核心价值观,推进正确的爱情观和婚姻观;帮助建立幸福美满、合一包容家庭;为孩子提供稳定健康的成长环境。
</view>
</view>
</template>
<script>
import wepy from '@wepy/core'
import https from '../../mixins/https'
import base from '../../mixins/base'
const app = getApp().$wepy.$options
wepy.page({
mixins: [base, https ],
config: {
navigationBarTitleText: '关于福恋'
},
data: {
versions: ''
},
onShow() {
this.versions = app.globalData.versions
},
onLoad() {},
onPullDownRefresh() {},
methods: {
}
})
</script>
<style lang="less">
//@import "../../styles/custom/fn.less";
//@import "../../styles/custom/reset.less";
page{
background: #ffffff;
.title{
//letter-spacing: 2rpx;
margin-top: 12rpx;
}
.mainAbout{
.mainIcon{
margin: 76rpx auto;
margin-bottom: 12rpx;
image{
width: 150rpx;
height: auto;
}
}
.textStyle{
padding: 22rpx 30rpx;
text-indent: 2em;
line-height: 60rpx;
letter-spacing: 4rpx;
}
}
}
</style>
<config>
{
navigationBarTitleText: '关于福恋',
enablePullDownRefresh: false,
backgroundColorTop: '#f2f2f2',
backgroundColorBottom: '#f2f2f2',
usingComponents: {
}
}
</config>