|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <el-popover :width="widths" :visible="visible">
|
|
|
|
|
|
+ <el-popover :width="widths" :visible="visible" style="height:300px;overflow-y: auto;">
|
|
<template #reference>
|
|
<template #reference>
|
|
<div class="form-item-div" :id="uuid" @click="itemClick">
|
|
<div class="form-item-div" :id="uuid" @click="itemClick">
|
|
<div class="lable truncate" v-if="nodeId && nodeTitle">{{nodeTitle}}</div>
|
|
<div class="lable truncate" v-if="nodeId && nodeTitle">{{nodeTitle}}</div>
|
|
@@ -102,6 +102,9 @@ const testTreeClick = (data) => {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+.el-radio-group {
|
|
|
|
+ width: auto !important;
|
|
|
|
+}
|
|
.form-item-div {
|
|
.form-item-div {
|
|
background-color: white;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
@@ -120,4 +123,8 @@ const testTreeClick = (data) => {
|
|
.hc-select-tree.el-tree.hc-tree-node {
|
|
.hc-select-tree.el-tree.hc-tree-node {
|
|
margin-left: -12px;
|
|
margin-left: -12px;
|
|
}
|
|
}
|
|
|
|
+.el-popper{
|
|
|
|
+ height: 400px;
|
|
|
|
+ overflow-y: auto;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|