[bugfix] Popup: can not hide in iOS 8 (#1029)

This commit is contained in:
neverland 2018-12-07 16:11:34 +08:00 committed by GitHub
parent d5f36e05e3
commit e7b8f6741e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,23 +16,38 @@ export const transition = function(showDefaultValue) {
data: {
type: '',
inited: false,
display: false
display: false,
supportAnimation: true
},
attached() {
if (this.data.show) {
this.show();
}
this.detectSupport();
},
methods: {
detectSupport() {
wx.getSystemInfo({
success: info => {
if (info && info.system && info.system.indexOf('iOS 8') === 0) {
this.set({ supportAnimation: false });
}
}
});
},
observeShow(value) {
if (value) {
this.show();
} else {
this.set({
type: 'leave'
});
if (this.data.supportAnimation) {
this.set({ type: 'leave' });
} else {
this.set({ display: false });
}
}
},