first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
function get(params) {
$.ajax({
type: 'GET',
data: params.data,
url: 'http://127.0.0.1:9090'+params.url,
success: function(res) {
if(res.resultcode == "200") {
params.callback(res.result)
} else {
YDUI.dialog.toast('请求失败', 'error', 1000);
}
},
error: function(err) {}
})
}