From bbb8705ceecdf2b4711e06a6dad6988b126b3a27 Mon Sep 17 00:00:00 2001
From: odjbin <1042039504@qq.com>
Date: Tue, 25 Jun 2024 18:13:43 +0800
Subject: [PATCH] =?UTF-8?q?feat=20:=20=E7=94=A8=E6=88=B7=E7=AE=A1=E7=90=86?=
=?UTF-8?q?=E4=B8=BB=E8=B4=A6=E5=8F=B7-=E6=96=B0=E5=A2=9E=E7=BB=91?=
=?UTF-8?q?=E5=AE=9A=E8=B4=A6=E5=8F=B7=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/user/user.js | 14 +++++
src/views/system/user/index.vue | 61 +++++++++++++++++--
.../workflow/process/common/UserPicker.vue | 4 ++
3 files changed, 74 insertions(+), 5 deletions(-)
diff --git a/src/api/user/user.js b/src/api/user/user.js
index 7904a61..96d078f 100644
--- a/src/api/user/user.js
+++ b/src/api/user/user.js
@@ -185,3 +185,17 @@ export const unbindAllUserByPost = (postId) => {
}
})
}
+
+export const bindAccount=(data)=>{
+ return request({
+ url: '/admin/mosr/user/bind/account',
+ method: 'post',
+ data
+ })
+}
+export const getBindAccount=(userId)=>{
+ return request({
+ url: `/admin/mosr/user/bind/account/info/${userId}`,
+ method: 'get'
+ })
+}
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 1f807d1..2f540dc 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -1,14 +1,16 @@
+