mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Popup: can not hide in iOS 8 (#1029)
This commit is contained in:
parent
d5f36e05e3
commit
e7b8f6741e
@ -16,23 +16,38 @@ export const transition = function(showDefaultValue) {
|
|||||||
data: {
|
data: {
|
||||||
type: '',
|
type: '',
|
||||||
inited: false,
|
inited: false,
|
||||||
display: false
|
display: false,
|
||||||
|
supportAnimation: true
|
||||||
},
|
},
|
||||||
|
|
||||||
attached() {
|
attached() {
|
||||||
if (this.data.show) {
|
if (this.data.show) {
|
||||||
this.show();
|
this.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.detectSupport();
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
detectSupport() {
|
||||||
|
wx.getSystemInfo({
|
||||||
|
success: info => {
|
||||||
|
if (info && info.system && info.system.indexOf('iOS 8') === 0) {
|
||||||
|
this.set({ supportAnimation: false });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
observeShow(value) {
|
observeShow(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
this.show();
|
this.show();
|
||||||
} else {
|
} else {
|
||||||
this.set({
|
if (this.data.supportAnimation) {
|
||||||
type: 'leave'
|
this.set({ type: 'leave' });
|
||||||
});
|
} else {
|
||||||
|
this.set({ display: false });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user