Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
3039b745
Commit
3039b745
authored
Dec 07, 2022
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
升级echarts到最新版本5.4.0
parent
39298d80
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
12 deletions
+6
-12
package.json
ruoyi-ui/package.json
+1
-1
index.vue
ruoyi-ui/src/components/RightPanel/index.vue
+0
-6
BarChart.vue
ruoyi-ui/src/views/dashboard/BarChart.vue
+1
-1
LineChart.vue
ruoyi-ui/src/views/dashboard/LineChart.vue
+1
-1
PieChart.vue
ruoyi-ui/src/views/dashboard/PieChart.vue
+1
-1
RaddarChart.vue
ruoyi-ui/src/views/dashboard/RaddarChart.vue
+1
-1
index.vue
ruoyi-ui/src/views/monitor/cache/index.vue
+1
-1
No files found.
ruoyi-ui/package.json
View file @
3039b745
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
"axios"
:
"0.24.0"
,
"axios"
:
"0.24.0"
,
"clipboard"
:
"2.0.8"
,
"clipboard"
:
"2.0.8"
,
"core-js"
:
"3.25.3"
,
"core-js"
:
"3.25.3"
,
"echarts"
:
"
4.9
.0"
,
"echarts"
:
"
5.4
.0"
,
"element-ui"
:
"2.15.10"
,
"element-ui"
:
"2.15.10"
,
"file-saver"
:
"2.0.5"
,
"file-saver"
:
"2.0.5"
,
"fuse.js"
:
"6.4.3"
,
"fuse.js"
:
"6.4.3"
,
...
...
ruoyi-ui/src/components/RightPanel/index.vue
View file @
3039b745
...
@@ -39,7 +39,6 @@ export default {
...
@@ -39,7 +39,6 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
this
.
insertToBody
()
this
.
addEventClick
()
this
.
addEventClick
()
},
},
beforeDestroy
()
{
beforeDestroy
()
{
...
@@ -56,11 +55,6 @@ export default {
...
@@ -56,11 +55,6 @@ export default {
this
.
show
=
false
this
.
show
=
false
window
.
removeEventListener
(
'click'
,
this
.
closeSidebar
)
window
.
removeEventListener
(
'click'
,
this
.
closeSidebar
)
}
}
},
insertToBody
()
{
const
elx
=
this
.
$refs
.
rightPanel
const
body
=
document
.
querySelector
(
'body'
)
body
.
insertBefore
(
elx
,
body
.
firstChild
)
}
}
}
}
}
}
...
...
ruoyi-ui/src/views/dashboard/BarChart.vue
View file @
3039b745
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
echarts
from
'echarts'
import
*
as
echarts
from
'echarts'
;
require
(
'echarts/theme/macarons'
)
// echarts theme
require
(
'echarts/theme/macarons'
)
// echarts theme
import
resize
from
'./mixins/resize'
import
resize
from
'./mixins/resize'
...
...
ruoyi-ui/src/views/dashboard/LineChart.vue
View file @
3039b745
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
echarts
from
'echarts'
import
*
as
echarts
from
'echarts'
;
require
(
'echarts/theme/macarons'
)
// echarts theme
require
(
'echarts/theme/macarons'
)
// echarts theme
import
resize
from
'./mixins/resize'
import
resize
from
'./mixins/resize'
...
...
ruoyi-ui/src/views/dashboard/PieChart.vue
View file @
3039b745
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
echarts
from
'echarts'
import
*
as
echarts
from
'echarts'
;
require
(
'echarts/theme/macarons'
)
// echarts theme
require
(
'echarts/theme/macarons'
)
// echarts theme
import
resize
from
'./mixins/resize'
import
resize
from
'./mixins/resize'
...
...
ruoyi-ui/src/views/dashboard/RaddarChart.vue
View file @
3039b745
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
echarts
from
'echarts'
import
*
as
echarts
from
'echarts'
;
require
(
'echarts/theme/macarons'
)
// echarts theme
require
(
'echarts/theme/macarons'
)
// echarts theme
import
resize
from
'./mixins/resize'
import
resize
from
'./mixins/resize'
...
...
ruoyi-ui/src/views/monitor/cache/index.vue
View file @
3039b745
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
<
script
>
<
script
>
import
{
getCache
}
from
"@/api/monitor/cache"
;
import
{
getCache
}
from
"@/api/monitor/cache"
;
import
echarts
from
"echarts"
;
import
*
as
echarts
from
"echarts"
;
export
default
{
export
default
{
name
:
"Cache"
,
name
:
"Cache"
,
...
...
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