|
|
@@ -1,9 +1,14 @@
|
|
|
<template>
|
|
|
<div class="page">
|
|
|
- <div class="title">关于我们</div>
|
|
|
+ <div class="logo">
|
|
|
+ <van-image width="100" height="100" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg" radius="20" />
|
|
|
+ <div class="text1">拉索宇宙</div>
|
|
|
+ <div class="text2">v 1.0.0</div>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="title">关于我们</div> -->
|
|
|
<van-cell-group :border="false">
|
|
|
- <van-cell title="平台简介" is-link :to="{ path: '/introduction' }" />
|
|
|
- <van-cell title="了解更多" is-link :to="{ path: '/question' }" />
|
|
|
+ <!-- <van-cell title="平台简介" is-link :to="{ path: '/introduction' }" /> -->
|
|
|
+ <!-- <van-cell title="了解更多" is-link :to="{ path: '/question' }" /> -->
|
|
|
<van-cell
|
|
|
title="用户协议"
|
|
|
is-link
|
|
|
@@ -13,9 +18,10 @@
|
|
|
page: 'service'
|
|
|
}
|
|
|
}"
|
|
|
+ :border="false"
|
|
|
/>
|
|
|
- <van-cell title="隐私政策" is-link :to="{ path: '/agreement' }" />
|
|
|
- <van-cell title="联系客服" @click="show = true" is-link />
|
|
|
+ <van-cell title="隐私政策" is-link :to="{ path: '/agreement' }" :border="false" />
|
|
|
+ <!-- <van-cell title="联系客服" @click="show = true" is-link /> -->
|
|
|
</van-cell-group>
|
|
|
|
|
|
<van-overlay :show="show" @click="show = false">
|
|
|
@@ -82,23 +88,17 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-.title {
|
|
|
- background-color: @bg;
|
|
|
- padding: 10px 16px;
|
|
|
- font-size: 20px;
|
|
|
- font-weight: bold;
|
|
|
- color: @text0;
|
|
|
- line-height: 30px;
|
|
|
-}
|
|
|
.page {
|
|
|
- background-color: @bg3;
|
|
|
-}
|
|
|
-
|
|
|
-.van-cell-group {
|
|
|
background-color: @bg;
|
|
|
+ padding: 16px;
|
|
|
}
|
|
|
+
|
|
|
.van-cell {
|
|
|
padding: 23px 16px;
|
|
|
+ background-color: @bg2;
|
|
|
+}
|
|
|
+.van-cell + .van-cell {
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
.logout {
|
|
|
padding: 50px 30px 50px;
|
|
|
@@ -115,4 +115,16 @@ export default {
|
|
|
margin-top: 30px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.logo {
|
|
|
+ .flex-col();
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .text1 {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 26px;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|