This commit is contained in:
2025-11-24 16:00:42 +08:00
parent 375b1b449b
commit 0520603957
43 changed files with 1318 additions and 940 deletions

View File

@@ -1,4 +1,4 @@
"use strict";
const BASE_URL = "http://localhost:8080";
const BASE_URL = "http://172.19.45.41:8080";
exports.BASE_URL = BASE_URL;
//# sourceMappingURL=../../.sourcemap/mp-weixin/utils/CommonValues.js.map

View File

@@ -2,6 +2,9 @@
const common_vendor = require("../common/vendor.js");
const utils_CommonValues = require("./CommonValues.js");
const api_login = require("../api/login.js");
function GET(url, data) {
return SIMPLE(url, data, "GET");
}
function GET_TOKEN(url, data, token) {
return SIMPLE_TOKEN(url, data, token, "GET");
}
@@ -67,6 +70,7 @@ function SIMPLE_TOKEN(url, data, token, method) {
});
});
}
exports.GET = GET;
exports.GET_TOKEN = GET_TOKEN;
exports.POST = POST;
//# sourceMappingURL=../../.sourcemap/mp-weixin/utils/request.js.map