mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
6 years ago
|
function str2Obj(str){
|
||
|
var data = {};
|
||
|
kv = str.split('&');
|
||
|
for(i in kv){
|
||
|
v = kv[i].split('=');
|
||
|
data[v[0]] = v[1];
|
||
|
}
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
function pPost(method,args,callback, title){
|
||
|
|
||
|
var _args = null;
|
||
|
if (typeof(args) == 'string'){
|
||
|
_args = JSON.stringify(str2Obj(args));
|
||
|
} else {
|
||
|
_args = JSON.stringify(args);
|
||
|
}
|
||
|
|
||
|
var _title = '正在获取...';
|
||
|
if (typeof(title) != 'undefined'){
|
||
|
_title = title;
|
||
|
}
|
||
|
|
||
|
var loadT = layer.msg(_title, { icon: 16, time: 0, shade: 0.3 });
|
||
|
$.post('/plugins/run', {name:'go-fastdfs-web', func:method, args:_args}, function(data) {
|
||
|
layer.close(loadT);
|
||
|
if (!data.status){
|
||
|
layer.msg(data.msg,{icon:0,time:2000,shade: [0.3, '#000']});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if(typeof(callback) == 'function'){
|
||
|
callback(data);
|
||
|
}
|
||
|
},'json');
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
function pRead(){
|
||
|
var readme = '<ul class="help-info-text c7">';
|
||
|
readme += '<li>根据配置查看,开启相应防火墙端口</li>';
|
||
|
readme += '</ul>';
|
||
|
|
||
|
$('.soft-man-con').html(readme);
|
||
|
}
|