Commit cec18779 by 庄欣

f

parent 23b7a3c1
......@@ -11,10 +11,8 @@ iconDom.setAttribute("class", "cicon");
iconDom.onclick = function () {
showUi();
}
extendDom.appendChild(iconDom)
extendDom.style = "z-index:999;";
const TYPE_WORK = 1;
const TYPE_READING = 2;
const TYPE_USER = 3;
......
......@@ -442,6 +442,7 @@ function showUserInfo(user) {
$(".userQq").text(user.qq);
$(".userMobile").text(user.mobile);
$(".userNickname").text(user.nickname);
$(".userWx").text(user.wx);
}
function show() {
......
......@@ -67,7 +67,21 @@ function getData(api, data, callback) {
});
}
function propLoading() {
function showLoading() {
var mask = document.createElement("div");
mask.id = "____mask___";
mask.style.zIndex = 9999;
mask.style.width = "100%";
mask.style.height = "100%";
mask.style.position = "fixed";
mask.style.left = 0;
mask.style.top = 0;
mask.style.backgroundColor = "#000000";
mask.style.opacity = "80%";
body.appendChild(mask);
}
function removeLoading() {
document.getElementById("____mask___");
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment