forked from github/dataease
fix: SQL参数在过滤组件中按表选择字段时出现重复的情况
This commit is contained in:
parent
62eb13d731
commit
2eccb6f6bc
@ -275,6 +275,7 @@
|
|||||||
:control-attrs="myAttrs"
|
:control-attrs="myAttrs"
|
||||||
:child-views="childViews"
|
:child-views="childViews"
|
||||||
:dataset-params="datasetParams"
|
:dataset-params="datasetParams"
|
||||||
|
:activeName="activeName"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<filter-foot :element="currentElement" />
|
<filter-foot :element="currentElement" />
|
||||||
|
@ -215,12 +215,12 @@
|
|||||||
v-model="attrs.parameters"
|
v-model="attrs.parameters"
|
||||||
>
|
>
|
||||||
<el-checkbox
|
<el-checkbox
|
||||||
v-for="(item ) in childViews.datasetParams"
|
v-for="(item ) in allParams"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.id"
|
:label="item.id"
|
||||||
class="de-checkbox"
|
class="de-checkbox"
|
||||||
>
|
>
|
||||||
<div class="span-div">
|
<div class="span-div2">
|
||||||
<span
|
<span
|
||||||
v-if="item.alias && item.alias.length <= 7"
|
v-if="item.alias && item.alias.length <= 7"
|
||||||
style="margin-left: 6px"
|
style="margin-left: 6px"
|
||||||
@ -280,6 +280,9 @@ export default {
|
|||||||
datasetParams: {
|
datasetParams: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => []
|
default: () => []
|
||||||
|
},
|
||||||
|
activeName:{
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@ -327,16 +330,41 @@ export default {
|
|||||||
}
|
}
|
||||||
this.attrs.parameters = parameters
|
this.attrs.parameters = parameters
|
||||||
}
|
}
|
||||||
this.allParams = this.childViews.datasetParams
|
this.allParams = JSON.parse(JSON.stringify(this.childViews.datasetParams))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'datasetParams': {
|
'datasetParams': {
|
||||||
handler(newName, oldName) {
|
handler(newName, oldName) {
|
||||||
|
this.allParams = JSON.parse(JSON.stringify(this.childViews.datasetParams))
|
||||||
if (this.datasetParams.length > 0) {
|
if (this.datasetParams.length > 0) {
|
||||||
this.allParams = this.childViews.datasetParams
|
|
||||||
for (var j = 0; j < this.datasetParams.length; j++) {
|
for (var j = 0; j < this.datasetParams.length; j++) {
|
||||||
|
var hasParam = false
|
||||||
for (var i = 0; i < this.childViews.datasetParams.length; i++) {
|
for (var i = 0; i < this.childViews.datasetParams.length; i++) {
|
||||||
if (this.childViews.datasetParams[i].id.split('|DE|')[0] !== this.datasetParams[j].id.split('|DE|')[0]) {
|
if (this.childViews.datasetParams[i].id === this.datasetParams[j].id) {
|
||||||
|
hasParam = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!hasParam){
|
||||||
|
this.allParams.push(this.datasetParams[j])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'activeName':{
|
||||||
|
handler(newName, oldName) {
|
||||||
|
if(this.activeName === 'assembly'){
|
||||||
|
this.allParams = JSON.parse(JSON.stringify(this.childViews.datasetParams))
|
||||||
|
}else {
|
||||||
|
if (this.datasetParams.length > 0) {
|
||||||
|
for (var j = 0; j < this.datasetParams.length; j++) {
|
||||||
|
var hasParam = false
|
||||||
|
for (var i = 0; i < this.childViews.datasetParams.length; i++) {
|
||||||
|
if (this.childViews.datasetParams[i].id === this.datasetParams[j].id) {
|
||||||
|
hasParam = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!hasParam){
|
||||||
this.allParams.push(this.datasetParams[j])
|
this.allParams.push(this.datasetParams[j])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -475,6 +503,13 @@ export default {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.span-div2 {
|
||||||
|
width: 350px;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.de-ul li {
|
.de-ul li {
|
||||||
margin: 5px 2px;
|
margin: 5px 2px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
Loading…
Reference in New Issue
Block a user