diff --git a/src/component/Account/frontPage/bindPage.vue b/src/component/Account/frontPage/bindPage.vue index 7ec33f51..825781f4 100644 --- a/src/component/Account/frontPage/bindPage.vue +++ b/src/component/Account/frontPage/bindPage.vue @@ -111,28 +111,46 @@ export default defineComponent({ .catch((res) => {accountHomeData.loadingShow = false}); } const ungroupWeiXinModel = ()=>{ - Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{ - message.success(t('frontPage.jsContent1')); - let value = { - accountExtendList:{ - WeChat:undefined, - Google:accountHomeData.userDetail.accountExtendList?.Google - } + Modal.confirm({ + title: t('frontPage.UnbindTip'), + okText: t('Yes'), + cancelText: t('No'), + mask:false, + centered:true, + onOk() { + Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{ + message.success(t('frontPage.jsContent1')); + let value = { + accountExtendList:{ + WeChat:undefined, + Google:accountHomeData.userDetail.accountExtendList?.Google + } + } + store.commit("upUserDetail", value) + }) } - store.commit("upUserDetail", value) - }) + }); } const ungroupGoogleModel = ()=>{ - Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{ - let value = { - accountExtendList:{ - WeChat:accountHomeData.userDetail.accountExtendList?.WeChat, - Google:undefined, - } + Modal.confirm({ + title: t('frontPage.UnbindTip'), + okText: t('Yes'), + cancelText: t('No'), + mask:false, + centered:true, + onOk() { + Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{ + let value = { + accountExtendList:{ + WeChat:accountHomeData.userDetail.accountExtendList?.WeChat, + Google:undefined, + } + } + store.commit("upUserDetail", value) + message.success(t('frontPage.jsContent1')); + }) } - store.commit("upUserDetail", value) - message.success(t('frontPage.jsContent1')); - }) + }); } const modifyEmail = ()=>{ bindPageDom.bindEmail.init('Modify') diff --git a/src/lang/cn.ts b/src/lang/cn.ts index 4ad24d17..1b459be2 100644 --- a/src/lang/cn.ts +++ b/src/lang/cn.ts @@ -825,6 +825,7 @@ export default { Modify: "修改", jsContent1: "取消绑定成功", jsContent2: "当前网络无法加载谷歌", + UnbindTip: "确认取消绑定吗?", }, Renew: { title: "选择你的最佳计划", @@ -1413,5 +1414,7 @@ export default { ToProductImage:'产品图', Relight:'打光', ChatRobot:'对话生成', + Yes:'是', + No:'否', }, }; diff --git a/src/lang/en.ts b/src/lang/en.ts index 1f2da2f7..621e7464 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -825,6 +825,7 @@ export default { Modify: "Modify", jsContent1: "Successful discharge", jsContent2: "The current network cannot load Google", + UnbindTip: "Are you sure to cancel the binding?", }, Renew: { title: "Find Your Ideal Plan", @@ -1413,5 +1414,7 @@ export default { ToProductImage:'ToProductImage', Relight:'Relight', ChatRobot:'ChatRobot', + Yes:'Yes', + No:'No', }, };