瀏覽代碼

app2.0 解绑微信

西昌缴费二期
杨晓琪 2 年之前
父節點
當前提交
7df957d3c1
共有 2 個檔案被更改,包括 24 行新增0 行删除
  1. +24
    -0
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/my.vue
  2. 二進制
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/unbound.png

+ 24
- 0
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/my.vue 查看文件

@@ -33,6 +33,10 @@
<l-icon type="edit" color="blue" />
修改密码
</l-list-item>
<l-list-item @click="unbound" arrow>
<image src="@/static/unbound.png" mode="" style="color: #0081ff;width: 14px;height: 14px;margin: 0 10px 0 5px;"></image>
解绑微信
</l-list-item>
</l-list>

<!-- 关于菜单 -->
@@ -149,6 +153,26 @@ export default {
goTo(urlPath) {
this.NAV_TO(`/pages/my/${urlPath}`)
},
// 解绑微信
unbound(){
this.CONFIRM('提示', '确定要解绑微信账号?', true).then(res => {
if (res) {
this.LOADING('正在解绑…');
this.HTTP_POST('learun/adms/user/unbundWeiXin', null, '解绑失败').then(success => {
this.HIDE_LOADING();
if (!success) {
return
}
this.TOAST("解绑成功")
setTimeout(()=>{
this.CLEAR_GLOBAL()
this.RELAUNCH_TO('/pages/login')
},1000)
});
}
});
},

// 用户头像 url
avatarSrc() {


二進制
Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/unbound.png 查看文件

Before After
Width: 16  |  Height: 16  |  Size: 452 B

Loading…
取消
儲存