Skip to content

Commit 111503a

Browse files
committed
update docs
1 parent 34889fb commit 111503a

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

docs/.vuepress/components/Price.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ import { openSponsorLink, sponsorUrl } from "../data/sponsors";
8989
<style scoped>
9090
.pricing-subtitle {
9191
text-align: center;
92-
margin-bottom: 2.5rem;
93-
color: var(--vp-c-text-2);
92+
margin-bottom: 3rem;
93+
color: #fd7600;
9494
}
9595
9696
.pricing-container {
@@ -101,7 +101,7 @@ import { openSponsorLink, sponsorUrl } from "../data/sponsors";
101101
102102
.pricing-title {
103103
text-align: center;
104-
margin-bottom: 2rem;
104+
margin-bottom: 2.5rem;
105105
}
106106
107107
.pricing-cards {

docs/.vuepress/components/SponsorPanel.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
class="brand-item gold"
1717
@click="openSponsorLink(brand.href)"
1818
>
19-
<img v-if="brand.link" :alt="brand.alt" :src="brand.link" class="brand-image" />
19+
<img v-if="!isCollapsed && brand.link" :alt="brand.alt" :src="brand.link" class="brand-image" />
2020
<span v-if="!isCollapsed && brand.alt.includes('成为赞助商')" class="brand-text">
2121
{{ brand.alt }}
2222
</span>
@@ -34,7 +34,7 @@
3434
class="brand-item"
3535
@click="openSponsorLink(brand.href)"
3636
>
37-
<img v-if="brand.link" :alt="brand.alt" :src="brand.link" class="brand-image" />
37+
<img v-if="!isCollapsed && brand.link" :alt="brand.alt" :src="brand.link" class="brand-image" />
3838
<span v-if="!isCollapsed && brand.alt.includes('成为赞助商')" class="brand-text">
3939
{{ brand.alt }}
4040
</span>
@@ -54,7 +54,7 @@
5454
</template>
5555

5656
<script setup>
57-
import { computed, onMounted } from "vue";
57+
import { computed } from "vue";
5858
import {
5959
defaultSponsor,
6060
generalSponsors,

docs/.vuepress/data/price.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export const plans = {
33
openSource: {
44
title: '开源版',
5-
description: '适合个人开发者和小型项目',
5+
description: ' 个人开发者与独立项目之选',
66
features: [
77
'全部基础功能',
88
'全量架构源码',
@@ -17,7 +17,7 @@ export const plans = {
1717
},
1818
professional: {
1919
title: '专业版',
20-
description: '适合中小企业和专业开发者',
20+
description: '专业开发者的得力助手',
2121
price: {
2222
current: '¥99',
2323
original: '¥1999'
@@ -33,7 +33,7 @@ export const plans = {
3333
},
3434
enterprise: {
3535
title: '企业版',
36-
description: '适合大型企业和关键业务',
36+
description: '为团队与大规模项目而生',
3737
price: {
3838
current: '¥xxxx',
3939
original: '¥xxxx'

docs/price.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ editLink: false
77
<Price />
88

99
<style setup>
10+
.vp-doc-title {
11+
display: none !important;
12+
}
13+
1014
.vp-doc-meta {
1115
display: none !important;
1216
}

0 commit comments

Comments
 (0)