Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sh-ds
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李良停
sh-ds
Commits
d14dbef8
Commit
d14dbef8
authored
Jun 21, 2021
by
曹雷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix ie11 select
parent
e09a49ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
0 deletions
+57
-0
settings.json
.vscode/settings.json
+3
-0
statistics.html
...center-agent/src/main/resources/templates/statistics.html
+54
-0
No files found.
.vscode/settings.json
0 → 100644
View file @
d14dbef8
{
"liveServer.settings.port"
:
5501
}
\ No newline at end of file
eden-authcenter-agent/src/main/resources/templates/statistics.html
View file @
d14dbef8
...
...
@@ -132,6 +132,60 @@
</div>
</div>
<!-- iview使用了includes方法,兼容ie11 -->
<script>
if
(
!
Array
.
prototype
.
includes
)
{
Object
.
defineProperty
(
Array
.
prototype
,
'includes'
,
{
value
:
function
(
valueToFind
,
fromIndex
)
{
if
(
this
==
null
)
{
throw
new
TypeError
(
'"this" is null or not defined'
);
}
// 1. Let O be ? ToObject(this value).
var
o
=
Object
(
this
);
// 2. Let len be ? ToLength(? Get(O, "length")).
var
len
=
o
.
length
>>>
0
;
// 3. If len is 0, return false.
if
(
len
===
0
)
{
return
false
;
}
// 4. Let n be ? ToInteger(fromIndex).
// (If fromIndex is undefined, this step produces the value 0.)
var
n
=
fromIndex
|
0
;
// 5. If n ≥ 0, then
// a. Let k be n.
// 6. Else n
<
0
,
// a. Let k be len + n.
// b. If k
<
0
,
let
k
be
0
.
var
k
=
Math
.
max
(
n
>=
0
?
n
:
len
-
Math
.
abs
(
n
),
0
);
function
sameValueZero
(
x
,
y
)
{
return
x
===
y
||
(
typeof
x
===
'number'
&&
typeof
y
===
'number'
&&
isNaN
(
x
)
&&
isNaN
(
y
));
}
// 7. Repeat, while k
<
len
while
(
k
<
len
)
{
// a. Let elementK be the result of ? Get(O, ! ToString(k)).
// b. If SameValueZero(valueToFind, elementK) is true, return true.
if
(
sameValueZero
(
o
[
k
],
valueToFind
))
{
return
true
;
}
// c. Increase k by 1.
k
++
;
}
// 8. Return false
return
false
;
}
});
}
</script>
<script
type=
"text/javascript"
>
var
baseUrl
=
"/"
;
...
...
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