Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tools
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
tools
Commits
cec18779
Commit
cec18779
authored
Jan 28, 2023
by
庄欣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
f
parent
23b7a3c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
3 deletions
+17
-3
mp-remark-v4/js/index.js
+0
-2
mp-remark-v4/js/service.js
+1
-0
mp-remark-v4/js/util.js
+16
-1
No files found.
mp-remark-v4/js/index.js
View file @
cec18779
...
...
@@ -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
;
...
...
mp-remark-v4/js/service.js
View file @
cec18779
...
...
@@ -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
()
{
...
...
mp-remark-v4/js/util.js
View file @
cec18779
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment