Commit bc123b32 by liuyong

修改画布

1 parent 13b15726
......@@ -4026,7 +4026,10 @@
link.setAttribute('title', mxResources.get('help'));
link.style.cssText = 'color:#a3a3a3;text-decoration:none;margin-right:2px;cursor:pointer;';
mxUtils.write(link, '?');
link.style.display = 'none';//二次开发,隐藏便笺本的帮助图标
link.style.display = 'none';//二次开发,隐藏便签本的帮助图标
mxEvent.addGestureListeners(link, mxUtils.bind(this, function(evt)
{
this.openLink(EditorUi.scratchpadHelpLink);
......@@ -4041,7 +4044,7 @@
title.style.paddingRight = (buttons.childNodes.length * btnWidth) + 'px';
this.editor.fireEvent(new mxEventObject('libraryLoaded'));
$("img[valign='absmiddle']").eq(2).css('display', 'none');//二次开发,隐藏便本的删除图标
$("img[valign='absmiddle']").eq(2).css('display', 'none');//二次开发,隐藏便本的删除图标
};
/**
......
......@@ -4479,7 +4479,7 @@
if (isLocalStorage || mxClient.IS_CHROMEAPP)
{
// var item = this.addMenuItem(menu, 'scratchpad', parent);//二次开发,屏蔽查看菜单下的勾选便
// var item = this.addMenuItem(menu, 'scratchpad', parent);//二次开发,屏蔽查看菜单下的勾选便
// if (!editorUi.isOffline() || mxClient.IS_CHROMEAPP || EditorUi.isElectronApp)
// {
......
......@@ -9,7 +9,11 @@
</template>
</el-table-column>
<el-table-column prop="elementEncoding" label="元素编码" align="center"></el-table-column>
<el-table-column prop="upstreamElements" label="上游元素" align="center"></el-table-column>
<el-table-column label="上游元素" align="center">
<template slot-scope="scope">
<div v-html="scope.row.upstreamElements"></div>
</template>
</el-table-column>
<el-table-column prop="relationship" label="关系" align="center"></el-table-column>
</el-table>
</div>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!