微信谷歌解绑按钮添加提二次提示框
This commit is contained in:
@@ -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')
|
||||
|
||||
@@ -825,6 +825,7 @@ export default {
|
||||
Modify: "修改",
|
||||
jsContent1: "取消绑定成功",
|
||||
jsContent2: "当前网络无法加载谷歌",
|
||||
UnbindTip: "确认取消绑定吗?",
|
||||
},
|
||||
Renew: {
|
||||
title: "选择你的最佳计划",
|
||||
@@ -1413,5 +1414,7 @@ export default {
|
||||
ToProductImage:'产品图',
|
||||
Relight:'打光',
|
||||
ChatRobot:'对话生成',
|
||||
Yes:'是',
|
||||
No:'否',
|
||||
},
|
||||
};
|
||||
|
||||
@@ -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',
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user