From 83dcf16ee17914ad26a04234002a407d12b5ef59 Mon Sep 17 00:00:00 2001
From: "382696293@qq.com" <382696293@qq.com>
Date: Mon, 25 Dec 2023 17:20:43 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=90=8C=E6=AD=A5=EF=BC=8C?=
=?UTF-8?q?=E7=A7=AF=E5=88=86=E5=90=8C=E6=AD=A5=20=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
flossom-ui/src/views/system/member/index.vue | 29 ++++++++++++++++++--
1 file changed, 26 insertions(+), 3 deletions(-)
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() {