同步闭源版本代码:自动执行升级SQL、历史记录改为数据库存储、去掉git操作,优化代码结构,去掉不需要的文件

This commit is contained in:
暮光:城中城
2023-01-05 20:13:16 +08:00
parent fe1da585ac
commit b8dcdf93a1
109 changed files with 2469 additions and 8158 deletions

View File

@@ -35,24 +35,24 @@
</div>
</template>
</el-autocomplete>
<div style="overflow: auto; padding-bottom: 30px;">
<div class="wiki-page-tree-box">
<el-tree ref="wikiPageTree"
:current-node-key="nowPageId"
:data="wikiPageList"
:default-expanded-keys="wikiPageExpandedKeys"
:expand-on-click-node="false"
:filter-node-method="filterPageNode"
:props="defaultProps"
draggable
highlight-current
node-key="id"
style="background-color: #fafafa;"
@node-click="handleNodeClick"
@node-expand="handleNodeExpand"
@node-drop="handlePageDrop">
:current-node-key="nowPageId"
:data="wikiPageList"
:default-expanded-keys="wikiPageExpandedKeys"
:expand-on-click-node="false"
:filter-node-method="filterPageNode"
:props="defaultProps"
draggable
highlight-current
node-key="id"
style="background-color: #fafafa;"
@node-click="handleNodeClick"
@node-expand="handleNodeExpand"
@node-drop="handlePageDrop">
<span slot-scope="{node,data}" style="font-size:14px;">
<i class="el-icon-document"></i>&nbsp;
<span>{{ node.label }}</span>
<i class="el-icon-document"></i>
<span style="margin-left: 6px;">{{ node.label }}</span>
</span>
</el-tree>
</div>
@@ -499,4 +499,20 @@ html, body {
}
</style>
<style lang="scss">
.wiki-page-tree-box {
overflow: auto;
padding-bottom: 30px;
.el-tree-node {
.el-tree-node__content {
height: 35px;
.el-tree-node__label {
width: 100%;
}
}
}
}
</style>