File tree 4 files changed +13
-9
lines changed
4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ import { openSponsorLink, sponsorUrl } from "../data/sponsors";
89
89
<style scoped>
90
90
.pricing-subtitle {
91
91
text-align : center ;
92
- margin-bottom : 2.5 rem ;
93
- color : var ( --vp-c-text-2 ) ;
92
+ margin-bottom : 3 rem ;
93
+ color : #fd7600 ;
94
94
}
95
95
96
96
.pricing-container {
@@ -101,7 +101,7 @@ import { openSponsorLink, sponsorUrl } from "../data/sponsors";
101
101
102
102
.pricing-title {
103
103
text-align : center ;
104
- margin-bottom : 2 rem ;
104
+ margin-bottom : 2.5 rem ;
105
105
}
106
106
107
107
.pricing-cards {
Original file line number Diff line number Diff line change 16
16
class =" brand-item gold"
17
17
@click =" openSponsorLink(brand.href)"
18
18
>
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" />
20
20
<span v-if =" !isCollapsed && brand.alt.includes('成为赞助商')" class =" brand-text" >
21
21
{{ brand.alt }}
22
22
</span >
34
34
class =" brand-item"
35
35
@click =" openSponsorLink(brand.href)"
36
36
>
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" />
38
38
<span v-if =" !isCollapsed && brand.alt.includes('成为赞助商')" class =" brand-text" >
39
39
{{ brand.alt }}
40
40
</span >
54
54
</template >
55
55
56
56
<script setup>
57
- import { computed , onMounted } from " vue" ;
57
+ import { computed } from " vue" ;
58
58
import {
59
59
defaultSponsor ,
60
60
generalSponsors ,
Original file line number Diff line number Diff line change 2
2
export const plans = {
3
3
openSource : {
4
4
title : '开源版' ,
5
- description : '适合个人开发者和小型项目 ' ,
5
+ description : ' 个人开发者与独立项目之选 ' ,
6
6
features : [
7
7
'全部基础功能' ,
8
8
'全量架构源码' ,
@@ -17,7 +17,7 @@ export const plans = {
17
17
} ,
18
18
professional : {
19
19
title : '专业版' ,
20
- description : '适合中小企业和专业开发者 ' ,
20
+ description : '专业开发者的得力助手 ' ,
21
21
price : {
22
22
current : '¥99' ,
23
23
original : '¥1999'
@@ -33,7 +33,7 @@ export const plans = {
33
33
} ,
34
34
enterprise : {
35
35
title : '企业版' ,
36
- description : '适合大型企业和关键业务 ' ,
36
+ description : '为团队与大规模项目而生 ' ,
37
37
price : {
38
38
current : '¥xxxx' ,
39
39
original : '¥xxxx'
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ editLink: false
7
7
<Price />
8
8
9
9
<style setup >
10
+ .vp-doc-title {
11
+ display : none !important ;
12
+ }
13
+
10
14
.vp-doc-meta {
11
15
display : none !important ;
12
16
}
You can’t perform that action at this time.
0 commit comments