This commit is contained in:
parent
2f9ddc22c0
commit
b74f0ca3fc
|
@ -184,19 +184,27 @@ export default {
|
|||
if (this.range) {
|
||||
if (!isEmpty(value) && value.length === 2 && value[0] && value[1]) {
|
||||
if(this.showTime){
|
||||
this.$emit("change", value);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", value);
|
||||
}
|
||||
}else{
|
||||
this.$emit("change", [
|
||||
`${value[0]} 00:00:00`,
|
||||
`${value[1]} 23:59:59`,
|
||||
]);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", [
|
||||
`${value[0]} 00:00:00`,
|
||||
`${value[1]} 23:59:59`,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
this.$emit("change", []);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", []);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.$emit("change", value);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", value);
|
||||
}
|
||||
}
|
||||
},
|
||||
});
|
||||
|
@ -222,7 +230,6 @@ export default {
|
|||
watch: {
|
||||
value: {
|
||||
handler(newVal) {
|
||||
console.log(newVal,'datevalue');
|
||||
if (Array.isArray(newVal)&&this.range){
|
||||
this.dateArr = [newVal[0] || "", newVal[1] || ""];
|
||||
} else {
|
||||
|
|
|
@ -152,10 +152,15 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
onSelect(value){
|
||||
this.$emit("change", [value, this.value[1]||""]);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", [value, this.value[1]||""]);
|
||||
}
|
||||
|
||||
},
|
||||
onInputChange(val){
|
||||
this.$emit("change", [this.values[0] ||"",val]);
|
||||
if(this.$listeners.change){
|
||||
this.$emit("change", [this.values[0] ||"",val]);
|
||||
}
|
||||
},
|
||||
getStringWidth(text) {
|
||||
let font = "13px";
|
||||
|
@ -186,7 +191,10 @@ export default {
|
|||
},
|
||||
search(){
|
||||
this.imeipopover=false;
|
||||
this.$emit("onSrarch", this.value);
|
||||
if(this.$listeners.onSrarch){
|
||||
this.$emit("onSrarch", this.value);
|
||||
}
|
||||
|
||||
},
|
||||
getAfterAgo(attr, prefix) {
|
||||
const config = {};
|
||||
|
|
|
@ -59,7 +59,8 @@
|
|||
model: {
|
||||
prop: 'values', // 明确指定 prop 为 'value'
|
||||
event: 'onSearch' // 自定义事件名,用于更新 value
|
||||
}, mounted(){
|
||||
},
|
||||
mounted(){
|
||||
let newinput=this.inputs.map((g)=>g.label);
|
||||
this.placeholder="请选择"+newinput.join("/");
|
||||
},
|
||||
|
@ -73,6 +74,10 @@
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
onReset(){
|
||||
this.values={};
|
||||
this.$emit('onSearch',this.values);
|
||||
},
|
||||
onSelect(value,item,index){
|
||||
item.value=value;
|
||||
this.$set(this.inputs,index,item);
|
||||
|
@ -84,24 +89,25 @@
|
|||
g.options.find((f)=>f.value==g.value).label&&(newplaceholderValue.push(g.options.find((f)=>f.value==g.value).label));
|
||||
}
|
||||
});
|
||||
this.$emit('change',newvalues);
|
||||
if(this.$listeners.change){
|
||||
this.$emit('change',newvalues);
|
||||
}
|
||||
this.values=newvalues;
|
||||
this.placeholderValue=newplaceholderValue.join("/")
|
||||
},
|
||||
onCancel(){
|
||||
this.popState=false;
|
||||
this.$emit('cancel');
|
||||
if(this.$listeners.onCancel){
|
||||
this.$emit('onCancel');
|
||||
}
|
||||
},
|
||||
onQuery(){
|
||||
console.log(this.$refs.queryformref,'this.$refs.queryformref');
|
||||
if(this.$refs.queryformref){
|
||||
this.$refs.queryformref.validate((valid) => {
|
||||
console.log(valid,"valid");
|
||||
if (valid) {
|
||||
this.$emit('onSearch',this.values);
|
||||
this.popState=false;
|
||||
} else {
|
||||
console.log('error submit!!');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
|
|
@ -52,10 +52,14 @@
|
|||
},
|
||||
methods: {
|
||||
handleSizeChange(e){
|
||||
this.$emit('onSizeChange',e);
|
||||
if(this.$listeners.onSizeChange){
|
||||
this.$emit('onSizeChange',e);
|
||||
}
|
||||
},
|
||||
handleCurrentChange(e){
|
||||
this.$emit('onCurrentChange',e);
|
||||
if(this.$listeners.onCurrentChange){
|
||||
this.$emit('onCurrentChange',e);
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue