Skip to content

Commit 1177c33

Browse files
committed
doc: add jeecg sponser
1 parent 0f11e4e commit 1177c33

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

site/src/layouts/Footer.vue

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@
6363
<a-col :md="6" :sm="24" :xs="24">
6464
<div class="footer-center">
6565
<h2>{{ isCN ? '友情链接' : 'Links' }}</h2>
66+
<div v-if="showJeecg">
67+
<a href="http://www.jeecg.com/" target="_blank">Jeecg</a>
68+
</div>
6669
<div>
6770
<a href="https://cn.vuejs.org/" target="_blank">Vue</a>
6871
</div>
@@ -75,9 +78,6 @@
7578
<div>
7679
<a href="https://antdv.formilyjs.org/" target="_blank">@formily/antdv</a>
7780
</div>
78-
<div v-if="showPpy()">
79-
<a href="https://www.pengpengyu.com/" target="_blank">砰砰鱼</a>
80-
</div>
8181
</div>
8282
</a-col>
8383
<a-col :md="6" :sm="24" :xs="24">
@@ -114,17 +114,18 @@
114114
</template>
115115
<script>
116116
import dayjs from 'dayjs';
117+
import { computed } from 'vue';
117118
export default {
118119
props: {
119120
isCN: Boolean,
120121
},
121122
setup() {
122-
const showPpy = () => {
123-
return dayjs().isBefore(dayjs('2021-06-15'));
124-
};
123+
const showJeecg = computed(() => {
124+
return dayjs().isBefore(dayjs('2023-09-10'));
125+
});
125126
return {
126127
dayjs,
127-
showPpy,
128+
showJeecg,
128129
};
129130
},
130131
};

site/src/vueDocs/sponsor.en-US.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can consult me by email [[email protected]]([email protected]).
3333
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/ant-design-vue#sponsor)]
3434

3535
<div>
36-
<a href="http://www.powerproject.com.cn/" target="_blank"><img src="http://www.powerproject.com.cn/wp-content/uploads/2019/08/2019080215041192.png"></a>
36+
<a href="http://www.jeecg.com/" target="_blank"><img src="https://aliyuncdn.antdv.com/jeecg-logo.png" height="64"></a>
3737
<a href="https://opencollective.com/ant-design-vue/sponsor/0/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/0/avatar.svg"></a>
3838
<a href="https://opencollective.com/ant-design-vue/sponsor/1/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/1/avatar.svg"></a>
3939
<a href="https://opencollective.com/ant-design-vue/sponsor/2/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/2/avatar.svg"></a>

site/src/vueDocs/sponsor.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ant-design-vue 是采用 MIT 许可的开源项目,使用完全免费。 但
3737
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/ant-design-vue#sponsor)]
3838

3939
<div>
40-
<a href="http://www.powerproject.com.cn/" target="_blank"><img src="http://www.powerproject.com.cn/wp-content/uploads/2019/08/2019080215041192.png"></a>
40+
<a href="http://www.jeecg.com/" target="_blank"><img src="https://aliyuncdn.antdv.com/jeecg-logo.png" height="64"></a>
4141
<a href="https://opencollective.com/ant-design-vue/sponsor/0/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/0/avatar.svg"></a>
4242
<a href="https://opencollective.com/ant-design-vue/sponsor/1/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/1/avatar.svg"></a>
4343
<a href="https://opencollective.com/ant-design-vue/sponsor/2/website" target="_blank"><img src="https://opencollective.com/ant-design-vue/sponsor/2/avatar.svg"></a>

0 commit comments

Comments
 (0)