微信谷歌解绑按钮添加提二次提示框

This commit is contained in:
李志鹏
2025-09-30 13:24:44 +08:00
parent eb260566f2
commit 829d8e7b24
3 changed files with 42 additions and 18 deletions

View File

@@ -111,6 +111,13 @@ export default defineComponent({
.catch((res) => {accountHomeData.loadingShow = false}); .catch((res) => {accountHomeData.loadingShow = false});
} }
const ungroupWeiXinModel = ()=>{ const ungroupWeiXinModel = ()=>{
Modal.confirm({
title: t('frontPage.UnbindTip'),
okText: t('Yes'),
cancelText: t('No'),
mask:false,
centered:true,
onOk() {
Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{ Https.axiosGet(Https.httpUrls.unbindWeChat,).then((rv)=>{
message.success(t('frontPage.jsContent1')); message.success(t('frontPage.jsContent1'));
let value = { let value = {
@@ -122,7 +129,16 @@ export default defineComponent({
store.commit("upUserDetail", value) store.commit("upUserDetail", value)
}) })
} }
});
}
const ungroupGoogleModel = ()=>{ const ungroupGoogleModel = ()=>{
Modal.confirm({
title: t('frontPage.UnbindTip'),
okText: t('Yes'),
cancelText: t('No'),
mask:false,
centered:true,
onOk() {
Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{ Https.axiosGet(Https.httpUrls.unbindGoogle,).then((rv)=>{
let value = { let value = {
accountExtendList:{ accountExtendList:{
@@ -134,6 +150,8 @@ export default defineComponent({
message.success(t('frontPage.jsContent1')); message.success(t('frontPage.jsContent1'));
}) })
} }
});
}
const modifyEmail = ()=>{ const modifyEmail = ()=>{
bindPageDom.bindEmail.init('Modify') bindPageDom.bindEmail.init('Modify')

View File

@@ -825,6 +825,7 @@ export default {
Modify: "修改", Modify: "修改",
jsContent1: "取消绑定成功", jsContent1: "取消绑定成功",
jsContent2: "当前网络无法加载谷歌", jsContent2: "当前网络无法加载谷歌",
UnbindTip: "确认取消绑定吗?",
}, },
Renew: { Renew: {
title: "选择你的最佳计划", title: "选择你的最佳计划",
@@ -1413,5 +1414,7 @@ export default {
ToProductImage:'产品图', ToProductImage:'产品图',
Relight:'打光', Relight:'打光',
ChatRobot:'对话生成', ChatRobot:'对话生成',
Yes:'是',
No:'否',
}, },
}; };

View File

@@ -825,6 +825,7 @@ export default {
Modify: "Modify", Modify: "Modify",
jsContent1: "Successful discharge", jsContent1: "Successful discharge",
jsContent2: "The current network cannot load Google", jsContent2: "The current network cannot load Google",
UnbindTip: "Are you sure to cancel the binding?",
}, },
Renew: { Renew: {
title: "Find Your Ideal Plan", title: "Find Your Ideal Plan",
@@ -1413,5 +1414,7 @@ export default {
ToProductImage:'ToProductImage', ToProductImage:'ToProductImage',
Relight:'Relight', Relight:'Relight',
ChatRobot:'ChatRobot', ChatRobot:'ChatRobot',
Yes:'Yes',
No:'No',
}, },
}; };