@ -10,7 +10,7 @@
:type="inputType"
clearable
placeholder="请输入"
@change="handleChange" />
@change="handleChange($event,'s')" />
</el-form-item>
<div class="div_middle">-</div>
<el-form-item prop="end">
@ -20,7 +20,7 @@
@change="handleChange"
@change="handleChange($event,'e')"
@blur="handleBlur" />
</div>
@ -87,10 +87,9 @@ export default {
},
methods: {
handleChange (val) {
handleChange (val,type) {
// if ()
this.$emit('change', { ...this.inputForm })
this.$emit('change', { ...this.inputForm },type)
handleBlur () {
@ -670,11 +670,7 @@ export default {
handleSearch (val) {
this.currentPage = 1;
val.forEach(item=>{
if(item.columnName == "BIRTHDAY"){
item.queryType = 'agerange'
}
})
console.log(val);
this.conditions = val;
this.getTableData();