mirror of
https://github.com/jumpserver/lina.git
synced 2025-09-13 21:59:14 +00:00
fix: 修复ops 快捷命令搜索树不生效的问题
This commit is contained in:
@@ -148,12 +148,12 @@ export default {
|
|||||||
rootNodeAddDom(rootNode) {
|
rootNodeAddDom(rootNode) {
|
||||||
const { showSearch, showRefresh } = this.treeSetting
|
const { showSearch, showRefresh } = this.treeSetting
|
||||||
const searchIcon = `
|
const searchIcon = `
|
||||||
<a class="tree-action-btn" id='search-btn' onclick="onSearch()">
|
<a class="tree-action-btn" id="search-btn" onclick="onSearch()">
|
||||||
<i class='fa fa-search tree-banner-icon'></i>
|
<i class="fa fa-search tree-banner-icon"></i>
|
||||||
</a>`
|
</a>`
|
||||||
const refreshIcon = `
|
const refreshIcon = `
|
||||||
<a id='tree-refresh' class="tree-action-btn" onclick='refresh()'>
|
<a id="tree-refresh" class="tree-action-btn" onclick="refresh()">
|
||||||
<i class='fa fa-refresh'></i>
|
<i class="fa fa-refresh"></i>
|
||||||
</a>`
|
</a>`
|
||||||
const treeActions = `${showSearch ? searchIcon : ''}${showRefresh ? refreshIcon : ''}`
|
const treeActions = `${showSearch ? searchIcon : ''}${showRefresh ? refreshIcon : ''}`
|
||||||
const icons = `
|
const icons = `
|
||||||
@@ -306,7 +306,7 @@ export default {
|
|||||||
this.zTree.hideNodes(treeNodes)
|
this.zTree.hideNodes(treeNodes)
|
||||||
}
|
}
|
||||||
|
|
||||||
let treeUrl = this.treeSetting.treeUrl
|
let treeUrl = this.treeSetting.searchUrl ? this.treeSetting.searchUrl : this.treeSetting.treeUrl
|
||||||
const filterField = treeUrl.includes('?') ? `&search=${keyword}` : `?search=${keyword}`
|
const filterField = treeUrl.includes('?') ? `&search=${keyword}` : `?search=${keyword}`
|
||||||
if (treeUrl.indexOf('assets/nodes/children/tree') > -1) {
|
if (treeUrl.indexOf('assets/nodes/children/tree') > -1) {
|
||||||
treeUrl = treeUrl + '&all=all'
|
treeUrl = treeUrl + '&all=all'
|
||||||
@@ -336,259 +336,261 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang='scss' scoped>
|
<style lang="scss" scoped>
|
||||||
::-webkit-scrollbar-corner {
|
::-webkit-scrollbar-corner {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-track:horizontal {
|
|
||||||
background: #FFFFFF;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
div.rMenu {
|
|
||||||
position: absolute;
|
|
||||||
visibility: hidden;
|
|
||||||
text-align: left;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
z-index: 999;
|
|
||||||
float: left;
|
|
||||||
padding: 0 0;
|
|
||||||
margin: 2px 0 0;
|
|
||||||
list-style: none;
|
|
||||||
background-clip: padding-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_wrapper .dataTables_processing {
|
::-webkit-scrollbar-track:horizontal {
|
||||||
opacity: .9;
|
background: #FFFFFF;
|
||||||
border: none;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.rMenu li {
|
div.rMenu {
|
||||||
margin: 6px 0;
|
position: absolute;
|
||||||
cursor: pointer;
|
visibility: hidden;
|
||||||
list-style: none outside none;
|
text-align: left;
|
||||||
}
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 999;
|
||||||
|
float: left;
|
||||||
|
padding: 0 0;
|
||||||
|
margin: 2px 0 0;
|
||||||
|
list-style: none;
|
||||||
|
background-clip: padding-box;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-menu {
|
.dataTables_wrapper .dataTables_processing {
|
||||||
border: medium none;
|
opacity: .9;
|
||||||
min-width: 160px;
|
border: none;
|
||||||
background-color: #fff;
|
}
|
||||||
border-radius: 3px;
|
|
||||||
box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
|
|
||||||
display: block;
|
|
||||||
float: left;
|
|
||||||
font-size: 12px;
|
|
||||||
left: 0;
|
|
||||||
list-style: none outside none;
|
|
||||||
padding: 0;
|
|
||||||
position: absolute;
|
|
||||||
text-shadow: none;
|
|
||||||
top: 100%;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ztree ::v-deep .fa {
|
div.rMenu li {
|
||||||
font: normal normal normal 14px/1 FontAwesome !important;
|
margin: 6px 0;
|
||||||
}
|
cursor: pointer;
|
||||||
|
list-style: none outside none;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown a:hover {
|
.dropdown-menu {
|
||||||
background-color: #f1f1f1
|
border: medium none;
|
||||||
}
|
min-width: 160px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 3px;
|
||||||
|
box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
font-size: 12px;
|
||||||
|
left: 0;
|
||||||
|
list-style: none outside none;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
text-shadow: none;
|
||||||
|
top: 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-menu > li > a {
|
.ztree ::v-deep .fa {
|
||||||
border-radius: 3px;
|
font: normal normal normal 14px/1 FontAwesome !important;
|
||||||
color: inherit;
|
}
|
||||||
line-height: 25px;
|
|
||||||
margin: 4px;
|
|
||||||
text-align: left;
|
|
||||||
font-weight: normal;
|
|
||||||
display: block;
|
|
||||||
padding: 3px 20px;
|
|
||||||
clear: both;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
|
.dropdown a:hover {
|
||||||
color: #262626;
|
background-color: #f1f1f1
|
||||||
text-decoration: none;
|
}
|
||||||
background-color: #f5f5f5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.treebox {
|
.dropdown-menu > li > a {
|
||||||
|
border-radius: 3px;
|
||||||
|
color: inherit;
|
||||||
|
line-height: 25px;
|
||||||
|
margin: 4px;
|
||||||
|
text-align: left;
|
||||||
|
font-weight: normal;
|
||||||
|
display: block;
|
||||||
|
padding: 3px 20px;
|
||||||
|
clear: both;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
|
||||||
|
color: #262626;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.treebox {
|
||||||
|
background-color: transparent;
|
||||||
|
|
||||||
|
> > > .ztree {
|
||||||
|
overflow: auto;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
height: calc(100vh - 237px);
|
||||||
|
|
||||||
>>> .ztree {
|
li {
|
||||||
overflow: auto;
|
background-color: transparent !important;
|
||||||
background-color: transparent;
|
|
||||||
height: calc(100vh - 237px);
|
|
||||||
|
|
||||||
li {
|
.button {
|
||||||
|
background-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
|
|
||||||
.button {
|
|
||||||
background-color: rgba(0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
background-color: transparent !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
::v-deep #tree-refresh {
|
::v-deep #tree-refresh {
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .tree-banner-icon-zone {
|
::v-deep .tree-banner-icon-zone {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 7px;
|
right: 7px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
color: #838385 !important;;
|
color: #838385 !important;;
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #606266 !important;;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .tree-search {
|
|
||||||
position: relative;
|
|
||||||
top: -2px;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
display: inline-block;
|
|
||||||
border-radius: 12px;
|
|
||||||
vertical-align: sub;
|
|
||||||
transition: .25s;
|
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
.fa {
|
|
||||||
width: 13px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-search {
|
|
||||||
padding-top: 1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .tree-search .tree-banner-icon {
|
|
||||||
position: absolute;
|
|
||||||
top: 4px;
|
|
||||||
left: 6px;
|
|
||||||
border-radius: 12px;
|
|
||||||
overflow: hidden;
|
|
||||||
background-color: transparent !important;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .tree-search.active {
|
|
||||||
width: 160px;
|
|
||||||
background-color: #ffffff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .tree-search.active:hover {
|
|
||||||
border-radius: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .tree-search input {
|
|
||||||
position: relative;
|
|
||||||
left: 20px;
|
|
||||||
width: 133px;
|
|
||||||
height: 100%;
|
|
||||||
background-color: #ffffff !important;
|
|
||||||
color: #606266;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tree-header {
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
height: 30px;
|
|
||||||
line-height: 30px;
|
|
||||||
border-bottom: 1px solid #e0e0e0;
|
|
||||||
border-radius: 3px;
|
|
||||||
padding: 0 5px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
overflow: hidden;
|
|
||||||
cursor: pointer;
|
|
||||||
background-color: #D7D8DC;
|
|
||||||
|
|
||||||
.rotate {
|
|
||||||
transition: all .1 .8s;
|
|
||||||
transform: rotate(-90deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-caret-down {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.special {
|
|
||||||
top: 1px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tree-empty {
|
|
||||||
margin-left: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fixed-tree-search {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
|
|
||||||
& > > > .el-input__inner {
|
|
||||||
border-radius: 4px;
|
|
||||||
background: #fafafa;
|
|
||||||
padding-right: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
& > > > .el-input__suffix {
|
|
||||||
padding-right: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
& > > > .el-input__prefix {
|
|
||||||
padding-left: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
& > > > .el-input__suffix-inner {
|
|
||||||
line-height: 30px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-refresh {
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 0 1px;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
color: #606266 !important;;
|
||||||
color: #606266;
|
|
||||||
border-color: #d2d2d2;
|
|
||||||
background-color: #e6e6e6;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.icon {
|
::v-deep .tree-search {
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 12px;
|
||||||
|
vertical-align: sub;
|
||||||
|
transition: .25s;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
width: 13px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-search {
|
||||||
|
padding-top: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep .tree-search .tree-banner-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 4px;
|
||||||
|
left: 6px;
|
||||||
|
border-radius: 12px;
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: transparent !important;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep .tree-search.active {
|
||||||
|
width: 160px;
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep .tree-search.active:hover {
|
||||||
|
border-radius: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::v-deep .tree-search input {
|
||||||
|
position: relative;
|
||||||
|
left: 20px;
|
||||||
|
width: 133px;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
color: #606266;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-header {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
height: 30px;
|
||||||
|
line-height: 30px;
|
||||||
|
border-bottom: 1px solid #e0e0e0;
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0 5px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: hidden;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
background-color: #D7D8DC;
|
||||||
|
|
||||||
|
.rotate {
|
||||||
|
transition: all .1 .8s;
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-caret-down {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.special {
|
||||||
|
top: 1px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-empty {
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fixed-tree-search {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
|
||||||
|
& > > > .el-input__inner {
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #fafafa;
|
||||||
|
padding-right: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-action-btn {
|
& > > > .el-input__suffix {
|
||||||
padding: 0 2px;
|
padding-right: 8px;
|
||||||
color: red;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& > > > .el-input__prefix {
|
||||||
|
padding-left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > > > .el-input__suffix-inner {
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-refresh {
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0 1px;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
color: #606266;
|
||||||
|
border-color: #d2d2d2;
|
||||||
|
background-color: #e6e6e6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tree-action-btn {
|
||||||
|
padding: 0 2px;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@@ -225,6 +225,7 @@ export default {
|
|||||||
},
|
},
|
||||||
treeSetting: {
|
treeSetting: {
|
||||||
treeUrl: '/api/v1/perms/users/self/nodes/children-with-assets/tree/',
|
treeUrl: '/api/v1/perms/users/self/nodes/children-with-assets/tree/',
|
||||||
|
searchUrl: '/api/v1/perms/users/self/assets/tree/',
|
||||||
showRefresh: true,
|
showRefresh: true,
|
||||||
showMenu: false,
|
showMenu: false,
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
|
Reference in New Issue
Block a user