第三方绑定

This commit is contained in:
ghusermoon 2020-08-27 12:21:32 +08:00
parent 16115ba111
commit d3154dc864

View File

@ -59,6 +59,9 @@ export default {
type: type
}).then(res => {
this.$u.toast(res.message);
if(res.errCode == 0) {
this.getMemberInfo();
}
})
}
})
@ -71,6 +74,9 @@ export default {
unbinding(type) {
this.$u.api.unbindingThird({ type: type }).then(res => {
this.$u.toast(res.message);
if(res.errCode == 0) {
this.getMemberInfo();
}
})
}
}