Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
dataease
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
njgzx
dataease
Commits
fcb74448
提交
fcb74448
authored
2月 11, 2022
作者:
wangjiahao
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/dev' into dev
上级
7a1e79e3
7631b068
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
15 个修改的文件
包含
354 行增加
和
24 行删除
+354
-24
pom.xml
backend/pom.xml
+7
-2
PluginViewServer.java
...ava/io/dataease/plugins/server/view/PluginViewServer.java
+33
-0
DorisQueryProvider.java
.../io/dataease/provider/query/doris/DorisQueryProvider.java
+1
-9
pom.xml
frontend/pom.xml
+1
-1
chart.js
frontend/src/api/chart/chart.js
+7
-0
buddle-map.svg
frontend/src/icons/svg/buddle-map.svg
+2
-0
main.js
frontend/src/main.js
+2
-0
util.js
frontend/src/views/chart/chart/util.js
+281
-0
ChartEdit.vue
frontend/src/views/chart/view/ChartEdit.vue
+0
-0
ChartType.vue
frontend/src/views/chart/view/ChartType.vue
+0
-0
TabDataPreview.vue
frontend/src/views/dataset/data/TabDataPreview.vue
+5
-3
ViewTable.vue
frontend/src/views/dataset/data/ViewTable.vue
+3
-3
PluginCom.vue
frontend/src/views/system/plugin/PluginCom.vue
+10
-4
pom.xml
mobile/pom.xml
+1
-1
pom.xml
pom.xml
+1
-1
没有找到文件。
backend/pom.xml
浏览文件 @
fcb74448
...
...
@@ -5,7 +5,7 @@
<parent>
<artifactId>
dataease-server
</artifactId>
<groupId>
io.dataease
</groupId>
<version>
1.
7
.0
</version>
<version>
1.
8
.0
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
@@ -214,7 +214,12 @@
<dependency>
<groupId>
io.dataease
</groupId>
<artifactId>
dataease-plugin-interface
</artifactId>
<version>
1.7
</version>
<version>
1.8.0
</version>
</dependency>
<dependency>
<groupId>
io.dataease
</groupId>
<artifactId>
dataease-plugin-view
</artifactId>
<version>
1.8.0
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
...
...
backend/src/main/java/io/dataease/plugins/server/view/PluginViewServer.java
0 → 100644
浏览文件 @
fcb74448
package
io
.
dataease
.
plugins
.
server
.
view
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map.Entry
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
io.dataease.plugins.config.SpringContextUtil
;
import
io.dataease.plugins.view.entity.PluginViewType
;
import
io.dataease.plugins.view.service.ViewPluginService
;
@RequestMapping
(
"/plugin/view"
)
@RestController
public
class
PluginViewServer
{
@PostMapping
(
"/types"
)
public
List
<
PluginViewType
>
types
()
{
List
<
PluginViewType
>
result
=
new
ArrayList
<>();
Map
<
String
,
ViewPluginService
>
beanMap
=
SpringContextUtil
.
getApplicationContext
()
.
getBeansOfType
(
ViewPluginService
.
class
);
if
(
beanMap
.
keySet
().
size
()
==
0
)
{
return
result
;
}
for
(
Entry
<
String
,
ViewPluginService
>
entry
:
beanMap
.
entrySet
())
{
result
.
add
(
entry
.
getValue
().
viewType
());
}
return
result
;
}
}
backend/src/main/java/io/dataease/provider/query/doris/DorisQueryProvider.java
浏览文件 @
fcb74448
...
...
@@ -76,7 +76,7 @@ public class DorisQueryProvider extends QueryProvider {
@Override
public
String
createSQLPreview
(
String
sql
,
String
orderBy
)
{
return
"SELECT * FROM ("
+
sql
+
") AS tmp ORDER BY "
+
orderBy
+
"
LIMIT 0,1000"
;
return
"SELECT * FROM ("
+
sql
Fix
(
sql
)
+
") AS tmp
LIMIT 0,1000"
;
}
@Override
...
...
@@ -147,14 +147,6 @@ public class DorisQueryProvider extends QueryProvider {
if
(
customWheres
!=
null
)
wheres
.
add
(
customWheres
);
if
(
CollectionUtils
.
isNotEmpty
(
wheres
))
st_sql
.
add
(
"filters"
,
wheres
);
if
((
fields
.
size
()
>
0
))
{
xOrders
.
add
(
SQLObj
.
builder
()
.
orderDirection
(
"asc"
)
.
orderField
(
fields
.
get
(
0
).
getDataeaseName
())
.
orderAlias
(
String
.
format
(
SQLConstants
.
FIELD_ALIAS_X_PREFIX
,
"0"
))
.
build
());
st_sql
.
add
(
"orders"
,
xOrders
);
}
return
st_sql
.
render
();
}
...
...
frontend/pom.xml
浏览文件 @
fcb74448
...
...
@@ -6,7 +6,7 @@
<parent>
<artifactId>
dataease-server
</artifactId>
<groupId>
io.dataease
</groupId>
<version>
1.
7
.0
</version>
<version>
1.
8
.0
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
frontend/src/api/chart/chart.js
浏览文件 @
fcb74448
...
...
@@ -69,3 +69,10 @@ export function ajaxGetDataOnly(id, data) {
data
})
}
export
function
pluginTypes
()
{
return
request
({
url
:
'/plugin/view/types'
,
method
:
'post'
})
}
frontend/src/icons/svg/buddle-map.svg
0 → 100644
浏览文件 @
fcb74448
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
t=
"1644388374047"
class=
"icon"
viewBox=
"0 0 1303 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"4486"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"254.4921875"
height=
"200"
><defs><style
type=
"text/css"
></style></defs><path
d=
"M1303.272727 188.881455V82.106182h-8.704l-30.394182 32.861091c-4.328727 4.096-8.704 4.096-13.032727 4.096h-13.032727c-4.328727 0-13.032727-4.096-13.032727-8.192l-21.736728-16.430546c-4.328727-4.096-8.657455-8.238545-13.032727-8.238545h-26.065454c-4.328727 0-13.032727-4.096-17.361455-8.192L1099.077818 12.334545c-4.328727-4.142545-8.657455-8.238545-13.032727-8.238545L1055.650909 0h-8.704l-47.755636 16.430545v24.669091l-8.704 53.341091c0 4.096-4.328727 8.192-4.328728 8.192L977.454545 110.871273c-4.328727 4.096-8.704 4.096-13.032727 4.096h-8.704c-8.657455 0-17.361455 4.096-17.361454 12.334545l-8.704 20.48a18.199273 18.199273 0 0 0 17.408 24.669091h21.690181l17.408-12.334545 13.032728 8.238545c8.657455 8.192 4.328727 24.669091-8.704 28.718546l-39.098182 12.334545v24.669091h-39.098182l-8.704 24.622545-34.722909-4.142545c-8.704 0-13.032727 4.142545-17.408 8.238545l-8.657455 12.288 13.032728 12.334546-34.769455 36.957091c-4.328727 4.096-8.704 4.096-13.032727 4.096h-52.130909c-4.328727 0-8.704 0-13.032727 4.096l-13.032728 12.334545c-4.328727 4.096-8.704 4.096-13.032727 4.096h-39.098182c-4.328727 0-8.704 0-13.032727-4.096l-26.065455-20.526545c-4.328727 0-4.328727-4.096-8.704-4.096l-95.557818-4.096c-4.328727 0-8.704-4.142545-13.032727-8.238546l-52.130909-65.675636c-4.328727-4.142545-8.704-8.238545-13.032727-8.238546h-4.328728c-8.704 0-17.408-8.192-17.408-16.430545v-28.718545l-4.328727-24.669091c0-4.096-4.328727-8.192-8.704-12.288H390.981818c-4.328727 0-8.704-4.096-8.704-8.238546l-8.657454-24.622545H351.883636l-13.032727 16.430545h-21.736727v20.526546H273.687273c-4.328727 0-13.032727 4.096-13.032728 8.238545l-17.361454 24.622546c-4.375273 4.096-8.704 8.192-17.408 8.192h-21.690182c-8.704 0-17.408 8.238545-17.408 16.430545v24.669091c0 4.096 0 8.192-4.328727 8.192l-13.032727 20.48c-4.328727 4.189091-4.328727 8.238545-13.032728 8.238545l-47.802182 12.334546H34.769455c-4.375273 0-8.704 4.096-13.032728 4.096l-13.032727 16.430545C0 320.279273 0 324.421818 0 328.471273v20.526545h17.361455V414.72c0 4.096 4.375273 8.192 8.704 12.288l30.394181 24.669091c4.375273 4.096 4.375273 4.096 4.375273 8.192l8.657455 28.765091v53.341091H52.130909v32.861091c0 4.096 4.328727 8.192 4.328727 12.334545l39.098182 32.814546h21.736727l86.900364 82.152727 4.328727 4.096 73.867637 28.718545 13.032727-16.384h26.065455c8.657455 0 13.032727 4.096 17.361454 8.192l13.032727 24.669091c4.328727 4.049455 8.704 8.192 17.361455 8.192H390.981818c4.328727 0 4.328727 0 8.704-4.142545l43.426909-24.622546c4.328727-4.096 13.032727-4.096 17.361455 0l39.098182 16.430546v-16.430546h21.736727l8.704 24.669091v36.910546c0 4.142545 0 8.238545-4.375273 12.334545l-21.690182 20.526546v20.526545l17.361455 4.096c4.328727 0 13.032727 4.142545 13.032727 12.334545l4.328727 12.334546v28.718545l43.473455 28.765091a13.824 13.824 0 0 0 8.657455 4.096h8.704c8.704 0 17.361455-8.238545 17.361454-16.430545s8.704-16.430545 17.408-16.430546h43.426909c4.328727 0 8.704 0 13.032727-4.096l13.032728-8.192c8.704-4.142545 17.361455-4.142545 26.065454 4.096l30.394182 32.814546c4.375273 4.142545 8.704 8.238545 13.032727 8.238545h52.130909l4.375273 20.526546-30.440727 32.861091v20.48l21.736727 12.334545c8.704 4.142545 21.736727 0 26.065455-8.192l21.736727-28.765091c4.328727-4.096 4.328727-8.192 4.328727-12.288l-4.328727-28.765091c0-8.192 4.328727-20.48 13.032727-20.48l30.394182-8.238545h8.704l17.361455 4.096 21.736727-8.192 4.328727-20.526546c0-8.238545 8.704-12.334545 13.032727-12.334545l26.065455-8.238546c4.328727 0 4.328727 0 8.704-4.096l82.525091-69.818181c4.328727-4.096 4.328727-4.096 4.328727-8.192l13.032727-61.579637c0-4.096 4.375273-8.192 8.704-12.334545l21.736728-12.288c4.328727-4.142545 8.657455-12.334545 8.657454-16.430546l-8.657454-73.914181c0-4.096-4.375273-8.192-8.704-12.334546l-17.361455-12.288c-4.375273-4.142545-8.704-8.238545-8.704-12.334545l-4.328727-16.430546c0-4.096-4.375273-8.192-8.704-12.288l-30.394182-24.669091c-8.704-4.096-8.704-16.430545-4.375273-24.622545l17.408-28.765091c0-4.096 4.328727-4.096 8.657455-8.192l34.769454-12.334546v-20.48h-34.769454c-4.328727 0-13.032727 4.096-17.361455 8.192l-13.032727 16.430546-13.032727 12.288-4.328727-20.48-30.440728-8.238546L1081.716364 344.901818l8.704 12.334546v24.622545c0 4.096 0 12.334545 4.328727 12.334546l4.328727 4.096a29.090909 29.090909 0 0 0 26.065455 0l60.834909-57.483637c4.328727-4.096 4.328727-8.238545 4.328727-16.430545l-4.328727-16.430546 39.098182-4.096c4.328727 0 8.704-4.096 13.032727-4.096l34.769454-32.861091c4.328727-4.096 8.657455-12.334545 4.328728-20.526545l-21.736728-45.149091 17.408-16.430545H1303.272727v4.096z"
fill=
"#C1CADC"
p-id=
"4487"
></path><path
d=
"M407.272727 551.377455a22.481455 22.481455 0 0 1-17.221818-8.378182c-0.791273-0.930909-1.768727-1.954909-2.792727-3.211637a482.397091 482.397091 0 0 1-29.323637-37.236363 302.917818 302.917818 0 0 1-18.01309-28.392728C330.565818 457.122909 325.818182 442.973091 325.818182 432.128c0-10.472727 2.141091-20.619636 6.376727-30.208 4.096-9.216 10.007273-17.547636 17.454546-24.669091 7.447273-7.121455 16.197818-12.706909 25.879272-16.616727a84.526545 84.526545 0 0 1 63.488 0c9.681455 3.909818 18.385455 9.495273 25.879273 16.616727 7.447273 7.121455 13.358545 15.453091 17.454545 24.669091 4.189091 9.588364 6.376727 19.735273 6.376728 30.254545 0 10.798545-4.747636 24.948364-14.103273 41.984a298.542545 298.542545 0 0 1-17.966545 28.392728 469.504 469.504 0 0 1-29.323637 37.236363l-2.699636 3.025455a22.714182 22.714182 0 0 1-17.268364 8.564364H407.272727zM672.023273 787.688727a16.523636 16.523636 0 0 1-12.939637-6.702545l-2.094545-2.56a384.186182 384.186182 0 0 1-22.016-29.789091 245.154909 245.154909 0 0 1-13.498182-22.714182c-6.981818-13.637818-10.565818-24.948364-10.565818-33.652364a62.510545 62.510545 0 0 1 37.282909-57.204363c7.540364-3.258182 15.546182-4.887273 23.784727-4.933818h0.046546a59.950545 59.950545 0 0 1 43.194182 18.245818 61.998545 61.998545 0 0 1 17.873454 43.892363c0 8.704-3.537455 20.014545-10.565818 33.652364-3.630545 6.981818-8.145455 14.615273-13.498182 22.714182a373.946182 373.946182 0 0 1-22.016 29.789091l-2.001454 2.420363a16.663273 16.663273 0 0 1-12.939637 6.842182h-0.093091zM896 669.556364a34.676364 34.676364 0 0 1-25.786182-11.729455l-4.235636-4.514909a682.961455 682.961455 0 0 1-44.032-52.130909 421.143273 421.143273 0 0 1-26.996364-39.749818c-14.010182-23.877818-21.131636-43.659636-21.131636-58.833455 0-14.661818 3.258182-28.858182 9.588363-42.263273a108.916364 108.916364 0 0 1 26.158546-34.583272c11.217455-9.960727 24.296727-17.826909 38.865454-23.272728a134.795636 134.795636 0 0 1 47.569455-8.610909h0.046545c16.523636 0 32.488727 2.885818 47.569455 8.610909 14.568727 5.445818 27.601455 13.312 38.818909 23.272728 11.170909 10.007273 20.014545 21.597091 26.205091 34.583272 6.330182 13.358545 9.541818 27.601455 9.541818 42.263273 0 15.173818-7.121455 34.955636-21.131636 58.833455-7.214545 12.241455-16.290909 25.6-26.996364 39.703272a664.715636 664.715636 0 0 1-44.032 52.177455l-3.956363 4.235636a35.002182 35.002182 0 0 1-25.925819 12.008728h-0.139636z"
fill=
"#8A90A2"
p-id=
"4488"
></path><path
d=
"M1066.356364 850.385455c0 2.932364-7.447273 2.932364-7.447273 5.864727v23.319273c0 2.932364 0 5.864727 7.447273 8.750545l29.556363 17.547636 22.248728-11.682909c0-2.932364 7.400727-2.932364 7.400727-5.864727l14.801454-61.253818h-37.050181l-37.003637 23.365818z"
fill=
"#C1CADC"
p-id=
"4489"
></path></svg>
\ No newline at end of file
frontend/src/main.js
浏览文件 @
fcb74448
...
...
@@ -24,9 +24,11 @@ import DeComplexSelect from '@/components/business/condition-table/DeComplexSele
import
'@/components/canvas/custom-component'
// 注册自定义组件
import
'@/utils/DateUtil'
import
draggable
from
'vuedraggable'
Vue
.
config
.
productionTip
=
false
Vue
.
use
(
VueClipboard
)
Vue
.
use
(
widgets
)
Vue
.
component
(
'draggable'
,
draggable
)
Vue
.
prototype
.
$api
=
api
import
*
as
echarts
from
'echarts'
...
...
frontend/src/views/chart/chart/util.js
浏览文件 @
fcb74448
...
...
@@ -26,3 +26,284 @@ export function digToHex(dig) {
}
return
prefix
.
concat
(
num
.
toString
(
16
).
toUpperCase
())
}
export
const
TYPE_CONFIGS
=
[
{
render
:
'antv'
,
category
:
'chart.chart_type_table'
,
value
:
'table-normal'
,
title
:
'chart.chart_table_normal'
,
icon
:
'table-normal'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_table'
,
value
:
'table-info'
,
title
:
'chart.chart_table_info'
,
icon
:
'table-info'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_table'
,
value
:
'table-pivot'
,
title
:
'chart.chart_table_pivot'
,
icon
:
'table-pivot'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_quota'
,
value
:
'text'
,
title
:
'chart.chart_card'
,
icon
:
'text'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_quota'
,
value
:
'gauge'
,
title
:
'chart.chart_gauge'
,
icon
:
'gauge'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_quota'
,
value
:
'liquid'
,
title
:
'chart.chart_liquid'
,
icon
:
'liquid'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_trend'
,
value
:
'line'
,
title
:
'chart.chart_line'
,
icon
:
'line'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_trend'
,
value
:
'line-stack'
,
title
:
'chart.chart_line_stack'
,
icon
:
'line-stack'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar'
,
title
:
'chart.chart_bar'
,
icon
:
'bar'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-stack'
,
title
:
'chart.chart_bar_stack'
,
icon
:
'bar-stack'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_compare'
,
value
:
'waterfall'
,
title
:
'chart.chart_waterfall'
,
icon
:
'waterfall'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-horizontal'
,
title
:
'chart.chart_bar_horizontal'
,
icon
:
'bar-horizontal'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-stack-horizontal'
,
title
:
'chart.chart_bar_stack_horizontal'
,
icon
:
'bar-stack-horizontal'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_distribute'
,
value
:
'pie'
,
title
:
'chart.chart_pie'
,
icon
:
'pie'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_distribute'
,
value
:
'pie-rose'
,
title
:
'chart.chart_pie_rose'
,
icon
:
'pie-rose'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_distribute'
,
value
:
'radar'
,
title
:
'chart.chart_radar'
,
icon
:
'radar'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_distribute'
,
value
:
'treemap'
,
title
:
'chart.chart_treemap'
,
icon
:
'treemap'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_distribute'
,
value
:
'word-cloud'
,
title
:
'chart.chart_word_cloud'
,
icon
:
'word-cloud'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_relation'
,
value
:
'scatter'
,
title
:
'chart.chart_scatter'
,
icon
:
'scatter'
},
{
render
:
'antv'
,
category
:
'chart.chart_type_relation'
,
value
:
'funnel'
,
title
:
'chart.chart_funnel'
,
icon
:
'funnel'
},
/* 下面是echarts图表类型 */
{
render
:
'echarts'
,
category
:
'chart.chart_type_table'
,
value
:
'table-normal'
,
title
:
'chart.chart_table_normal'
,
icon
:
'table-normal'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_table'
,
value
:
'table-info'
,
title
:
'chart.chart_table_info'
,
icon
:
'table-info'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_quota'
,
value
:
'text'
,
title
:
'chart.chart_card'
,
icon
:
'text'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_quota'
,
value
:
'gauge'
,
title
:
'chart.chart_gauge'
,
icon
:
'gauge'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_trend'
,
value
:
'line'
,
title
:
'chart.chart_line'
,
icon
:
'line'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_trend'
,
value
:
'line-stack'
,
title
:
'chart.chart_line_stack'
,
icon
:
'line-stack'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_trend'
,
value
:
'chart-mix'
,
title
:
'chart.chart_mix'
,
icon
:
'chart-mix'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar'
,
title
:
'chart.chart_bar'
,
icon
:
'bar'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-stack'
,
title
:
'chart.chart_bar_stack'
,
icon
:
'bar-stack'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-horizontal'
,
title
:
'chart.chart_bar_horizontal'
,
icon
:
'bar-horizontal'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_compare'
,
value
:
'bar-stack-horizontal'
,
title
:
'chart.chart_bar_stack_horizontal'
,
icon
:
'bar-stack-horizontal'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_distribute'
,
value
:
'pie'
,
title
:
'chart.chart_pie'
,
icon
:
'pie'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_distribute'
,
value
:
'pie-rose'
,
title
:
'chart.chart_pie_rose'
,
icon
:
'pie-rose'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_distribute'
,
value
:
'radar'
,
title
:
'chart.chart_radar'
,
icon
:
'radar'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_distribute'
,
value
:
'treemap'
,
title
:
'chart.chart_treemap'
,
icon
:
'treemap'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_relation'
,
value
:
'scatter'
,
title
:
'chart.chart_scatter'
,
icon
:
'scatter'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_relation'
,
value
:
'funnel'
,
title
:
'chart.chart_funnel'
,
icon
:
'funnel'
},
{
render
:
'echarts'
,
category
:
'chart.chart_type_space'
,
value
:
'map'
,
title
:
'chart.chart_map'
,
icon
:
'map'
}
]
frontend/src/views/chart/view/ChartEdit.vue
浏览文件 @
fcb74448
差异被折叠。
点击展开。
frontend/src/views/chart/view/ChartType.vue
浏览文件 @
fcb74448
差异被折叠。
点击展开。
frontend/src/views/dataset/data/TabDataPreview.vue
浏览文件 @
fcb74448
...
...
@@ -58,9 +58,10 @@
{{ $t('dataset.preview_item') }}
</span>
<el-pagination
v-show=
"false"
:current-page=
"currentPage.page"
:page-sizes=
"[
100
]"
:page-size=
"
currentPage.pageSize
"
:page-sizes=
"[
parseInt(form.row)
]"
:page-size=
"
parseInt(form.row)
"
:pager-count=
"5"
layout=
"sizes, prev, pager, next"
:total=
"currentPage.show"
...
...
@@ -104,7 +105,7 @@ export default {
height
:
500
,
currentPage
:
{
page
:
1
,
pageSize
:
100
,
pageSize
:
parseInt
(
this
.
form
.
row
)
,
show
:
parseInt
(
this
.
form
.
row
)
}
}
...
...
@@ -153,6 +154,7 @@ export default {
return
}
this
.
currentPage
.
show
=
parseInt
(
this
.
form
.
row
)
this
.
currentPage
.
pageSize
=
parseInt
(
this
.
form
.
row
)
this
.
currentPage
.
page
=
1
this
.
$emit
(
'reSearch'
,
{
form
:
this
.
form
,
page
:
this
.
currentPage
})
},
...
...
frontend/src/views/dataset/data/ViewTable.vue
浏览文件 @
fcb74448
...
...
@@ -93,7 +93,7 @@ export default {
data
:
[],
page
:
{
page
:
1
,
pageSize
:
100
,
pageSize
:
100
0
,
show
:
1000
},
tabActive
:
'dataPreview'
,
...
...
@@ -160,7 +160,7 @@ export default {
this
.
data
=
[]
this
.
page
=
{
page
:
1
,
pageSize
:
100
,
pageSize
:
100
0
,
show
:
0
}
})
...
...
@@ -218,7 +218,7 @@ export default {
resetPage
()
{
this
.
page
=
{
page
:
1
,
pageSize
:
100
,
pageSize
:
100
0
,
show
:
1000
}
},
...
...
frontend/src/views/system/plugin/PluginCom.vue
浏览文件 @
fcb74448
<
template
>
<div>
<async-component
v-if=
"showAsync"
:url=
"url"
:obj=
"obj"
@
execute-axios=
"executeAxios"
@
on-add-languanges=
"addLanguages"
@
plugin-call-back=
"pluginCallBack"
/>
<async-component
v-if=
"showAsync"
:url=
"url"
:obj=
"obj"
@
execute-axios=
"executeAxios"
@
on-add-languanges=
"addLanguages"
@
plugin-call-back=
"pluginCallBack"
/>
<div
v-else
>
<h1>
未知组件无法展示
</h1>
</div>
...
...
@@ -12,7 +18,7 @@
import
AsyncComponent
from
'@/components/AsyncComponent'
import
i18n
from
'@/lang'
import
bus
from
'@/utils/bus'
import
{
execute
}
from
'@/api/system/dynamic'
import
{
execute
}
from
'@/api/system/dynamic'
export
default
{
name
:
'PluginCom'
,
...
...
@@ -67,7 +73,7 @@ export default {
},
pluginCallBack
(
param
)
{
const
{
eventName
,
eventParam
}
=
param
const
{
eventName
,
eventParam
}
=
param
bus
.
$emit
(
eventName
,
eventParam
)
}
}
...
...
mobile/pom.xml
浏览文件 @
fcb74448
...
...
@@ -6,7 +6,7 @@
<parent>
<artifactId>
dataease-server
</artifactId>
<groupId>
io.dataease
</groupId>
<version>
1.
7
.0
</version>
<version>
1.
8
.0
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
...
...
pom.xml
浏览文件 @
fcb74448
...
...
@@ -4,7 +4,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
io.dataease
</groupId>
<artifactId>
dataease-server
</artifactId>
<version>
1.
7
.0
</version>
<version>
1.
8
.0
</version>
<packaging>
pom
</packaging>
<parent>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论