layer_index = layer.load(1, {
shade: [0.1, '#fff'] //0.1透明度的白色背景
});
$.get(
DocConfig.server+"/api/item/myList",
{},
function(data){
var html = '';
if (data.error_code == 0) {
console.log(data.data);
var json = data.data;
for (var i = 0; i < json.length; i++) {
html += '
' ;
html += '';
html += '';
html += '';
html += '';
if (json[i]['top'] > 0 ) {
html += '';
}else{
html += '';
}
html += ''+json[i]['item_name']+'
';
html += '';
html += ' ';
};
html += '';
html += '';
html += ''+lang["new_item"]+'
';
html += '';
$("#item-list").html(html);
$("#add-item").show();
layer.closeAll();
bind_events();
} else {
$.alert(lang["save_fail"]);
}
},
"json"
);
function bind_events(){
//当鼠标放在项目上时将浮现设置和置顶图标
$(".item-thumbnail").mouseover(function(){
$(this).find(".item-setting").show();
$(this).find(".item-top").show();
$(this).find(".item-down").show();
});
//当鼠标离开项目上时将隐藏设置和置顶图标
$(".item-thumbnail").mouseout(function(){
$(this).find(".item-setting").hide();
$(this).find(".item-top").hide();
$(this).find(".item-down").hide();
});
//点击项目设置图标时
$(".item-setting").click(function(){
var url = $(this).data("src");
window.location.href = url ;
return false;
});
//点击项目置顶图标时
$(".item-top").click(function(){
var action = $(this).data("action");
var item_id = $(this).data("item_id");
$.post(
DocConfig.server+"/api/item/top",
{"action":action,"item_id":item_id},
function(data){
window.location.reload();
},
"json"
);
return false;
});
//点击取消置顶图标时
$(".item-down").click(function(){
var action = 'cancel';
var item_id = $(this).data("item_id");
$.post(
DocConfig.server+"/api/item/top",
{"action":action,"item_id":item_id},
function(data){
window.location.reload();
},
"json"
);
return false;
});
}