doc: add jeecg sponser
parent
0f11e4ecd4
commit
1177c336cb
|
@ -63,6 +63,9 @@
|
|||
<a-col :md="6" :sm="24" :xs="24">
|
||||
<div class="footer-center">
|
||||
<h2>{{ isCN ? '友情链接' : 'Links' }}</h2>
|
||||
<div v-if="showJeecg">
|
||||
<a href="http://www.jeecg.com/" target="_blank">Jeecg</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="https://cn.vuejs.org/" target="_blank">Vue</a>
|
||||
</div>
|
||||
|
@ -75,9 +78,6 @@
|
|||
<div>
|
||||
<a href="https://antdv.formilyjs.org/" target="_blank">@formily/antdv</a>
|
||||
</div>
|
||||
<div v-if="showPpy()">
|
||||
<a href="https://www.pengpengyu.com/" target="_blank">砰砰鱼</a>
|
||||
</div>
|
||||
</div>
|
||||
</a-col>
|
||||
<a-col :md="6" :sm="24" :xs="24">
|
||||
|
@ -114,17 +114,18 @@
|
|||
</template>
|
||||
<script>
|
||||
import dayjs from 'dayjs';
|
||||
import { computed } from 'vue';
|
||||
export default {
|
||||
props: {
|
||||
isCN: Boolean,
|
||||
},
|
||||
setup() {
|
||||
const showPpy = () => {
|
||||
return dayjs().isBefore(dayjs('2021-06-15'));
|
||||
};
|
||||
const showJeecg = computed(() => {
|
||||
return dayjs().isBefore(dayjs('2023-09-10'));
|
||||
});
|
||||
return {
|
||||
dayjs,
|
||||
showPpy,
|
||||
showJeecg,
|
||||
};
|
||||
},
|
||||
};
|
||||
|
|
|
@ -33,7 +33,7 @@ You can consult me by email [antdv@foxmail.com](antdv@foxmail.com).
|
|||
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)]
|
||||
|
||||
<div>
|
||||
<a href="http://www.powerproject.com.cn/" target="_blank"><img src="http://www.powerproject.com.cn/wp-content/uploads/2019/08/2019080215041192.png"></a>
|
||||
<a href="http://www.jeecg.com/" target="_blank"><img src="https://aliyuncdn.antdv.com/jeecg-logo.png" height="64"></a>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
|
|
|
@ -37,7 +37,7 @@ ant-design-vue 是采用 MIT 许可的开源项目,使用完全免费。 但
|
|||
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)]
|
||||
|
||||
<div>
|
||||
<a href="http://www.powerproject.com.cn/" target="_blank"><img src="http://www.powerproject.com.cn/wp-content/uploads/2019/08/2019080215041192.png"></a>
|
||||
<a href="http://www.jeecg.com/" target="_blank"><img src="https://aliyuncdn.antdv.com/jeecg-logo.png" height="64"></a>
|
||||
<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>
|
||||
<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>
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue