feat: 升级版本至1.4.0并添加外部资源备用机制

- 版本号从1.3.5升级至1.4.0
- 创建外部资源备用加载系统,解决国内访问问题
- 添加Google Fonts本地备用字体文件
- 集成Geetest验证码本地备用版本
- 实现QRCode.js本地备用功能
- 创建智能资源加载器,自动切换到本地资源
- 修改所有外部资源引用,支持自动备用机制
- 添加资源配置文件,便于管理和维护
This commit is contained in:
2026-01-11 20:03:15 +08:00
parent 31d8fde308
commit a01f161bca
14 changed files with 414 additions and 10 deletions

View File

@@ -0,0 +1,33 @@
/* QRCode.js - Local Fallback */
(function() {
'use strict';
// 简化的 QRCode 备用实现
window.QRCode = function(element, options) {
this.element = typeof element === 'string' ? document.getElementById(element) : element;
this.options = options || {};
if (this.element) {
this.element.innerHTML = '<div style="width: 128px; height: 128px; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; background: #f9f9f9; font-size: 12px; text-align: center;">' +
'二维码生成器<br/>暂时不可用</div>';
}
return this;
};
// 添加基本方法
window.QRCode.prototype = {
makeCode: function(text) {
console.warn('QRCode 本地备用版本 - 功能受限');
if (this.element) {
this.element.innerHTML = '<div style="width: 128px; height: 128px; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; background: #f9f9f9; font-size: 10px; text-align: center; word-break: break-all; padding: 5px;">' +
text + '</div>';
}
},
clear: function() {
if (this.element) {
this.element.innerHTML = '';
}
}
};
})();