From 07f8a6a5235aa8d7344858c1590df6bf14708714 Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Thu, 11 Jun 2020 01:11:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E8=B4=AD=E6=8D=A2=E5=BA=97=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 747 ++++++++++++---------- src/services/account/AccountManagement.js | 14 +- 2 files changed, 411 insertions(+), 350 deletions(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index 02d9a27..d071717 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -1,195 +1,195 @@ diff --git a/src/services/account/AccountManagement.js b/src/services/account/AccountManagement.js index 3ec9abc..2feee3a 100644 --- a/src/services/account/AccountManagement.js +++ b/src/services/account/AccountManagement.js @@ -44,11 +44,21 @@ export function listRoleInfoApi(params, call) { return http.get('/role/info/list', params).then(call); } +/** + * 修改账号状态 + * @param params + * @param call + * @returns {Promise} + */ +export function postAccountModifyStatus(params, call, p) { + return http.post('account/modify/status', params).then(call); +} + export default { listAccountInfoApi, removeAccountApi, listAllShopApi, - listRoleInfoApi - + listRoleInfoApi, + postAccountModifyStatus }