forked from github/dataease
refactor: 当前过滤组件有默认值时无效触发保存
This commit is contained in:
parent
2a62c35673
commit
83c0894a4b
@ -158,7 +158,6 @@ export default {
|
|||||||
this.element.options.manualModify = true
|
this.element.options.manualModify = true
|
||||||
}
|
}
|
||||||
this.setCondition()
|
this.setCondition()
|
||||||
this.styleChange()
|
|
||||||
},
|
},
|
||||||
formatFilterValue() {
|
formatFilterValue() {
|
||||||
if (this.values === null) return []
|
if (this.values === null) return []
|
||||||
@ -184,9 +183,6 @@ export default {
|
|||||||
return timeSection(parseFloat(value), this.element.options.attrs.type)
|
return timeSection(parseFloat(value), this.element.options.attrs.type)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
styleChange() {
|
|
||||||
this.$store.commit('recordStyleChange')
|
|
||||||
},
|
|
||||||
fillValueDerfault() {
|
fillValueDerfault() {
|
||||||
const defaultV = this.element.options.value === null ? '' : this.element.options.value.toString()
|
const defaultV = this.element.options.value === null ? '' : this.element.options.value.toString()
|
||||||
if (this.element.options.attrs.type === 'daterange') {
|
if (this.element.options.attrs.type === 'daterange') {
|
||||||
|
@ -185,7 +185,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.setCondition()
|
this.setCondition()
|
||||||
this.$store.commit('recordStyleChange')
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
@ -219,9 +218,6 @@ export default {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
styleChange() {
|
|
||||||
this.$store.commit('recordStyleChange')
|
|
||||||
},
|
|
||||||
|
|
||||||
inputChange(val) {
|
inputChange(val) {
|
||||||
if (!this.inDraw) {
|
if (!this.inDraw) {
|
||||||
|
@ -168,7 +168,6 @@ export default {
|
|||||||
this.element.options.manualModify = true
|
this.element.options.manualModify = true
|
||||||
}
|
}
|
||||||
this.setCondition()
|
this.setCondition()
|
||||||
this.styleChange()
|
|
||||||
this.showNumber = false
|
this.showNumber = false
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
@ -207,9 +206,6 @@ export default {
|
|||||||
return defaultV.split(',')[0]
|
return defaultV.split(',')[0]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
styleChange() {
|
|
||||||
this.$store.commit('recordStyleChange')
|
|
||||||
},
|
|
||||||
optionDatas(datas) {
|
optionDatas(datas) {
|
||||||
if (!datas) return null
|
if (!datas) return null
|
||||||
return datas.filter(item => !!item).map(item => {
|
return datas.filter(item => !!item).map(item => {
|
||||||
|
@ -196,7 +196,6 @@ export default {
|
|||||||
this.element.options.manualModify = true
|
this.element.options.manualModify = true
|
||||||
}
|
}
|
||||||
this.setCondition()
|
this.setCondition()
|
||||||
this.styleChange()
|
|
||||||
},
|
},
|
||||||
|
|
||||||
setCondition() {
|
setCondition() {
|
||||||
@ -222,10 +221,6 @@ export default {
|
|||||||
return defaultV.split(',')[0]
|
return defaultV.split(',')[0]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
styleChange() {
|
|
||||||
this.$store.commit('recordStyleChange')
|
|
||||||
},
|
|
||||||
optionDatas(datas) {
|
optionDatas(datas) {
|
||||||
if (!datas) return null
|
if (!datas) return null
|
||||||
return datas.filter(item => !!item).map(item => {
|
return datas.filter(item => !!item).map(item => {
|
||||||
|
Loading…
Reference in New Issue
Block a user