134 lines
2.8 KiB
Plaintext
134 lines
2.8 KiB
Plaintext
<template>
|
|
<view class="page">
|
|
<scroll-view direction="vertical" :show-scrollbar="false" style="flex:1;">
|
|
<view class="logo-box">
|
|
<view class="logo">
|
|
<uni-icons type="heart-filled" size="56" color="#fff"></uni-icons>
|
|
</view>
|
|
<text class="app-name">缘友</text>
|
|
<text class="app-slogan">让相遇更有温度</text>
|
|
</view>
|
|
|
|
<view class="list-container">
|
|
<view class="list-item" @click="toast('用户协议')">
|
|
<text class="list-text">用户协议</text>
|
|
<uni-icons type="right" size="16" color="#999"></uni-icons>
|
|
</view>
|
|
<view class="list-item" @click="toast('隐私政策')">
|
|
<text class="list-text">隐私政策</text>
|
|
<uni-icons type="right" size="16" color="#999"></uni-icons>
|
|
</view>
|
|
<view class="list-item" @click="toast('去评分')">
|
|
<text class="list-text">给我们评分</text>
|
|
<uni-icons type="right" size="16" color="#999"></uni-icons>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="intro">
|
|
<text class="intro-text">
|
|
缘友是一款专注于真实社交的交友应用,基于同城与兴趣为你推荐合适的人。
|
|
我们倡导真诚、友善的互动,帮助你遇见那个对的人。
|
|
</text>
|
|
</view>
|
|
|
|
<text class="version">缘友 v{{ appVersion }}</text>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
const appVersion = ref('2.5.0')
|
|
|
|
function toast(msg : string) {
|
|
uni.showToast({ title: msg, icon: 'none' })
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.page {
|
|
flex: 1;
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
.logo-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 80rpx 0 50rpx;
|
|
}
|
|
|
|
.logo {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border-radius: 36rpx;
|
|
background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 10rpx 30rpx rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
.app-name {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.app-slogan {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.list-container {
|
|
margin: 0 30rpx;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
|
|
.list-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.list-item:active {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.list-text {
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.intro {
|
|
margin: 30rpx;
|
|
padding: 30rpx;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.intro-text {
|
|
font-size: 26rpx;
|
|
color: #888;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.version {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 24rpx;
|
|
color: #bbb;
|
|
margin: 40rpx 0 80rpx;
|
|
}
|
|
</style>
|