Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
dataease
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
zhu
dataease
Commits
4f8ea205
提交
4f8ea205
authored
12月 27, 2021
作者:
wangjiahao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor: 移动端布局等待区域优化地图,时间组件排列方式
上级
0c845432
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
5 行删除
+12
-5
VText.vue
frontend/src/components/canvas/custom-component/VText.vue
+9
-2
ChartComponent.vue
frontend/src/views/chart/components/ChartComponent.vue
+2
-2
ComponentWaitItem.vue
frontend/src/views/panel/edit/ComponentWaitItem.vue
+1
-1
没有找到文件。
frontend/src/components/canvas/custom-component/VText.vue
浏览文件 @
4f8ea205
<
template
>
<
template
>
<div
v-if=
"edit
Mode == 'edit'
"
class=
"v-text"
@
keydown=
"handleKeydown"
@
keyup=
"handleKeyup"
>
<div
v-if=
"edit
Status
"
class=
"v-text"
@
keydown=
"handleKeydown"
@
keyup=
"handleKeyup"
>
<!-- tabindex >= 0 使得双击时聚集该元素 -->
<!-- tabindex >= 0 使得双击时聚集该元素 -->
<div
<div
v-if=
"canEdit"
v-if=
"canEdit"
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
<
script
>
<
script
>
import
{
keycodes
}
from
'@/components/canvas/utils/shortcutKey.js'
import
{
keycodes
}
from
'@/components/canvas/utils/shortcutKey.js'
import
{
mapState
}
from
'vuex'
export
default
{
export
default
{
props
:
{
props
:
{
...
@@ -65,13 +66,19 @@ export default {
...
@@ -65,13 +66,19 @@ export default {
}
}
},
},
computed
:
{
computed
:
{
editStatus
()
{
return
this
.
editMode
===
'edit'
&&
!
this
.
mobileLayoutStatus
},
textInfo
()
{
textInfo
()
{
if
(
this
.
element
&&
this
.
element
.
hyperlinks
&&
this
.
element
.
hyperlinks
.
enable
)
{
if
(
this
.
element
&&
this
.
element
.
hyperlinks
&&
this
.
element
.
hyperlinks
.
enable
)
{
return
"<a title='"
+
this
.
element
.
hyperlinks
.
content
+
"' target='"
+
this
.
element
.
hyperlinks
.
openMode
+
"' href='"
+
this
.
element
.
hyperlinks
.
content
+
"'>"
+
this
.
element
.
propValue
+
'</a>'
return
"<a title='"
+
this
.
element
.
hyperlinks
.
content
+
"' target='"
+
this
.
element
.
hyperlinks
.
openMode
+
"' href='"
+
this
.
element
.
hyperlinks
.
content
+
"'>"
+
this
.
element
.
propValue
+
'</a>'
}
else
{
}
else
{
return
this
.
element
.
propValue
return
this
.
element
.
propValue
}
}
}
},
...
mapState
([
'mobileLayoutStatus'
])
},
},
watch
:
{
watch
:
{
...
...
frontend/src/views/chart/components/ChartComponent.vue
浏览文件 @
4f8ea205
<
template
>
<
template
>
<div
style=
"display: flex;"
>
<div
style=
"display: flex;
position:relative
"
>
<view-track-bar
<view-track-bar
ref=
"viewTrack"
ref=
"viewTrack"
:track-menu=
"trackMenu"
:track-menu=
"trackMenu"
...
@@ -368,7 +368,7 @@ export default {
...
@@ -368,7 +368,7 @@ export default {
position
:
absolute
;
position
:
absolute
;
z-index
:
999
;
z-index
:
999
;
left
:
2%
;
left
:
2%
;
bottom
:
3
%
;
bottom
:
5
%
;
box-shadow
:
0
2px
12px
0
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
0
2px
12px
0
rgba
(
0
,
0
,
0
,
0.1
);
text-align
:
center
;
text-align
:
center
;
padding
:
5px
;
padding
:
5px
;
...
...
frontend/src/views/panel/edit/ComponentWaitItem.vue
浏览文件 @
4f8ea205
...
@@ -70,7 +70,7 @@ export default {
...
@@ -70,7 +70,7 @@ export default {
componentItemStyle
()
{
componentItemStyle
()
{
return
{
return
{
padding
:
'5px'
,
padding
:
'5px'
,
display
:
'inline-block
'
,
float
:
'left
'
,
width
:
'33%'
width
:
'33%'
}
}
},
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论