19 lines
535 B
JavaScript
19 lines
535 B
JavaScript
(function(){
|
|
X.pageLogic['customname'] = {
|
|
init : function(){
|
|
|
|
updataselect_list();
|
|
|
|
X.uploadfile("data_mana/add_select_map","#fileupload",function(res){
|
|
updataselect_list();
|
|
});
|
|
|
|
function updataselect_list(){
|
|
X.api("data_mana/select_list","get",{},function(res){
|
|
X.laytpldata('#customname-content-box-dot',res,'.customname-content-box');
|
|
})
|
|
};
|
|
|
|
}
|
|
};
|
|
})(); |