", {
id: "canPlayBox",
css: {
width: "300px",
height: "500px",
position: "fixed",
top: "100px",
background: "rgba(255,255,255,1)",
right: "20px",
border: "1px solid #c1c1c1"
}
});
var status = $("
", {
text: "获取中...",
css: {
height: "30px",
"border-bottom": "1px solid",
"text-align": "center",
"line-height": "30px",
"color": "#4bccf2",
"font-weight": "bold"
},
click: function () {
playListBox.trigger("clear");
if (getPageNumber() == VUE_COURSE_PREVIEW) {
vue_findCourses(playListBox);
} else {
findCourses(playListBox);
}
}
});
status.appendTo(playListBox);
var listBox = $("
", {
css: {
height: "470px",
"overflow-y": "auto"
}
}).appendTo(playListBox);
playListBox.on("clear", function () {
status.text("获取中...");
listBox.empty();
});
// 添加绑定事件
playListBox.on("bind", function (e, data) {
if (status.text() == "获取中...") {
status.text("点击刷新");
}
var box = $("
", {
css: {
"border-bottom": "1px solid #c1c1c1",
"padding": "8px",
"line-height": "150%",
"border-bottom": "1px solid #c1c1c1",
"margin-bottom": "3px"
}
});
var ptitle = $("
", {
text: data.title,
title: data.title,
css: {
"font-size": "13px",
"white-space": "nowrap",
"overflow": "hidden",
"text-overflow": "ellipsis",
}
});
ptitle.appendTo(box);
var pstatus = $("
", {
text: "学习状态: " + data.status,
title: "学习状态: " + data.status,
css: {
"font-size": "12px",
"white-space": "nowrap",
"overflow": "hidden",
"text-overflow": "ellipsis",
"color": "#c1c1c1"
}
});
pstatus.appendTo(box);
var disabled = getCourses().findIndex(value => value.url == data.url) > -1;
var button = $("