出行方式 取消 清空免费公里数
This commit is contained in:
parent
fcc0644787
commit
3a6fdf3b2f
|
@ -138,15 +138,13 @@
|
||||||
return this.zIndex ? this.zIndex : this.$u.zIndex.popup;
|
return this.zIndex ? this.zIndex : this.$u.zIndex.popup;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
console.log("listShow",this.listShow)
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
chuzuInp(e){
|
chuzuInp(e){
|
||||||
this.chuzuValue=e.detail.value
|
this.chuzuValue=e.detail.value
|
||||||
},
|
},
|
||||||
// 点击取消按钮
|
// 点击取消按钮
|
||||||
close() {
|
close() {
|
||||||
|
this.inpValue=''
|
||||||
// 发送input事件,并不会作用于父组件,而是要设置组件内部通过props传递的value参数
|
// 发送input事件,并不会作用于父组件,而是要设置组件内部通过props传递的value参数
|
||||||
// 这是一个vue发送事件的特殊用法
|
// 这是一个vue发送事件的特殊用法
|
||||||
this.popupClose();
|
this.popupClose();
|
||||||
|
@ -154,6 +152,7 @@
|
||||||
},
|
},
|
||||||
// 弹窗关闭
|
// 弹窗关闭
|
||||||
popupClose() {
|
popupClose() {
|
||||||
|
this.inpValue=''
|
||||||
this.$emit('input', false);
|
this.$emit('input', false);
|
||||||
},
|
},
|
||||||
// 点击某一个item
|
// 点击某一个item
|
||||||
|
|
Loading…
Reference in New Issue