home | actionText | actionLink | features | footer | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true |
快速上手 → |
/guide/ |
|
Apache License 2.0 | Copyright © 2019-present Javen |
<dependency>
<groupId>com.github.javen205</groupId>
<artifactId>IJPay-All</artifactId>
<version>latest-version</version>
</dependency>
::: tip 当然,不同的支付方式也可以单独添加相关依赖 了解更多 :::
<script> // import { Notification } from 'element-ui'; export default { mounted () { // 统计 var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?6a929f536123c72265ba5e8d9467ab5f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); // 替换 latest-version let xmlHttp = new XMLHttpRequest(); xmlHttp.open("GET", "https://img.shields.io/maven-central/v/com.github.javen205/IJPay.json", false); xmlHttp.send(null); let versionInfo = JSON.parse(xmlHttp.responseText).value.replace('v', ''); let codeNodeList = document.querySelectorAll('code'); for (let i = 0; i < codeNodeList.length; i++) { codeNodeList[i].innerHTML = codeNodeList[i].innerHTML.replace('latest-version', versionInfo); } // 通知 this.$notify({ offset: 50, title: 'IJPay VIP 服务', message: 'VIP 服务可提供一对一在线答疑,加入 VIP 为您节省更多时间去陪恋人、家人以及朋友 :) 交流群:723992875', type: 'success', showClose: true, duration: 0, onClick: function() { // Notification.closeAll(); window.open("https://javen205.gitee.io/ijpay/guide/donate/"); } }); this.$notify({ offset: 200, title: 'TNWX 微信系开发脚手架', message: '同时支持微信公众号、微信小程序、企业微信、企业微信开放平台、微信支付、微信小游戏。可接入到任何 Node.js 框架(Express、Nest、Egg、Koa 等)', type: 'success', showClose: true, duration: 0, onClick: function() { window.open("https://gitee.com/Javen205/TNWX"); } }); } } </script>