fix: 微信登录补充保存username和role
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-04-04 07:35:21 +00:00
parent 756444ef2b
commit d12eea7693
10597 changed files with 817047 additions and 3 deletions

24
node_modules/licia/MediaQuery.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
var Emitter = require('./Emitter');
exports = Emitter.extend({
className: 'MediaQuery',
initialize: function(query) {
var _this = this;
this.callSuper(Emitter, 'initialize');
this._listener = function() {
_this.emit(_this.isMatch() ? 'match' : 'unmatch');
};
this.setQuery(query);
},
setQuery: function(query) {
if (this._mql) {
this._mql.removeListener(this._listener);
}
this._mql = window.matchMedia(query);
this._mql.addListener(this._listener);
},
isMatch: function() {
return this._mql.matches;
}
});
module.exports = exports;