diff --git a/flossom-ui/src/views/system/member/index.vue b/flossom-ui/src/views/system/member/index.vue index d02aafb..95f506d 100644 --- a/flossom-ui/src/views/system/member/index.vue +++ b/flossom-ui/src/views/system/member/index.vue @@ -251,8 +251,8 @@ 开启活动 - 个人信息同步 - 积分同步 + 个人信息同步 + 积分同步 @@ -1140,7 +1140,30 @@ export default { }); }).catch(() => { }); - + }, + // 信息同步 + informationSynchronization(row) { + this.$confirm("确定将选择的数据信息同步?
请谨慎操作,一旦成功将无法撤销。", "信息同步", { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + dangerouslyUseHTMLString: true + }).then(() => { + alert("用户id" + row.id); + }).catch(() => { + }); + }, + // 积分同步 + integralSynchronization(row) { + this.$confirm("确定将选择的数据积分同步?
请谨慎操作,一旦成功将无法撤销。", "积分同步", { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + dangerouslyUseHTMLString: true + }).then(() => { + alert("用户id" + row.id); + }).catch(() => { + }); }, /** 提交按钮 */ submitForm() {