Merge pull request '第三方绑定' (#305) from zhy into master

Reviewed-on: http://git.luyuan.tk/luyuan/deming/pulls/305
This commit is contained in:
hansu 2020-08-27 12:22:22 +08:00
commit 4dfacfb524

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();
}
})
}
}