Commit ed961b1e authored by 邓春圆's avatar 邓春圆

回显数据不清空bug修复

parent 8ff14664
...@@ -111,18 +111,24 @@ export default { ...@@ -111,18 +111,24 @@ export default {
} }
}, },
watch:{ watch:{
value1:{ 'value1.priceStepClearanceList':{
handler(val){ handler(val){
this.$emit('input', val) if(val.length === 0){
this.addInterval();
}
this.$emit('input', this.value1)
}, },
deep:true deep:true
}, },
'value1.airWeightLimit'(){
this.$emit('input', this.value1)
},
value:{ value:{
handler(val){ handler(val){
this.value1 = val; this.value1 = val;
}, },
deep:true deep:true
} },
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment